diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d98ee16..05335875 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,11 +39,11 @@ jobs: run: |- git clone https://github.com/nushell/nu_scripts examples/nu_scripts -q --single-branch --depth=1 - name: Run tests - uses: tree-sitter/parser-test-action@v2 + uses: tree-sitter/parser-test-action@v3 with: generate: false test-rust: true - test-node: true + test-node: false test-python: true test-go: true test-swift: false diff --git a/grammar.js b/grammar.js index 0c19937b..9babb03b 100644 --- a/grammar.js +++ b/grammar.js @@ -30,13 +30,32 @@ module.exports = grammar({ [$._block_body, $.shebang], [$._block_body, $.val_closure], [$._block_body], + [$._command_list_body], [$._expression_parenthesized, $._expr_binary_expression_parenthesized], [$._match_pattern_list, $.val_list], + [ + $._match_pattern_list_body, + $._match_pattern_list_body_or_empty, + $._table_head, + ], + [ + $._match_pattern_list_body, + $._match_pattern_list_body_or_empty, + $.list_body, + $._list_body_or_empty, + $._table_head, + ], + [ + $._match_pattern_list_body, + $._match_pattern_list_body_or_empty, + $.list_body, + $._list_body_or_empty, + ], + [$._match_pattern_list_body, $._match_pattern_list_body_or_empty], [$._match_pattern_list_body, $._table_head], [$._match_pattern_list_body, $.list_body, $._table_head], - [$._match_pattern_list_body, $.list_body], [$._match_pattern_list_body, $.val_entry], - [$._match_pattern_list_body], + [$._match_pattern_list_body_or_empty, $._list_body_or_empty], [$._match_pattern_record, $.val_record, $.val_closure], [$._match_pattern_record, $.val_record], [$._match_pattern_record_body, $.record_body], @@ -48,8 +67,9 @@ module.exports = grammar({ [$.ctrl_if_parenthesized], [$.ctrl_try_parenthesized], [$.expr_binary_parenthesized], + [$.list_body, $._list_body_or_empty, $._table_head], + [$.list_body, $._list_body_or_empty], [$.list_body, $._table_head], - [$.list_body], [$.parameter, $.param_type, $.param_value], [$.pipeline], [$.pipeline_parenthesized], @@ -498,14 +518,18 @@ module.exports = grammar({ ), $._entry_separator, $._newline, - null, - choice($._newline, punc().comma), + ), + + _match_pattern_list_body_or_empty: ($) => + choice( + alias($._match_pattern_list_body, $.list_body), + repeat1(choice($._newline, punc().comma)), ), _match_pattern_list: ($) => seq( brack().open_brack, - optional(alias($._match_pattern_list_body, $.list_body)), + optional($._match_pattern_list_body_or_empty), optional( field( 'rest', @@ -590,6 +614,8 @@ module.exports = grammar({ $._command_name, $._entry_separator, $._newline, + null, + choice($._newline, punc().comma), ), command_list: ($) => @@ -1024,7 +1050,7 @@ module.exports = grammar({ val_list: ($) => seq( brack().open_brack, - optional($.list_body), + optional($._list_body_or_empty), brack().close_brack, optional($.cell_path), ), @@ -1032,7 +1058,7 @@ module.exports = grammar({ _spread_list: ($) => seq( brack().spread_open_brack, - optional($.list_body), + optional($._list_body_or_empty), brack().close_brack, optional($.cell_path), ), @@ -1045,14 +1071,10 @@ module.exports = grammar({ ), list_body: ($) => - general_body_rules( - 'entry', - $.val_entry, - $._entry_separator, - $._newline, - null, - choice($._newline, punc().comma), - ), + general_body_rules('entry', $.val_entry, $._entry_separator, $._newline), + + _list_body_or_empty: ($) => + choice($.list_body, repeat1(choice($._newline, punc().comma))), val_entry: ($) => prec( diff --git a/package-lock.json b/package-lock.json index 3a004aa5..f0d0f44e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -80,9 +80,9 @@ } }, "node_modules/@eslint-community/regexpp": { - "version": "4.12.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", - "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", "dev": true, "license": "MIT", "engines": { @@ -90,13 +90,13 @@ } }, "node_modules/@eslint/config-array": { - "version": "0.21.0", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz", - "integrity": "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==", + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz", + "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@eslint/object-schema": "^2.1.6", + "@eslint/object-schema": "^2.1.7", "debug": "^4.3.1", "minimatch": "^3.1.2" }, @@ -105,19 +105,22 @@ } }, "node_modules/@eslint/config-helpers": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.1.tgz", - "integrity": "sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==", + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", "dev": true, "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@eslint/core": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.2.tgz", - "integrity": "sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==", + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -152,9 +155,9 @@ } }, "node_modules/@eslint/js": { - "version": "9.36.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.36.0.tgz", - "integrity": "sha512-uhCbYtYynH30iZErszX78U+nR3pJU3RHGQ57NXy5QupD4SBVwDeU8TNBy+MjMngc1UyIW9noKqsRqfjQTBU2dw==", + "version": "9.39.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.1.tgz", + "integrity": "sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==", "dev": true, "license": "MIT", "engines": { @@ -165,9 +168,9 @@ } }, "node_modules/@eslint/object-schema": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", - "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", "dev": true, "license": "Apache-2.0", "engines": { @@ -175,13 +178,13 @@ } }, "node_modules/@eslint/plugin-kit": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz", - "integrity": "sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@eslint/core": "^0.15.2", + "@eslint/core": "^0.17.0", "levn": "^0.4.1" }, "engines": { @@ -255,9 +258,9 @@ "license": "MIT" }, "node_modules/@typescript-eslint/types": { - "version": "8.44.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.44.0.tgz", - "integrity": "sha512-ZSl2efn44VsYM0MfDQe68RKzBz75NPgLQXuGypmym6QVOWL5kegTZuZ02xRAT9T+onqvM6T8CdQk0OwYMB6ZvA==", + "version": "8.48.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.48.0.tgz", + "integrity": "sha512-cQMcGQQH7kwKoVswD1xdOytxQR60MWKM1di26xSUtxehaDs/32Zpqsu5WJlXTtTTqyAVK8R7hvsUnIXRS+bjvA==", "dev": true, "license": "MIT", "engines": { @@ -274,6 +277,7 @@ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "dev": true, "license": "MIT", + "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -552,25 +556,25 @@ } }, "node_modules/eslint": { - "version": "9.36.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.36.0.tgz", - "integrity": "sha512-hB4FIzXovouYzwzECDcUkJ4OcfOEkXTv2zRY6B9bkwjx/cprAq0uvm1nl7zvQ0/TsUk0zQiN4uPfJpB9m+rPMQ==", + "version": "9.39.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.1.tgz", + "integrity": "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.1", - "@eslint/config-array": "^0.21.0", - "@eslint/config-helpers": "^0.3.1", - "@eslint/core": "^0.15.2", + "@eslint/config-array": "^0.21.1", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", "@eslint/eslintrc": "^3.3.1", - "@eslint/js": "9.36.0", - "@eslint/plugin-kit": "^0.3.5", + "@eslint/js": "9.39.1", + "@eslint/plugin-kit": "^0.4.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", - "@types/json-schema": "^7.0.15", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", @@ -971,9 +975,9 @@ "license": "ISC" }, "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", "dev": true, "license": "MIT", "dependencies": { @@ -1106,9 +1110,9 @@ "license": "MIT" }, "node_modules/node-abi": { - "version": "3.77.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.77.0.tgz", - "integrity": "sha512-DSmt0OEcLoK4i3NuscSbGjOf3bqiDEutejqENSplMSFA/gmB8mkED9G4pKWnPl7MDU4rSHebKPHeitpDfyH0cQ==", + "version": "3.85.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.85.0.tgz", + "integrity": "sha512-zsFhmbkAzwhTft6nd3VxcG0cvJsT70rL+BIGHWVq5fi6MwGrHwzqKaxXE+Hl2GmnGItnDKPPkO5/LQqjVkIdFg==", "dev": true, "license": "MIT", "dependencies": { @@ -1373,9 +1377,9 @@ "license": "MIT" }, "node_modules/semver": { - "version": "7.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", - "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, "license": "ISC", "bin": { @@ -1499,23 +1503,10 @@ "node": ">=6" } }, - "node_modules/tree-sitter": { - "version": "0.25.0", - "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.25.0.tgz", - "integrity": "sha512-PGZZzFW63eElZJDe/b/R/LbsjDDYJa5UEjLZJB59RQsMX+fo0j54fqBPn1MGKav/QNa0JR0zBiVaikYDWCj5KQ==", - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "node-addon-api": "^8.3.0", - "node-gyp-build": "^4.8.4" - } - }, "node_modules/tree-sitter-cli": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.25.9.tgz", - "integrity": "sha512-xcS2EJlNdwG529/JcYl5jV0ew/wY+HXvyNe8nkqhDCwQqxCH7odc9oLKxIWePQqmIKgieZ0YaGyieYKQI3MTKQ==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.25.10.tgz", + "integrity": "sha512-KoebQguKMCIghisEOdA372TIbrUl0kdnfZ9YQIBRAeOvNSKe85XbU4LuFW7hduRUwJj0rAG7pX5wo9sZhbBF1g==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/src/grammar.json b/src/grammar.json index 81ef837a..710b50df 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4102,8 +4102,99 @@ ] }, "_match_pattern_list_body": { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "entry", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_match_pattern_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_in_list" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] + } + }, + { + "type": "FIELD", + "name": "entry", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_match_pattern_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_unquoted_in_list" + }, + "named": true, + "value": "val_string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] + } + }, + "_match_pattern_list_body_or_empty": { "type": "CHOICE", "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_match_pattern_list_body" + }, + "named": true, + "value": "list_body" + }, { "type": "REPEAT1", "content": { @@ -4119,88 +4210,6 @@ } ] } - }, - { - "type": "PREC", - "value": 20, - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "entry", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_match_pattern_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_unquoted_in_list" - }, - "named": true, - "value": "val_string" - } - ] - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] - } - }, - { - "type": "FIELD", - "name": "entry", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_match_pattern_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_unquoted_in_list" - }, - "named": true, - "value": "val_string" - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] - } } ] }, @@ -4215,13 +4224,8 @@ "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_match_pattern_list_body" - }, - "named": true, - "value": "list_body" + "type": "SYMBOL", + "name": "_match_pattern_list_body_or_empty" }, { "type": "BLANK" @@ -4740,58 +4744,79 @@ } }, "_command_list_body": { - "type": "PREC", - "value": 20, - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "cmd", - "content": { - "type": "SYMBOL", - "name": "_command_name" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "STRING", + "value": "," + } + ] + } + }, + { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" } - ] - } - }, - { - "type": "FIELD", - "name": "cmd", - "content": { - "type": "SYMBOL", - "name": "_command_name" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "cmd", + "content": { + "type": "SYMBOL", + "name": "_command_name" + } + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] + } + }, + { + "type": "FIELD", + "name": "cmd", + "content": { + "type": "SYMBOL", + "name": "_command_name" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] } - ] - } + } + ] }, "command_list": { "type": "SEQ", @@ -15055,7 +15080,7 @@ "members": [ { "type": "SYMBOL", - "name": "list_body" + "name": "_list_body_or_empty" }, { "type": "BLANK" @@ -15092,7 +15117,7 @@ "members": [ { "type": "SYMBOL", - "name": "list_body" + "name": "_list_body_or_empty" }, { "type": "BLANK" @@ -15150,8 +15175,66 @@ ] }, "list_body": { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "entry", + "content": { + "type": "SYMBOL", + "name": "val_entry" + } + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] + } + }, + { + "type": "FIELD", + "name": "entry", + "content": { + "type": "SYMBOL", + "name": "val_entry" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_entry_separator" + } + } + ] + } + }, + "_list_body_or_empty": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "list_body" + }, { "type": "REPEAT1", "content": { @@ -15167,60 +15250,6 @@ } ] } - }, - { - "type": "PREC", - "value": 20, - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "entry", - "content": { - "type": "SYMBOL", - "name": "val_entry" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] - } - }, - { - "type": "FIELD", - "name": "entry", - "content": { - "type": "SYMBOL", - "name": "val_entry" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] - } } ] }, @@ -17449,6 +17478,9 @@ [ "_block_body" ], + [ + "_command_list_body" + ], [ "_expression_parenthesized", "_expr_binary_expression_parenthesized" @@ -17459,23 +17491,42 @@ ], [ "_match_pattern_list_body", + "_match_pattern_list_body_or_empty", "_table_head" ], [ "_match_pattern_list_body", + "_match_pattern_list_body_or_empty", "list_body", + "_list_body_or_empty", + "_table_head" + ], + [ + "_match_pattern_list_body", + "_match_pattern_list_body_or_empty", + "list_body", + "_list_body_or_empty" + ], + [ + "_match_pattern_list_body", + "_match_pattern_list_body_or_empty" + ], + [ + "_match_pattern_list_body", "_table_head" ], [ "_match_pattern_list_body", - "list_body" + "list_body", + "_table_head" ], [ "_match_pattern_list_body", "val_entry" ], [ - "_match_pattern_list_body" + "_match_pattern_list_body_or_empty", + "_list_body_or_empty" ], [ "_match_pattern_record", @@ -17521,10 +17572,16 @@ ], [ "list_body", + "_list_body_or_empty", "_table_head" ], [ - "list_body" + "list_body", + "_list_body_or_empty" + ], + [ + "list_body", + "_table_head" ], [ "parameter", diff --git a/src/node-types.json b/src/node-types.json index 5721d512..65e9215c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2274,7 +2274,7 @@ "fields": { "entry": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "expr_parenthesized", diff --git a/src/parser.c b/src/parser.c index 4fefcce0..bfe687ad 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,16 +15,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 5204 +#define STATE_COUNT 5206 #define LARGE_STATE_COUNT 1263 -#define SYMBOL_COUNT 483 +#define SYMBOL_COUNT 485 #define ALIAS_COUNT 3 #define TOKEN_COUNT 272 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 64 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 250 +#define PRODUCTION_ID_COUNT 251 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -381,138 +381,140 @@ enum ts_symbol_identifiers { sym__match_pattern_expression = 351, sym__match_pattern_value = 352, sym__match_pattern_list_body = 353, - sym__match_pattern_list = 354, - sym__match_pattern_rest = 355, - sym__match_pattern_record_body = 356, - sym__match_pattern_record = 357, - sym_ctrl_try = 358, - sym_ctrl_try_parenthesized = 359, - sym_pipe_element = 360, - sym_pipe_element_parenthesized = 361, - sym_scope_pattern = 362, - sym_wild_card = 363, - sym__command_list_body = 364, - sym_command_list = 365, - sym_block = 366, - sym__blosure = 367, - sym__where_predicate_lhs_path_head = 368, - sym__where_predicate_lhs = 369, - sym_where_command = 370, - sym_where_command_parenthesized = 371, - sym__binary_predicate = 372, - sym__binary_predicate_parenthesized = 373, - sym_where_predicate = 374, - sym__expression = 375, - sym__expression_parenthesized = 376, - sym_expr_unary = 377, - sym__expr_unary_minus = 378, - sym_expr_binary = 379, - sym_expr_binary_parenthesized = 380, - sym__expr_binary_expression = 381, - sym__expr_binary_expression_parenthesized = 382, - sym_expr_parenthesized = 383, - sym__spread_parenthesized = 384, - sym__expr_parenthesized_immediate = 385, - sym__parenthesized_body = 386, - sym_val_range = 387, - sym__val_range = 388, - sym__immediate_decimal = 389, - sym__value = 390, - sym_val_nothing = 391, - sym_val_bool = 392, - sym__spread_variable = 393, - sym_val_variable = 394, - sym_val_cellpath = 395, - sym_val_number = 396, - sym__val_number_decimal = 397, - sym__val_number = 398, - sym_val_duration = 399, - sym_val_filesize = 400, - sym_val_binary = 401, - sym_val_string = 402, - sym__raw_str = 403, - sym_string_content = 404, - sym__str_double_quotes = 405, - sym__str_single_quotes = 406, - sym__str_back_ticks = 407, - sym_val_interpolated = 408, - sym__inter_single_quotes = 409, - sym__inter_double_quotes = 410, - sym_expr_interpolated = 411, - sym_val_list = 412, - sym__spread_list = 413, - sym_list_body = 414, - sym_val_entry = 415, - sym_val_record = 416, - sym__spread_record = 417, - sym_record_body = 418, - sym_record_entry = 419, - sym__record_key = 420, - sym__table_head = 421, - sym__table_body = 422, - sym_val_table = 423, - sym_val_closure = 424, - sym_cell_path = 425, - sym__path_suffix = 426, - sym_path = 427, - sym_env_var = 428, - sym_command = 429, - sym__command_parenthesized = 430, - sym__cmd_arg = 431, - sym_redirection = 432, - sym__flag = 433, - sym__flag_equals_value = 434, - sym_short_flag = 435, - sym_long_flag = 436, - sym_unquoted = 437, - sym__unquoted_in_list = 438, - sym__unquoted_in_record = 439, - sym__unquoted_with_expr = 440, - sym__unquoted_in_list_with_expr = 441, - sym__unquoted_in_record_with_expr = 442, - sym__unquoted_anonymous_prefix = 443, - sym_comment = 444, - aux_sym_pipeline_repeat1 = 445, - aux_sym_pipeline_parenthesized_repeat1 = 446, - aux_sym__block_body_repeat1 = 447, - aux_sym__block_body_repeat2 = 448, - aux_sym_attribute_list_repeat1 = 449, - aux_sym_attribute_repeat1 = 450, - aux_sym_decl_def_repeat1 = 451, - aux_sym__types_body_repeat1 = 452, - aux_sym__types_body_repeat2 = 453, - aux_sym__types_body_repeat3 = 454, - aux_sym_parameter_parens_repeat1 = 455, - aux_sym_parameter_repeat1 = 456, - aux_sym_parameter_repeat2 = 457, - aux_sym__collection_body_repeat1 = 458, - aux_sym__composite_argument_body_repeat1 = 459, - aux_sym__ctrl_match_body_repeat1 = 460, - aux_sym_match_pattern_repeat1 = 461, - aux_sym__match_pattern_list_body_repeat1 = 462, - aux_sym__match_pattern_record_body_repeat1 = 463, - aux_sym_pipe_element_repeat1 = 464, - aux_sym_pipe_element_repeat2 = 465, - aux_sym_pipe_element_parenthesized_repeat1 = 466, - aux_sym_pipe_element_parenthesized_repeat2 = 467, - aux_sym__command_list_body_repeat1 = 468, - aux_sym__where_predicate_lhs_repeat1 = 469, - aux_sym__parenthesized_body_repeat1 = 470, - aux_sym__parenthesized_body_repeat2 = 471, - aux_sym_val_binary_repeat1 = 472, - aux_sym_string_content_repeat1 = 473, - aux_sym__inter_single_quotes_repeat1 = 474, - aux_sym__inter_double_quotes_repeat1 = 475, - aux_sym_list_body_repeat1 = 476, - aux_sym_record_body_repeat1 = 477, - aux_sym__table_body_repeat1 = 478, - aux_sym__command_parenthesized_repeat1 = 479, - aux_sym__unquoted_with_expr_repeat1 = 480, - aux_sym__unquoted_in_list_with_expr_repeat1 = 481, - aux_sym__unquoted_in_record_with_expr_repeat1 = 482, - anon_alias_sym__head = 483, - anon_alias_sym__prefix = 484, - anon_alias_sym__unit = 485, + sym__match_pattern_list_body_or_empty = 354, + sym__match_pattern_list = 355, + sym__match_pattern_rest = 356, + sym__match_pattern_record_body = 357, + sym__match_pattern_record = 358, + sym_ctrl_try = 359, + sym_ctrl_try_parenthesized = 360, + sym_pipe_element = 361, + sym_pipe_element_parenthesized = 362, + sym_scope_pattern = 363, + sym_wild_card = 364, + sym__command_list_body = 365, + sym_command_list = 366, + sym_block = 367, + sym__blosure = 368, + sym__where_predicate_lhs_path_head = 369, + sym__where_predicate_lhs = 370, + sym_where_command = 371, + sym_where_command_parenthesized = 372, + sym__binary_predicate = 373, + sym__binary_predicate_parenthesized = 374, + sym_where_predicate = 375, + sym__expression = 376, + sym__expression_parenthesized = 377, + sym_expr_unary = 378, + sym__expr_unary_minus = 379, + sym_expr_binary = 380, + sym_expr_binary_parenthesized = 381, + sym__expr_binary_expression = 382, + sym__expr_binary_expression_parenthesized = 383, + sym_expr_parenthesized = 384, + sym__spread_parenthesized = 385, + sym__expr_parenthesized_immediate = 386, + sym__parenthesized_body = 387, + sym_val_range = 388, + sym__val_range = 389, + sym__immediate_decimal = 390, + sym__value = 391, + sym_val_nothing = 392, + sym_val_bool = 393, + sym__spread_variable = 394, + sym_val_variable = 395, + sym_val_cellpath = 396, + sym_val_number = 397, + sym__val_number_decimal = 398, + sym__val_number = 399, + sym_val_duration = 400, + sym_val_filesize = 401, + sym_val_binary = 402, + sym_val_string = 403, + sym__raw_str = 404, + sym_string_content = 405, + sym__str_double_quotes = 406, + sym__str_single_quotes = 407, + sym__str_back_ticks = 408, + sym_val_interpolated = 409, + sym__inter_single_quotes = 410, + sym__inter_double_quotes = 411, + sym_expr_interpolated = 412, + sym_val_list = 413, + sym__spread_list = 414, + sym_list_body = 415, + sym__list_body_or_empty = 416, + sym_val_entry = 417, + sym_val_record = 418, + sym__spread_record = 419, + sym_record_body = 420, + sym_record_entry = 421, + sym__record_key = 422, + sym__table_head = 423, + sym__table_body = 424, + sym_val_table = 425, + sym_val_closure = 426, + sym_cell_path = 427, + sym__path_suffix = 428, + sym_path = 429, + sym_env_var = 430, + sym_command = 431, + sym__command_parenthesized = 432, + sym__cmd_arg = 433, + sym_redirection = 434, + sym__flag = 435, + sym__flag_equals_value = 436, + sym_short_flag = 437, + sym_long_flag = 438, + sym_unquoted = 439, + sym__unquoted_in_list = 440, + sym__unquoted_in_record = 441, + sym__unquoted_with_expr = 442, + sym__unquoted_in_list_with_expr = 443, + sym__unquoted_in_record_with_expr = 444, + sym__unquoted_anonymous_prefix = 445, + sym_comment = 446, + aux_sym_pipeline_repeat1 = 447, + aux_sym_pipeline_parenthesized_repeat1 = 448, + aux_sym__block_body_repeat1 = 449, + aux_sym__block_body_repeat2 = 450, + aux_sym_attribute_list_repeat1 = 451, + aux_sym_attribute_repeat1 = 452, + aux_sym_decl_def_repeat1 = 453, + aux_sym__types_body_repeat1 = 454, + aux_sym__types_body_repeat2 = 455, + aux_sym__types_body_repeat3 = 456, + aux_sym_parameter_parens_repeat1 = 457, + aux_sym_parameter_repeat1 = 458, + aux_sym_parameter_repeat2 = 459, + aux_sym__collection_body_repeat1 = 460, + aux_sym__composite_argument_body_repeat1 = 461, + aux_sym__ctrl_match_body_repeat1 = 462, + aux_sym_match_pattern_repeat1 = 463, + aux_sym__match_pattern_list_body_repeat1 = 464, + aux_sym__match_pattern_record_body_repeat1 = 465, + aux_sym_pipe_element_repeat1 = 466, + aux_sym_pipe_element_repeat2 = 467, + aux_sym_pipe_element_parenthesized_repeat1 = 468, + aux_sym_pipe_element_parenthesized_repeat2 = 469, + aux_sym__command_list_body_repeat1 = 470, + aux_sym__where_predicate_lhs_repeat1 = 471, + aux_sym__parenthesized_body_repeat1 = 472, + aux_sym__parenthesized_body_repeat2 = 473, + aux_sym_val_binary_repeat1 = 474, + aux_sym_string_content_repeat1 = 475, + aux_sym__inter_single_quotes_repeat1 = 476, + aux_sym__inter_double_quotes_repeat1 = 477, + aux_sym_list_body_repeat1 = 478, + aux_sym_record_body_repeat1 = 479, + aux_sym__table_body_repeat1 = 480, + aux_sym__command_parenthesized_repeat1 = 481, + aux_sym__unquoted_with_expr_repeat1 = 482, + aux_sym__unquoted_in_list_with_expr_repeat1 = 483, + aux_sym__unquoted_in_record_with_expr_repeat1 = 484, + anon_alias_sym__head = 485, + anon_alias_sym__prefix = 486, + anon_alias_sym__unit = 487, }; static const char * const ts_symbol_names[] = { @@ -870,6 +872,7 @@ static const char * const ts_symbol_names[] = { [sym__match_pattern_expression] = "_match_pattern_expression", [sym__match_pattern_value] = "_match_pattern_value", [sym__match_pattern_list_body] = "list_body", + [sym__match_pattern_list_body_or_empty] = "_match_pattern_list_body_or_empty", [sym__match_pattern_list] = "val_list", [sym__match_pattern_rest] = "val_variable", [sym__match_pattern_record_body] = "record_body", @@ -931,6 +934,7 @@ static const char * const ts_symbol_names[] = { [sym_val_list] = "val_list", [sym__spread_list] = "val_list", [sym_list_body] = "list_body", + [sym__list_body_or_empty] = "_list_body_or_empty", [sym_val_entry] = "val_entry", [sym_val_record] = "val_record", [sym__spread_record] = "val_record", @@ -1359,6 +1363,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__match_pattern_expression] = sym__match_pattern_expression, [sym__match_pattern_value] = sym__match_pattern_value, [sym__match_pattern_list_body] = sym_list_body, + [sym__match_pattern_list_body_or_empty] = sym__match_pattern_list_body_or_empty, [sym__match_pattern_list] = sym_val_list, [sym__match_pattern_rest] = sym_val_variable, [sym__match_pattern_record_body] = sym_record_body, @@ -1420,6 +1425,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_val_list] = sym_val_list, [sym__spread_list] = sym_val_list, [sym_list_body] = sym_list_body, + [sym__list_body_or_empty] = sym__list_body_or_empty, [sym_val_entry] = sym_val_entry, [sym_val_record] = sym_val_record, [sym__spread_record] = sym_val_record, @@ -2910,6 +2916,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__match_pattern_list_body_or_empty] = { + .visible = false, + .named = true, + }, [sym__match_pattern_list] = { .visible = true, .named = true, @@ -3154,6 +3164,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__list_body_or_empty] = { + .visible = false, + .named = true, + }, [sym_val_entry] = { .visible = true, .named = true, @@ -3714,113 +3728,114 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [140] = {.index = 282, .length = 5}, [141] = {.index = 287, .length = 3}, [142] = {.index = 290, .length = 3}, - [143] = {.index = 293, .length = 2}, - [144] = {.index = 295, .length = 2}, - [145] = {.index = 297, .length = 2}, - [146] = {.index = 299, .length = 3}, - [147] = {.index = 299, .length = 3}, - [148] = {.index = 302, .length = 3}, - [149] = {.index = 302, .length = 3}, - [150] = {.index = 305, .length = 1}, + [143] = {.index = 293, .length = 1}, + [144] = {.index = 294, .length = 2}, + [145] = {.index = 296, .length = 2}, + [146] = {.index = 298, .length = 2}, + [147] = {.index = 300, .length = 3}, + [148] = {.index = 300, .length = 3}, + [149] = {.index = 303, .length = 3}, + [150] = {.index = 303, .length = 3}, [151] = {.index = 306, .length = 1}, - [152] = {.index = 307, .length = 3}, - [153] = {.index = 310, .length = 3}, - [154] = {.index = 313, .length = 3}, - [155] = {.index = 313, .length = 3}, - [156] = {.index = 313, .length = 3}, - [157] = {.index = 313, .length = 3}, - [158] = {.index = 313, .length = 3}, - [159] = {.index = 313, .length = 3}, - [160] = {.index = 313, .length = 3}, - [161] = {.index = 313, .length = 3}, - [162] = {.index = 316, .length = 5}, - [163] = {.index = 321, .length = 4}, - [164] = {.index = 325, .length = 4}, - [165] = {.index = 329, .length = 3}, - [166] = {.index = 332, .length = 1}, - [167] = {.index = 333, .length = 2}, - [168] = {.index = 335, .length = 1}, + [152] = {.index = 307, .length = 1}, + [153] = {.index = 308, .length = 3}, + [154] = {.index = 311, .length = 3}, + [155] = {.index = 314, .length = 3}, + [156] = {.index = 314, .length = 3}, + [157] = {.index = 314, .length = 3}, + [158] = {.index = 314, .length = 3}, + [159] = {.index = 314, .length = 3}, + [160] = {.index = 314, .length = 3}, + [161] = {.index = 314, .length = 3}, + [162] = {.index = 314, .length = 3}, + [163] = {.index = 317, .length = 5}, + [164] = {.index = 322, .length = 4}, + [165] = {.index = 326, .length = 4}, + [166] = {.index = 330, .length = 3}, + [167] = {.index = 333, .length = 1}, + [168] = {.index = 334, .length = 2}, [169] = {.index = 336, .length = 1}, [170] = {.index = 337, .length = 1}, - [171] = {.index = 338, .length = 2}, - [172] = {.index = 340, .length = 2}, - [173] = {.index = 342, .length = 5}, - [174] = {.index = 347, .length = 6}, - [175] = {.index = 353, .length = 1}, + [171] = {.index = 338, .length = 1}, + [172] = {.index = 339, .length = 2}, + [173] = {.index = 341, .length = 2}, + [174] = {.index = 343, .length = 5}, + [175] = {.index = 348, .length = 6}, [176] = {.index = 354, .length = 1}, - [177] = {.index = 355, .length = 2}, - [178] = {.index = 357, .length = 2}, - [179] = {.index = 359, .length = 2}, - [180] = {.index = 361, .length = 2}, - [181] = {.index = 363, .length = 2}, - [182] = {.index = 365, .length = 9}, - [183] = {.index = 374, .length = 6}, - [184] = {.index = 380, .length = 9}, - [185] = {.index = 389, .length = 6}, - [186] = {.index = 395, .length = 6}, - [187] = {.index = 401, .length = 6}, - [188] = {.index = 407, .length = 3}, - [189] = {.index = 407, .length = 3}, - [190] = {.index = 410, .length = 1}, - [191] = {.index = 411, .length = 4}, - [192] = {.index = 415, .length = 5}, - [193] = {.index = 420, .length = 5}, - [194] = {.index = 425, .length = 4}, - [195] = {.index = 429, .length = 3}, - [196] = {.index = 432, .length = 3}, - [197] = {.index = 435, .length = 3}, - [198] = {.index = 438, .length = 6}, - [199] = {.index = 444, .length = 2}, - [200] = {.index = 446, .length = 1}, - [201] = {.index = 447, .length = 2}, - [202] = {.index = 449, .length = 2}, - [203] = {.index = 451, .length = 2}, - [204] = {.index = 453, .length = 3}, - [205] = {.index = 456, .length = 3}, - [206] = {.index = 459, .length = 3}, - [207] = {.index = 462, .length = 3}, - [208] = {.index = 465, .length = 3}, - [209] = {.index = 468, .length = 3}, - [210] = {.index = 471, .length = 2}, - [211] = {.index = 473, .length = 2}, - [212] = {.index = 475, .length = 9}, - [213] = {.index = 484, .length = 6}, - [214] = {.index = 490, .length = 6}, - [215] = {.index = 496, .length = 1}, - [216] = {.index = 497, .length = 4}, - [217] = {.index = 501, .length = 5}, - [218] = {.index = 506, .length = 6}, - [219] = {.index = 512, .length = 3}, - [220] = {.index = 515, .length = 3}, - [221] = {.index = 518, .length = 3}, - [222] = {.index = 521, .length = 3}, - [223] = {.index = 524, .length = 3}, - [224] = {.index = 527, .length = 3}, - [225] = {.index = 530, .length = 3}, - [226] = {.index = 533, .length = 3}, - [227] = {.index = 536, .length = 3}, - [228] = {.index = 539, .length = 2}, - [229] = {.index = 541, .length = 2}, - [230] = {.index = 543, .length = 5}, - [231] = {.index = 548, .length = 4}, - [232] = {.index = 552, .length = 3}, - [233] = {.index = 555, .length = 3}, - [234] = {.index = 558, .length = 3}, - [235] = {.index = 561, .length = 3}, - [236] = {.index = 564, .length = 3}, - [237] = {.index = 567, .length = 3}, - [238] = {.index = 570, .length = 3}, - [239] = {.index = 573, .length = 3}, - [240] = {.index = 576, .length = 2}, - [241] = {.index = 578, .length = 5}, - [242] = {.index = 583, .length = 3}, - [243] = {.index = 586, .length = 3}, - [244] = {.index = 589, .length = 3}, - [245] = {.index = 592, .length = 3}, - [246] = {.index = 595, .length = 3}, - [247] = {.index = 598, .length = 3}, - [248] = {.index = 601, .length = 3}, - [249] = {.index = 604, .length = 3}, + [177] = {.index = 355, .length = 1}, + [178] = {.index = 356, .length = 2}, + [179] = {.index = 358, .length = 2}, + [180] = {.index = 360, .length = 2}, + [181] = {.index = 362, .length = 2}, + [182] = {.index = 364, .length = 2}, + [183] = {.index = 366, .length = 9}, + [184] = {.index = 375, .length = 6}, + [185] = {.index = 381, .length = 9}, + [186] = {.index = 390, .length = 6}, + [187] = {.index = 396, .length = 6}, + [188] = {.index = 402, .length = 6}, + [189] = {.index = 408, .length = 3}, + [190] = {.index = 408, .length = 3}, + [191] = {.index = 411, .length = 1}, + [192] = {.index = 412, .length = 4}, + [193] = {.index = 416, .length = 5}, + [194] = {.index = 421, .length = 5}, + [195] = {.index = 426, .length = 4}, + [196] = {.index = 430, .length = 3}, + [197] = {.index = 433, .length = 3}, + [198] = {.index = 436, .length = 3}, + [199] = {.index = 439, .length = 6}, + [200] = {.index = 445, .length = 2}, + [201] = {.index = 447, .length = 1}, + [202] = {.index = 448, .length = 2}, + [203] = {.index = 450, .length = 2}, + [204] = {.index = 452, .length = 1}, + [205] = {.index = 453, .length = 3}, + [206] = {.index = 456, .length = 3}, + [207] = {.index = 459, .length = 3}, + [208] = {.index = 462, .length = 3}, + [209] = {.index = 465, .length = 3}, + [210] = {.index = 468, .length = 3}, + [211] = {.index = 471, .length = 2}, + [212] = {.index = 473, .length = 2}, + [213] = {.index = 475, .length = 9}, + [214] = {.index = 484, .length = 6}, + [215] = {.index = 490, .length = 6}, + [216] = {.index = 496, .length = 1}, + [217] = {.index = 497, .length = 4}, + [218] = {.index = 501, .length = 5}, + [219] = {.index = 506, .length = 6}, + [220] = {.index = 512, .length = 3}, + [221] = {.index = 515, .length = 3}, + [222] = {.index = 518, .length = 3}, + [223] = {.index = 521, .length = 3}, + [224] = {.index = 524, .length = 3}, + [225] = {.index = 527, .length = 3}, + [226] = {.index = 530, .length = 3}, + [227] = {.index = 533, .length = 3}, + [228] = {.index = 536, .length = 3}, + [229] = {.index = 539, .length = 2}, + [230] = {.index = 541, .length = 2}, + [231] = {.index = 543, .length = 5}, + [232] = {.index = 548, .length = 4}, + [233] = {.index = 552, .length = 3}, + [234] = {.index = 555, .length = 3}, + [235] = {.index = 558, .length = 3}, + [236] = {.index = 561, .length = 3}, + [237] = {.index = 564, .length = 3}, + [238] = {.index = 567, .length = 3}, + [239] = {.index = 570, .length = 3}, + [240] = {.index = 573, .length = 3}, + [241] = {.index = 576, .length = 2}, + [242] = {.index = 578, .length = 5}, + [243] = {.index = 583, .length = 3}, + [244] = {.index = 586, .length = 3}, + [245] = {.index = 589, .length = 3}, + [246] = {.index = 592, .length = 3}, + [247] = {.index = 595, .length = 3}, + [248] = {.index = 598, .length = 3}, + [249] = {.index = 601, .length = 3}, + [250] = {.index = 604, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4241,108 +4256,110 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_else_block, 4}, {field_then_branch, 2}, [293] = + {field_entry, 0, .inherited = true}, + [294] = {field_row, 1, .inherited = true}, {field_row, 2}, - [295] = + [296] = {field_condition, 2}, {field_then_branch, 3}, - [297] = + [298] = {field_condition, 1}, {field_then_branch, 3}, - [299] = + [300] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 3}, - [302] = + [303] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 3}, - [305] = - {field_name, 2}, [306] = - {field_param_value, 1}, + {field_name, 2}, [307] = + {field_param_value, 1}, + [308] = {field_key, 0}, {field_key, 1}, {field_value, 3}, - [310] = + [311] = {field_quoted_name, 3, .inherited = true}, {field_signature, 4}, {field_unquoted_name, 3, .inherited = true}, - [313] = + [314] = {field_end, 4}, {field_start, 0}, {field_step, 2}, - [316] = + [317] = {field_body, 5}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 2, .inherited = true}, - [321] = + [322] = {field_body, 5}, {field_parameters, 4}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [325] = + [326] = {field_body, 5}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [329] = + [330] = {field_completion, 0, .inherited = true}, {field_key, 0, .inherited = true}, {field_type, 0, .inherited = true}, - [332] = - {field_key, 0}, [333] = + {field_key, 0}, + [334] = {field_completion, 3}, {field_type, 2, .inherited = true}, - [335] = - {field_command, 1}, [336] = - {field_constant, 1}, + {field_command, 1}, [337] = - {field_type, 3, .inherited = true}, + {field_constant, 1}, [338] = + {field_type, 3, .inherited = true}, + [339] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [340] = + [341] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [342] = + [343] = {field_body, 5}, {field_parameters, 3}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 1, .inherited = true}, - [347] = + [348] = {field_cmd, 1, .inherited = true}, {field_cmd, 2}, {field_quoted_name, 1, .inherited = true}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [353] = - {field_rest, 1}, [354] = - {field_entry, 1, .inherited = true}, + {field_rest, 1}, [355] = + {field_entry, 1, .inherited = true}, + [356] = {field_default_pattern, 0}, {field_expression, 2}, - [357] = + [358] = {field_expression, 2}, {field_pattern, 0}, - [359] = + [360] = {field_condition, 2}, {field_then_branch, 4}, - [361] = + [362] = {field_catch_branch, 4}, {field_try_branch, 2}, - [363] = + [364] = {field_catch_branch, 4}, {field_try_branch, 1}, - [365] = + [366] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4352,14 +4369,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [374] = + [375] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 1}, {field_rhs, 0, .inherited = true}, {field_rhs, 3}, - [380] = + [381] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4369,87 +4386,86 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [389] = + [390] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 2}, {field_rhs, 0, .inherited = true}, {field_rhs, 3}, - [395] = + [396] = {field_lhs, 0}, {field_lhs, 3, .inherited = true}, {field_opr, 1}, {field_opr, 3, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [401] = + [402] = {field_lhs, 0}, {field_lhs, 3, .inherited = true}, {field_opr, 2}, {field_opr, 3, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [407] = + [408] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 4}, - [410] = - {field_param_value, 2}, [411] = + {field_param_value, 2}, + [412] = {field_body, 5}, {field_quoted_name, 3, .inherited = true}, {field_signature, 4}, {field_unquoted_name, 3, .inherited = true}, - [415] = + [416] = {field_body, 6}, {field_parameters, 4}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 2, .inherited = true}, - [420] = + [421] = {field_body, 6}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 3, .inherited = true}, - [425] = + [426] = {field_body, 6}, {field_parameters, 5}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [429] = + [430] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [432] = + [433] = {field_completion, 1, .inherited = true}, {field_key, 0}, {field_type, 1, .inherited = true}, - [435] = + [436] = {field_completion, 1, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 1, .inherited = true}, - [438] = + [439] = {field_completion, 0, .inherited = true}, {field_completion, 1, .inherited = true}, {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [444] = + [445] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [446] = - {field_completion, 2}, [447] = + {field_completion, 2}, + [448] = {field_completion, 4}, {field_type, 3, .inherited = true}, - [449] = + [450] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [451] = - {field_entry, 1, .inherited = true}, + [452] = {field_rest, 2}, [453] = {field_condition, 2}, @@ -4730,48 +4746,48 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = sym_val_number, [2] = sym_val_number, }, - [147] = { + [148] = { [3] = sym_val_string, }, - [149] = { + [150] = { [3] = sym_val_string, }, - [152] = { + [153] = { [0] = sym_identifier, }, - [155] = { + [156] = { [4] = sym_val_number, }, - [156] = { + [157] = { [2] = sym_val_number, }, - [157] = { + [158] = { [2] = sym_val_number, [4] = sym_val_number, }, - [158] = { + [159] = { [0] = sym_val_number, }, - [159] = { + [160] = { [0] = sym_val_number, [4] = sym_val_number, }, - [160] = { + [161] = { [0] = sym_val_number, [2] = sym_val_number, }, - [161] = { + [162] = { [0] = sym_val_number, [2] = sym_val_number, [4] = sym_val_number, }, - [166] = { + [167] = { [0] = sym_identifier, }, - [189] = { + [190] = { [4] = sym_val_string, }, - [196] = { + [197] = { [0] = sym_identifier, }, }; @@ -4817,29 +4833,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, - [5] = 4, - [6] = 3, - [7] = 4, - [8] = 3, - [9] = 4, - [10] = 4, - [11] = 4, - [12] = 4, - [13] = 4, - [14] = 4, - [15] = 4, + [4] = 3, + [5] = 5, + [6] = 5, + [7] = 3, + [8] = 5, + [9] = 3, + [10] = 3, + [11] = 3, + [12] = 3, + [13] = 3, + [14] = 3, + [15] = 3, [16] = 16, - [17] = 16, - [18] = 16, - [19] = 16, + [17] = 17, + [18] = 18, + [19] = 18, [20] = 16, - [21] = 21, - [22] = 22, - [23] = 16, - [24] = 22, - [25] = 16, - [26] = 21, + [21] = 17, + [22] = 18, + [23] = 18, + [24] = 18, + [25] = 18, + [26] = 18, [27] = 27, [28] = 27, [29] = 27, @@ -4851,163 +4867,163 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [35] = 35, [36] = 36, [37] = 37, - [38] = 38, + [38] = 36, [39] = 36, - [40] = 37, - [41] = 38, - [42] = 42, - [43] = 35, - [44] = 44, - [45] = 42, - [46] = 35, - [47] = 36, - [48] = 38, - [49] = 42, - [50] = 35, - [51] = 36, + [40] = 40, + [41] = 41, + [42] = 35, + [43] = 43, + [44] = 41, + [45] = 37, + [46] = 36, + [47] = 41, + [48] = 35, + [49] = 43, + [50] = 37, + [51] = 43, [52] = 36, - [53] = 42, + [53] = 53, [54] = 35, - [55] = 44, - [56] = 36, - [57] = 42, + [55] = 43, + [56] = 37, + [57] = 36, [58] = 35, - [59] = 44, - [60] = 36, - [61] = 42, + [59] = 43, + [60] = 37, + [61] = 36, [62] = 35, - [63] = 44, - [64] = 42, + [63] = 43, + [64] = 37, [65] = 35, - [66] = 44, - [67] = 35, - [68] = 35, - [69] = 44, - [70] = 35, - [71] = 71, + [66] = 43, + [67] = 37, + [68] = 43, + [69] = 43, + [70] = 43, + [71] = 43, [72] = 36, - [73] = 44, + [73] = 40, [74] = 74, [75] = 75, - [76] = 74, + [76] = 75, [77] = 77, [78] = 75, - [79] = 74, - [80] = 80, - [81] = 80, + [79] = 79, + [80] = 74, + [81] = 79, [82] = 82, [83] = 83, - [84] = 82, + [84] = 84, [85] = 85, - [86] = 85, - [87] = 82, - [88] = 88, - [89] = 85, - [90] = 90, + [86] = 86, + [87] = 84, + [88] = 85, + [89] = 84, + [90] = 85, [91] = 91, [92] = 92, [93] = 93, - [94] = 92, - [95] = 92, - [96] = 93, - [97] = 93, + [94] = 93, + [95] = 93, + [96] = 92, + [97] = 92, [98] = 98, - [99] = 99, + [99] = 93, [100] = 92, - [101] = 93, - [102] = 99, - [103] = 103, - [104] = 93, + [101] = 101, + [102] = 98, + [103] = 93, + [104] = 101, [105] = 105, - [106] = 106, - [107] = 98, + [106] = 98, + [107] = 92, [108] = 108, [109] = 109, - [110] = 92, - [111] = 99, - [112] = 98, - [113] = 99, - [114] = 98, - [115] = 115, - [116] = 115, - [117] = 105, - [118] = 106, - [119] = 99, - [120] = 120, - [121] = 115, - [122] = 98, - [123] = 108, - [124] = 108, - [125] = 105, - [126] = 106, + [110] = 110, + [111] = 111, + [112] = 112, + [113] = 98, + [114] = 101, + [115] = 101, + [116] = 108, + [117] = 109, + [118] = 92, + [119] = 111, + [120] = 112, + [121] = 109, + [122] = 101, + [123] = 110, + [124] = 109, + [125] = 98, + [126] = 111, [127] = 108, - [128] = 103, - [129] = 105, - [130] = 92, - [131] = 93, - [132] = 115, - [133] = 106, - [134] = 108, - [135] = 98, - [136] = 115, - [137] = 105, - [138] = 106, - [139] = 99, - [140] = 105, - [141] = 115, + [128] = 111, + [129] = 108, + [130] = 112, + [131] = 112, + [132] = 93, + [133] = 133, + [134] = 112, + [135] = 111, + [136] = 108, + [137] = 101, + [138] = 109, + [139] = 98, + [140] = 111, + [141] = 112, [142] = 108, - [143] = 106, + [143] = 109, [144] = 144, - [145] = 144, - [146] = 144, - [147] = 147, - [148] = 144, - [149] = 147, - [150] = 147, - [151] = 147, + [145] = 145, + [146] = 145, + [147] = 144, + [148] = 145, + [149] = 144, + [150] = 145, + [151] = 144, [152] = 152, [153] = 153, - [154] = 153, - [155] = 155, - [156] = 152, - [157] = 157, - [158] = 158, + [154] = 154, + [155] = 154, + [156] = 144, + [157] = 153, + [158] = 153, [159] = 159, - [160] = 157, + [160] = 154, [161] = 161, [162] = 162, [163] = 163, - [164] = 164, - [165] = 158, - [166] = 153, - [167] = 155, - [168] = 152, - [169] = 157, - [170] = 158, - [171] = 161, - [172] = 144, - [173] = 147, - [174] = 153, - [175] = 155, - [176] = 152, - [177] = 157, - [178] = 158, - [179] = 162, - [180] = 159, - [181] = 163, - [182] = 164, - [183] = 155, + [164] = 162, + [165] = 145, + [166] = 166, + [167] = 161, + [168] = 166, + [169] = 153, + [170] = 170, + [171] = 154, + [172] = 163, + [173] = 159, + [174] = 174, + [175] = 174, + [176] = 166, + [177] = 170, + [178] = 166, + [179] = 152, + [180] = 161, + [181] = 161, + [182] = 162, + [183] = 162, [184] = 184, - [185] = 184, - [186] = 186, - [187] = 187, - [188] = 184, - [189] = 144, - [190] = 147, - [191] = 184, - [192] = 187, + [185] = 145, + [186] = 144, + [187] = 184, + [188] = 188, + [189] = 184, + [190] = 184, + [191] = 191, + [192] = 191, [193] = 193, - [194] = 103, + [194] = 110, [195] = 195, [196] = 196, [197] = 197, @@ -5020,303 +5036,303 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [204] = 204, [205] = 205, [206] = 206, - [207] = 207, - [208] = 195, - [209] = 209, - [210] = 210, - [211] = 211, + [207] = 196, + [208] = 200, + [209] = 197, + [210] = 198, + [211] = 199, [212] = 212, - [213] = 213, - [214] = 214, - [215] = 215, - [216] = 216, + [213] = 201, + [214] = 202, + [215] = 203, + [216] = 204, [217] = 217, - [218] = 196, + [218] = 218, [219] = 219, - [220] = 197, - [221] = 205, + [220] = 220, + [221] = 221, [222] = 222, - [223] = 198, - [224] = 199, - [225] = 200, - [226] = 201, - [227] = 202, - [228] = 203, - [229] = 204, - [230] = 222, - [231] = 206, - [232] = 207, - [233] = 195, - [234] = 219, - [235] = 210, - [236] = 211, - [237] = 212, - [238] = 213, - [239] = 214, - [240] = 215, - [241] = 216, - [242] = 217, - [243] = 196, - [244] = 219, - [245] = 197, - [246] = 205, - [247] = 222, - [248] = 198, - [249] = 199, - [250] = 200, - [251] = 201, - [252] = 202, - [253] = 203, - [254] = 204, - [255] = 206, - [256] = 207, - [257] = 209, - [258] = 210, - [259] = 211, - [260] = 212, - [261] = 213, - [262] = 214, - [263] = 215, - [264] = 216, - [265] = 217, - [266] = 209, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 217, + [229] = 218, + [230] = 219, + [231] = 220, + [232] = 221, + [233] = 222, + [234] = 223, + [235] = 224, + [236] = 225, + [237] = 226, + [238] = 227, + [239] = 195, + [240] = 205, + [241] = 206, + [242] = 196, + [243] = 200, + [244] = 197, + [245] = 198, + [246] = 199, + [247] = 212, + [248] = 201, + [249] = 202, + [250] = 203, + [251] = 204, + [252] = 217, + [253] = 218, + [254] = 219, + [255] = 220, + [256] = 221, + [257] = 222, + [258] = 223, + [259] = 224, + [260] = 225, + [261] = 226, + [262] = 227, + [263] = 195, + [264] = 205, + [265] = 206, + [266] = 212, [267] = 92, [268] = 93, [269] = 92, [270] = 93, [271] = 93, [272] = 92, - [273] = 98, - [274] = 274, + [273] = 273, + [274] = 273, [275] = 275, - [276] = 274, - [277] = 92, - [278] = 93, - [279] = 99, - [280] = 280, - [281] = 280, - [282] = 99, - [283] = 275, - [284] = 98, - [285] = 274, - [286] = 99, - [287] = 280, - [288] = 274, - [289] = 275, - [290] = 280, - [291] = 274, - [292] = 280, - [293] = 98, - [294] = 115, - [295] = 99, - [296] = 93, - [297] = 108, - [298] = 105, - [299] = 108, - [300] = 106, - [301] = 106, - [302] = 106, - [303] = 105, - [304] = 108, - [305] = 105, - [306] = 115, - [307] = 115, - [308] = 92, - [309] = 98, - [310] = 98, - [311] = 115, - [312] = 105, - [313] = 106, - [314] = 108, - [315] = 99, - [316] = 105, - [317] = 106, - [318] = 108, - [319] = 115, - [320] = 320, - [321] = 320, - [322] = 320, - [323] = 147, + [276] = 275, + [277] = 277, + [278] = 275, + [279] = 275, + [280] = 273, + [281] = 101, + [282] = 277, + [283] = 98, + [284] = 101, + [285] = 98, + [286] = 275, + [287] = 277, + [288] = 101, + [289] = 98, + [290] = 93, + [291] = 92, + [292] = 277, + [293] = 277, + [294] = 101, + [295] = 109, + [296] = 111, + [297] = 112, + [298] = 108, + [299] = 109, + [300] = 111, + [301] = 112, + [302] = 111, + [303] = 112, + [304] = 93, + [305] = 92, + [306] = 108, + [307] = 108, + [308] = 98, + [309] = 109, + [310] = 108, + [311] = 101, + [312] = 98, + [313] = 313, + [314] = 313, + [315] = 109, + [316] = 112, + [317] = 111, + [318] = 313, + [319] = 108, + [320] = 109, + [321] = 111, + [322] = 112, + [323] = 145, [324] = 144, - [325] = 144, - [326] = 147, - [327] = 147, + [325] = 145, + [326] = 144, + [327] = 145, [328] = 144, - [329] = 147, + [329] = 145, [330] = 144, [331] = 144, - [332] = 147, + [332] = 145, [333] = 333, [334] = 334, - [335] = 333, - [336] = 336, - [337] = 336, + [335] = 335, + [336] = 333, + [337] = 334, [338] = 338, - [339] = 339, - [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 341, - [345] = 345, - [346] = 342, - [347] = 345, - [348] = 345, + [339] = 338, + [340] = 333, + [341] = 333, + [342] = 333, + [343] = 333, + [344] = 333, + [345] = 333, + [346] = 333, + [347] = 333, + [348] = 333, [349] = 349, - [350] = 345, + [350] = 350, [351] = 351, - [352] = 349, + [352] = 352, [353] = 353, - [354] = 345, - [355] = 340, - [356] = 345, - [357] = 357, - [358] = 345, - [359] = 345, + [354] = 354, + [355] = 349, + [356] = 350, + [357] = 351, + [358] = 352, + [359] = 359, [360] = 360, - [361] = 360, - [362] = 345, - [363] = 338, + [361] = 361, + [362] = 362, + [363] = 363, [364] = 353, - [365] = 343, - [366] = 345, - [367] = 345, - [368] = 368, + [365] = 360, + [366] = 361, + [367] = 354, + [368] = 335, [369] = 369, - [370] = 333, - [371] = 371, - [372] = 334, + [370] = 334, + [371] = 369, + [372] = 372, [373] = 369, - [374] = 336, - [375] = 342, - [376] = 376, + [374] = 374, + [375] = 372, + [376] = 338, [377] = 377, - [378] = 378, - [379] = 376, + [378] = 369, + [379] = 369, [380] = 380, - [381] = 338, - [382] = 353, - [383] = 376, - [384] = 380, - [385] = 339, - [386] = 380, - [387] = 380, - [388] = 351, - [389] = 389, - [390] = 357, - [391] = 343, - [392] = 360, - [393] = 340, - [394] = 341, - [395] = 349, - [396] = 380, + [381] = 377, + [382] = 377, + [383] = 383, + [384] = 349, + [385] = 353, + [386] = 363, + [387] = 387, + [388] = 354, + [389] = 362, + [390] = 350, + [391] = 351, + [392] = 352, + [393] = 359, + [394] = 360, + [395] = 361, + [396] = 396, [397] = 397, [398] = 398, [399] = 399, [400] = 400, - [401] = 389, - [402] = 334, + [401] = 401, + [402] = 374, [403] = 403, - [404] = 369, - [405] = 368, - [406] = 336, + [404] = 404, + [405] = 405, + [406] = 338, [407] = 407, - [408] = 408, - [409] = 409, - [410] = 410, + [408] = 335, + [409] = 387, + [410] = 372, [411] = 411, [412] = 412, - [413] = 357, - [414] = 333, - [415] = 343, - [416] = 398, - [417] = 339, - [418] = 407, - [419] = 377, - [420] = 353, - [421] = 92, - [422] = 93, - [423] = 338, - [424] = 360, - [425] = 334, - [426] = 340, - [427] = 341, - [428] = 342, - [429] = 349, - [430] = 378, - [431] = 431, - [432] = 351, - [433] = 92, - [434] = 434, - [435] = 98, - [436] = 99, - [437] = 351, - [438] = 438, - [439] = 434, - [440] = 369, - [441] = 339, - [442] = 442, - [443] = 400, - [444] = 444, - [445] = 434, - [446] = 446, - [447] = 357, - [448] = 408, - [449] = 409, - [450] = 410, - [451] = 411, - [452] = 403, - [453] = 368, - [454] = 93, + [413] = 362, + [414] = 335, + [415] = 93, + [416] = 92, + [417] = 399, + [418] = 361, + [419] = 353, + [420] = 350, + [421] = 334, + [422] = 397, + [423] = 383, + [424] = 351, + [425] = 352, + [426] = 363, + [427] = 360, + [428] = 359, + [429] = 401, + [430] = 430, + [431] = 354, + [432] = 349, + [433] = 101, + [434] = 362, + [435] = 374, + [436] = 359, + [437] = 404, + [438] = 398, + [439] = 403, + [440] = 400, + [441] = 93, + [442] = 98, + [443] = 443, + [444] = 92, + [445] = 445, + [446] = 411, + [447] = 447, + [448] = 412, + [449] = 449, + [450] = 449, + [451] = 363, + [452] = 372, + [453] = 449, + [454] = 454, [455] = 455, [456] = 456, - [457] = 455, - [458] = 455, - [459] = 459, + [457] = 457, + [458] = 456, + [459] = 456, [460] = 460, - [461] = 460, - [462] = 106, - [463] = 446, - [464] = 464, - [465] = 465, + [461] = 98, + [462] = 457, + [463] = 456, + [464] = 109, + [465] = 457, [466] = 466, - [467] = 105, - [468] = 460, - [469] = 99, - [470] = 470, - [471] = 438, - [472] = 98, - [473] = 108, - [474] = 434, - [475] = 460, - [476] = 105, - [477] = 442, - [478] = 399, - [479] = 340, - [480] = 343, - [481] = 444, - [482] = 342, - [483] = 349, + [467] = 111, + [468] = 112, + [469] = 469, + [470] = 443, + [471] = 101, + [472] = 449, + [473] = 473, + [474] = 447, + [475] = 475, + [476] = 374, + [477] = 349, + [478] = 352, + [479] = 479, + [480] = 350, + [481] = 481, + [482] = 109, + [483] = 111, [484] = 484, [485] = 485, [486] = 486, - [487] = 360, - [488] = 341, + [487] = 334, + [488] = 112, [489] = 489, [490] = 490, - [491] = 491, - [492] = 368, - [493] = 493, - [494] = 412, - [495] = 108, - [496] = 333, - [497] = 497, + [491] = 454, + [492] = 492, + [493] = 353, + [494] = 407, + [495] = 495, + [496] = 496, + [497] = 354, [498] = 498, - [499] = 106, - [500] = 500, + [499] = 405, + [500] = 338, [501] = 501, - [502] = 336, - [503] = 503, + [502] = 351, + [503] = 445, [504] = 504, [505] = 505, [506] = 506, @@ -5325,59 +5341,59 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [509] = 509, [510] = 510, [511] = 511, - [512] = 512, - [513] = 513, + [512] = 466, + [513] = 460, [514] = 514, [515] = 515, [516] = 516, - [517] = 353, - [518] = 338, + [517] = 517, + [518] = 518, [519] = 519, [520] = 520, [521] = 521, [522] = 522, [523] = 523, - [524] = 504, + [524] = 524, [525] = 525, [526] = 526, [527] = 527, [528] = 528, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 532, + [529] = 514, + [530] = 518, + [531] = 519, + [532] = 520, [533] = 533, [534] = 534, [535] = 535, - [536] = 536, + [536] = 522, [537] = 537, [538] = 538, [539] = 539, [540] = 540, - [541] = 526, - [542] = 529, - [543] = 532, - [544] = 533, - [545] = 534, - [546] = 536, - [547] = 537, - [548] = 538, - [549] = 539, - [550] = 527, - [551] = 528, - [552] = 535, + [541] = 541, + [542] = 542, + [543] = 543, + [544] = 544, + [545] = 545, + [546] = 546, + [547] = 547, + [548] = 548, + [549] = 549, + [550] = 550, + [551] = 551, + [552] = 552, [553] = 553, - [554] = 553, - [555] = 527, - [556] = 519, - [557] = 520, - [558] = 521, - [559] = 522, - [560] = 523, - [561] = 538, - [562] = 525, - [563] = 530, - [564] = 531, + [554] = 505, + [555] = 506, + [556] = 507, + [557] = 508, + [558] = 509, + [559] = 510, + [560] = 511, + [561] = 561, + [562] = 561, + [563] = 563, + [564] = 564, [565] = 565, [566] = 566, [567] = 567, @@ -5388,117 +5404,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [572] = 572, [573] = 573, [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 578, - [579] = 579, - [580] = 580, - [581] = 581, - [582] = 528, - [583] = 535, - [584] = 553, - [585] = 585, - [586] = 505, - [587] = 506, - [588] = 507, - [589] = 508, - [590] = 509, - [591] = 510, - [592] = 511, - [593] = 512, - [594] = 513, - [595] = 514, - [596] = 515, - [597] = 516, - [598] = 565, - [599] = 566, - [600] = 567, - [601] = 568, - [602] = 569, - [603] = 570, - [604] = 571, - [605] = 572, - [606] = 573, - [607] = 574, - [608] = 575, - [609] = 576, - [610] = 577, - [611] = 578, - [612] = 579, - [613] = 580, - [614] = 581, - [615] = 459, - [616] = 519, - [617] = 520, - [618] = 618, - [619] = 521, - [620] = 522, - [621] = 523, - [622] = 504, - [623] = 525, - [624] = 530, - [625] = 625, - [626] = 531, - [627] = 565, - [628] = 566, - [629] = 629, - [630] = 630, - [631] = 585, - [632] = 505, - [633] = 506, - [634] = 507, - [635] = 508, - [636] = 509, - [637] = 539, - [638] = 510, - [639] = 511, - [640] = 512, - [641] = 513, - [642] = 642, - [643] = 567, - [644] = 514, - [645] = 645, - [646] = 568, - [647] = 515, - [648] = 569, - [649] = 570, - [650] = 516, - [651] = 571, - [652] = 572, - [653] = 573, - [654] = 574, - [655] = 537, - [656] = 575, - [657] = 657, - [658] = 576, - [659] = 577, - [660] = 578, - [661] = 579, - [662] = 580, - [663] = 581, - [664] = 470, - [665] = 526, - [666] = 529, - [667] = 532, - [668] = 533, - [669] = 534, - [670] = 536, - [671] = 585, - [672] = 444, - [673] = 645, + [575] = 563, + [576] = 564, + [577] = 565, + [578] = 566, + [579] = 567, + [580] = 568, + [581] = 569, + [582] = 570, + [583] = 571, + [584] = 572, + [585] = 573, + [586] = 574, + [587] = 523, + [588] = 524, + [589] = 525, + [590] = 526, + [591] = 527, + [592] = 528, + [593] = 514, + [594] = 518, + [595] = 519, + [596] = 520, + [597] = 533, + [598] = 534, + [599] = 535, + [600] = 553, + [601] = 537, + [602] = 538, + [603] = 539, + [604] = 540, + [605] = 541, + [606] = 542, + [607] = 543, + [608] = 544, + [609] = 504, + [610] = 545, + [611] = 546, + [612] = 547, + [613] = 548, + [614] = 549, + [615] = 550, + [616] = 551, + [617] = 552, + [618] = 553, + [619] = 505, + [620] = 506, + [621] = 507, + [622] = 508, + [623] = 509, + [624] = 510, + [625] = 511, + [626] = 561, + [627] = 563, + [628] = 564, + [629] = 565, + [630] = 566, + [631] = 567, + [632] = 568, + [633] = 569, + [634] = 570, + [635] = 571, + [636] = 572, + [637] = 573, + [638] = 574, + [639] = 533, + [640] = 537, + [641] = 538, + [642] = 539, + [643] = 540, + [644] = 361, + [645] = 541, + [646] = 646, + [647] = 360, + [648] = 542, + [649] = 649, + [650] = 526, + [651] = 543, + [652] = 534, + [653] = 535, + [654] = 527, + [655] = 655, + [656] = 656, + [657] = 528, + [658] = 544, + [659] = 504, + [660] = 545, + [661] = 546, + [662] = 525, + [663] = 523, + [664] = 547, + [665] = 548, + [666] = 549, + [667] = 550, + [668] = 551, + [669] = 524, + [670] = 552, + [671] = 522, + [672] = 672, + [673] = 673, [674] = 674, [675] = 675, [676] = 676, [677] = 677, - [678] = 500, + [678] = 678, [679] = 679, - [680] = 503, - [681] = 681, + [680] = 680, + [681] = 517, [682] = 682, - [683] = 683, - [684] = 490, - [685] = 685, + [683] = 479, + [684] = 684, + [685] = 445, [686] = 686, [687] = 687, [688] = 688, @@ -5506,20 +5522,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [690] = 690, [691] = 691, [692] = 692, - [693] = 642, + [693] = 516, [694] = 694, - [695] = 695, - [696] = 442, + [695] = 335, + [696] = 372, [697] = 697, - [698] = 698, + [698] = 484, [699] = 699, - [700] = 700, - [701] = 369, + [700] = 489, + [701] = 454, [702] = 702, [703] = 703, [704] = 704, [705] = 705, - [706] = 334, + [706] = 706, [707] = 707, [708] = 708, [709] = 709, @@ -5528,7 +5544,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [712] = 712, [713] = 713, [714] = 714, - [715] = 713, + [715] = 715, [716] = 716, [717] = 717, [718] = 718, @@ -5540,10 +5556,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [724] = 724, [725] = 725, [726] = 726, - [727] = 727, + [727] = 359, [728] = 728, - [729] = 357, - [730] = 730, + [729] = 729, + [730] = 454, [731] = 731, [732] = 732, [733] = 733, @@ -5558,251 +5574,251 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [742] = 742, [743] = 743, [744] = 744, - [745] = 714, + [745] = 460, [746] = 746, [747] = 747, [748] = 748, [749] = 749, [750] = 750, - [751] = 725, - [752] = 731, - [753] = 732, - [754] = 733, - [755] = 734, - [756] = 714, - [757] = 713, - [758] = 716, - [759] = 717, - [760] = 718, - [761] = 493, - [762] = 716, + [751] = 751, + [752] = 752, + [753] = 753, + [754] = 466, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 761, + [762] = 762, [763] = 763, [764] = 764, - [765] = 717, + [765] = 765, [766] = 766, [767] = 767, - [768] = 718, + [768] = 756, [769] = 769, [770] = 770, - [771] = 771, - [772] = 772, - [773] = 773, - [774] = 774, + [771] = 757, + [772] = 758, + [773] = 759, + [774] = 760, [775] = 775, [776] = 776, [777] = 777, [778] = 778, - [779] = 444, + [779] = 779, [780] = 780, [781] = 781, [782] = 782, - [783] = 339, - [784] = 351, - [785] = 485, - [786] = 442, - [787] = 486, + [783] = 783, + [784] = 784, + [785] = 785, + [786] = 786, + [787] = 787, [788] = 788, [789] = 789, - [790] = 484, - [791] = 444, + [790] = 790, + [791] = 791, [792] = 792, - [793] = 793, + [793] = 454, [794] = 794, - [795] = 470, - [796] = 734, + [795] = 795, + [796] = 796, [797] = 797, [798] = 798, - [799] = 799, - [800] = 800, + [799] = 490, + [800] = 755, [801] = 801, [802] = 802, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 806, - [807] = 807, - [808] = 808, + [803] = 756, + [804] = 757, + [805] = 758, + [806] = 759, + [807] = 760, + [808] = 761, [809] = 809, - [810] = 810, - [811] = 748, - [812] = 749, - [813] = 750, - [814] = 725, - [815] = 731, - [816] = 732, - [817] = 733, - [818] = 734, - [819] = 714, - [820] = 713, - [821] = 716, - [822] = 717, - [823] = 718, + [810] = 362, + [811] = 762, + [812] = 763, + [813] = 764, + [814] = 765, + [815] = 815, + [816] = 816, + [817] = 817, + [818] = 818, + [819] = 766, + [820] = 767, + [821] = 821, + [822] = 822, + [823] = 823, [824] = 824, - [825] = 825, + [825] = 755, [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 497, - [831] = 831, - [832] = 832, - [833] = 833, + [827] = 761, + [828] = 762, + [829] = 763, + [830] = 764, + [831] = 765, + [832] = 766, + [833] = 767, [834] = 834, [835] = 835, [836] = 836, - [837] = 837, - [838] = 748, - [839] = 749, - [840] = 750, - [841] = 725, - [842] = 731, - [843] = 732, - [844] = 733, - [845] = 734, - [846] = 714, - [847] = 713, - [848] = 716, - [849] = 717, - [850] = 718, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 489, - [865] = 748, - [866] = 749, - [867] = 750, - [868] = 725, - [869] = 731, - [870] = 732, - [871] = 733, - [872] = 734, - [873] = 714, - [874] = 713, - [875] = 716, - [876] = 717, - [877] = 718, - [878] = 878, - [879] = 879, - [880] = 733, + [837] = 755, + [838] = 756, + [839] = 757, + [840] = 758, + [841] = 759, + [842] = 363, + [843] = 760, + [844] = 761, + [845] = 762, + [846] = 763, + [847] = 755, + [848] = 756, + [849] = 757, + [850] = 758, + [851] = 759, + [852] = 760, + [853] = 761, + [854] = 762, + [855] = 763, + [856] = 764, + [857] = 765, + [858] = 766, + [859] = 767, + [860] = 764, + [861] = 765, + [862] = 481, + [863] = 766, + [864] = 767, + [865] = 495, + [866] = 498, + [867] = 867, + [868] = 501, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 445, + [876] = 876, + [877] = 755, + [878] = 756, + [879] = 757, + [880] = 758, [881] = 881, - [882] = 748, - [883] = 749, - [884] = 750, - [885] = 885, - [886] = 886, + [882] = 759, + [883] = 760, + [884] = 761, + [885] = 762, + [886] = 763, [887] = 887, - [888] = 888, - [889] = 748, - [890] = 749, - [891] = 750, - [892] = 725, - [893] = 731, - [894] = 732, - [895] = 459, - [896] = 896, + [888] = 764, + [889] = 765, + [890] = 766, + [891] = 767, + [892] = 892, + [893] = 893, + [894] = 486, + [895] = 895, + [896] = 710, [897] = 897, - [898] = 898, + [898] = 687, [899] = 899, - [900] = 900, + [900] = 688, [901] = 901, [902] = 902, [903] = 903, - [904] = 904, - [905] = 500, + [904] = 489, + [905] = 492, [906] = 906, - [907] = 503, - [908] = 490, + [907] = 907, + [908] = 484, [909] = 909, [910] = 910, [911] = 911, [912] = 912, - [913] = 913, - [914] = 914, + [913] = 460, + [914] = 709, [915] = 915, [916] = 916, - [917] = 917, - [918] = 692, + [917] = 469, + [918] = 918, [919] = 919, - [920] = 675, - [921] = 921, + [920] = 496, + [921] = 656, [922] = 922, [923] = 923, [924] = 924, [925] = 925, [926] = 926, [927] = 927, - [928] = 697, - [929] = 698, - [930] = 930, + [928] = 928, + [929] = 674, + [930] = 374, [931] = 931, - [932] = 465, - [933] = 368, - [934] = 705, - [935] = 466, + [932] = 932, + [933] = 933, + [934] = 697, + [935] = 705, [936] = 936, [937] = 937, - [938] = 491, - [939] = 700, - [940] = 470, + [938] = 938, + [939] = 939, + [940] = 940, [941] = 941, - [942] = 498, + [942] = 942, [943] = 943, - [944] = 944, - [945] = 945, + [944] = 677, + [945] = 907, [946] = 946, - [947] = 947, - [948] = 948, + [947] = 678, + [948] = 475, [949] = 949, - [950] = 704, + [950] = 466, [951] = 951, - [952] = 712, + [952] = 952, [953] = 953, - [954] = 954, + [954] = 907, [955] = 955, - [956] = 709, - [957] = 459, - [958] = 958, + [956] = 956, + [957] = 479, + [958] = 956, [959] = 959, [960] = 960, [961] = 961, - [962] = 921, - [963] = 921, - [964] = 540, + [962] = 962, + [963] = 963, + [964] = 964, [965] = 965, - [966] = 691, + [966] = 956, [967] = 967, - [968] = 710, - [969] = 674, - [970] = 500, - [971] = 971, - [972] = 679, - [973] = 503, - [974] = 686, - [975] = 490, - [976] = 976, + [968] = 690, + [969] = 706, + [970] = 707, + [971] = 708, + [972] = 699, + [973] = 867, + [974] = 959, + [975] = 912, + [976] = 919, [977] = 977, - [978] = 978, - [979] = 979, + [978] = 964, + [979] = 965, [980] = 980, - [981] = 681, + [981] = 981, [982] = 982, - [983] = 983, + [983] = 927, [984] = 984, - [985] = 985, + [985] = 946, [986] = 986, - [987] = 987, + [987] = 951, [988] = 988, - [989] = 989, + [989] = 955, [990] = 990, [991] = 991, [992] = 992, @@ -5818,39 +5834,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1002] = 1002, [1003] = 1003, [1004] = 1004, - [1005] = 978, + [1005] = 1005, [1006] = 1006, [1007] = 1007, [1008] = 1008, - [1009] = 1009, + [1009] = 672, [1010] = 1010, [1011] = 1011, - [1012] = 682, + [1012] = 1012, [1013] = 1013, [1014] = 1014, [1015] = 1015, - [1016] = 687, - [1017] = 1017, + [1016] = 1016, + [1017] = 479, [1018] = 1018, - [1019] = 1019, + [1019] = 484, [1020] = 1020, - [1021] = 971, + [1021] = 489, [1022] = 1022, [1023] = 1023, [1024] = 1024, - [1025] = 886, - [1026] = 960, + [1025] = 1025, + [1026] = 1026, [1027] = 1027, - [1028] = 937, + [1028] = 1028, [1029] = 1029, [1030] = 1030, [1031] = 1031, [1032] = 1032, - [1033] = 688, + [1033] = 1033, [1034] = 1034, [1035] = 1035, - [1036] = 1036, - [1037] = 1037, + [1036] = 712, + [1037] = 694, [1038] = 1038, [1039] = 1039, [1040] = 1040, @@ -5860,50 +5876,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1044] = 1044, [1045] = 1045, [1046] = 1046, - [1047] = 941, + [1047] = 1047, [1048] = 1048, - [1049] = 961, - [1050] = 931, + [1049] = 1049, + [1050] = 1050, [1051] = 1051, [1052] = 1052, [1053] = 1053, - [1054] = 1054, + [1054] = 686, [1055] = 1055, [1056] = 1056, [1057] = 1057, [1058] = 1058, [1059] = 1059, [1060] = 1060, - [1061] = 1061, + [1061] = 1055, [1062] = 1062, - [1063] = 948, + [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 954, + [1068] = 691, [1069] = 1069, [1070] = 1070, - [1071] = 683, + [1071] = 1071, [1072] = 1072, [1073] = 1073, [1074] = 1074, [1075] = 1075, [1076] = 1076, - [1077] = 1077, + [1077] = 682, [1078] = 1078, [1079] = 1079, [1080] = 1080, [1081] = 1081, [1082] = 1082, - [1083] = 958, - [1084] = 1084, - [1085] = 1085, + [1083] = 1083, + [1084] = 675, + [1085] = 679, [1086] = 689, [1087] = 1087, [1088] = 1088, [1089] = 1089, - [1090] = 959, + [1090] = 1090, [1091] = 1091, [1092] = 1092, [1093] = 1093, @@ -5915,34 +5931,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1099] = 1099, [1100] = 1100, [1101] = 1101, - [1102] = 1102, - [1103] = 1103, - [1104] = 1104, - [1105] = 1105, + [1102] = 711, + [1103] = 702, + [1104] = 704, + [1105] = 703, [1106] = 1106, [1107] = 1107, - [1108] = 1108, - [1109] = 985, - [1110] = 987, - [1111] = 988, + [1108] = 1101, + [1109] = 454, + [1110] = 1110, + [1111] = 1111, [1112] = 1112, - [1113] = 1113, - [1114] = 1043, - [1115] = 1115, + [1113] = 1022, + [1114] = 1024, + [1115] = 1025, [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 702, + [1119] = 1119, [1120] = 1120, - [1121] = 707, - [1122] = 444, - [1123] = 708, - [1124] = 703, - [1125] = 971, - [1126] = 711, - [1127] = 677, - [1128] = 690, - [1129] = 978, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 1128, + [1129] = 1055, [1130] = 1130, [1131] = 1131, [1132] = 1132, @@ -5954,9 +5970,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 1141, + [1141] = 684, [1142] = 1142, - [1143] = 1143, + [1143] = 673, [1144] = 1144, [1145] = 1145, [1146] = 1146, @@ -5976,16 +5992,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1160] = 1160, [1161] = 1161, [1162] = 1162, - [1163] = 1112, + [1163] = 1163, [1164] = 1164, [1165] = 1165, [1166] = 1166, [1167] = 1167, [1168] = 1168, - [1169] = 699, + [1169] = 1169, [1170] = 1170, [1171] = 1171, - [1172] = 1113, + [1172] = 1172, [1173] = 1173, [1174] = 1174, [1175] = 1175, @@ -6018,12 +6034,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1202] = 1202, [1203] = 1203, [1204] = 1204, - [1205] = 967, + [1205] = 1205, [1206] = 1206, - [1207] = 1043, + [1207] = 1207, [1208] = 1208, - [1209] = 1209, - [1210] = 1210, + [1209] = 1106, + [1210] = 1107, [1211] = 1211, [1212] = 1212, [1213] = 1213, @@ -6032,11 +6048,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1216] = 1216, [1217] = 1217, [1218] = 1218, - [1219] = 1219, - [1220] = 685, - [1221] = 1221, + [1219] = 1106, + [1220] = 1107, + [1221] = 1101, [1222] = 1222, - [1223] = 676, + [1223] = 1223, [1224] = 1224, [1225] = 1225, [1226] = 1226, @@ -6045,22 +6061,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1229] = 1229, [1230] = 1230, [1231] = 1231, - [1232] = 1232, + [1232] = 1013, [1233] = 1233, [1234] = 1234, [1235] = 1235, [1236] = 1236, - [1237] = 1151, + [1237] = 1237, [1238] = 1238, - [1239] = 1112, - [1240] = 1230, + [1239] = 1239, + [1240] = 1240, [1241] = 1241, - [1242] = 1113, - [1243] = 1243, - [1244] = 1244, - [1245] = 1245, + [1242] = 1242, + [1243] = 1134, + [1244] = 1156, + [1245] = 1145, [1246] = 1246, - [1247] = 1247, + [1247] = 1146, [1248] = 1248, [1249] = 1249, [1250] = 1250, @@ -6069,1408 +6085,1408 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1253] = 1253, [1254] = 1254, [1255] = 1255, - [1256] = 1232, - [1257] = 1232, - [1258] = 1232, - [1259] = 1232, - [1260] = 1149, - [1261] = 1261, + [1256] = 680, + [1257] = 1257, + [1258] = 1258, + [1259] = 1156, + [1260] = 1156, + [1261] = 1156, [1262] = 1262, - [1263] = 764, - [1264] = 888, - [1265] = 730, - [1266] = 955, - [1267] = 1133, - [1268] = 944, - [1269] = 721, - [1270] = 898, - [1271] = 722, - [1272] = 936, - [1273] = 724, - [1274] = 899, + [1263] = 1180, + [1264] = 692, + [1265] = 938, + [1266] = 736, + [1267] = 939, + [1268] = 785, + [1269] = 901, + [1270] = 869, + [1271] = 925, + [1272] = 870, + [1273] = 871, + [1274] = 729, [1275] = 1275, - [1276] = 1142, - [1277] = 887, - [1278] = 1136, - [1279] = 735, - [1280] = 917, - [1281] = 911, - [1282] = 913, - [1283] = 1140, - [1284] = 922, - [1285] = 947, - [1286] = 1145, - [1287] = 1287, - [1288] = 1203, - [1289] = 695, - [1290] = 927, - [1291] = 1291, - [1292] = 923, - [1293] = 924, - [1294] = 945, - [1295] = 926, - [1296] = 914, - [1297] = 949, - [1298] = 726, - [1299] = 897, - [1300] = 727, - [1301] = 915, - [1302] = 909, - [1303] = 943, - [1304] = 694, - [1305] = 953, - [1306] = 728, - [1307] = 906, - [1308] = 1138, - [1309] = 746, - [1310] = 747, - [1311] = 723, - [1312] = 903, - [1313] = 904, - [1314] = 1147, - [1315] = 1144, - [1316] = 719, - [1317] = 902, - [1318] = 896, - [1319] = 763, - [1320] = 930, - [1321] = 910, - [1322] = 946, - [1323] = 1247, - [1324] = 720, - [1325] = 743, - [1326] = 744, - [1327] = 900, - [1328] = 1328, - [1329] = 1329, - [1330] = 1251, - [1331] = 1331, - [1332] = 916, - [1333] = 951, - [1334] = 901, - [1335] = 1254, - [1336] = 736, - [1337] = 737, - [1338] = 1328, - [1339] = 738, - [1340] = 739, - [1341] = 740, - [1342] = 741, - [1343] = 742, - [1344] = 925, - [1345] = 919, + [1276] = 1276, + [1277] = 897, + [1278] = 739, + [1279] = 741, + [1280] = 743, + [1281] = 747, + [1282] = 749, + [1283] = 752, + [1284] = 776, + [1285] = 942, + [1286] = 910, + [1287] = 1248, + [1288] = 967, + [1289] = 1138, + [1290] = 915, + [1291] = 1151, + [1292] = 926, + [1293] = 1160, + [1294] = 902, + [1295] = 1164, + [1296] = 794, + [1297] = 928, + [1298] = 1169, + [1299] = 962, + [1300] = 1300, + [1301] = 941, + [1302] = 1186, + [1303] = 909, + [1304] = 924, + [1305] = 911, + [1306] = 1190, + [1307] = 1307, + [1308] = 931, + [1309] = 1196, + [1310] = 918, + [1311] = 1131, + [1312] = 943, + [1313] = 1215, + [1314] = 953, + [1315] = 821, + [1316] = 872, + [1317] = 873, + [1318] = 922, + [1319] = 809, + [1320] = 960, + [1321] = 676, + [1322] = 786, + [1323] = 916, + [1324] = 932, + [1325] = 714, + [1326] = 787, + [1327] = 963, + [1328] = 940, + [1329] = 797, + [1330] = 899, + [1331] = 903, + [1332] = 722, + [1333] = 723, + [1334] = 874, + [1335] = 1335, + [1336] = 725, + [1337] = 933, + [1338] = 906, + [1339] = 949, + [1340] = 937, + [1341] = 1335, + [1342] = 923, + [1343] = 936, + [1344] = 1344, + [1345] = 952, [1346] = 1346, [1347] = 1347, [1348] = 1348, - [1349] = 1348, + [1349] = 1349, [1350] = 1350, [1351] = 1351, [1352] = 1352, - [1353] = 1353, + [1353] = 1350, [1354] = 1354, - [1355] = 540, - [1356] = 1356, + [1355] = 1355, + [1356] = 656, [1357] = 1357, [1358] = 1358, - [1359] = 691, - [1360] = 1360, + [1359] = 1352, + [1360] = 672, [1361] = 1361, [1362] = 1362, [1363] = 1363, - [1364] = 1364, - [1365] = 1362, - [1366] = 1366, - [1367] = 1354, - [1368] = 1356, - [1369] = 1358, - [1370] = 1357, - [1371] = 1350, - [1372] = 1372, - [1373] = 1362, - [1374] = 1362, - [1375] = 1362, + [1364] = 1358, + [1365] = 1365, + [1366] = 1358, + [1367] = 1351, + [1368] = 1368, + [1369] = 1354, + [1370] = 1362, + [1371] = 1371, + [1372] = 1358, + [1373] = 1355, + [1374] = 1358, + [1375] = 1375, [1376] = 1376, [1377] = 1377, [1378] = 1378, - [1379] = 389, - [1380] = 1366, + [1379] = 1379, + [1380] = 1365, [1381] = 1381, [1382] = 1382, - [1383] = 1383, + [1383] = 387, [1384] = 1384, [1385] = 1385, - [1386] = 389, - [1387] = 407, - [1388] = 398, + [1386] = 401, + [1387] = 1387, + [1388] = 1388, [1389] = 1389, - [1390] = 1390, + [1390] = 399, [1391] = 1391, - [1392] = 1392, + [1392] = 387, [1393] = 1393, - [1394] = 1394, + [1394] = 92, [1395] = 1395, - [1396] = 398, - [1397] = 407, - [1398] = 1398, - [1399] = 1399, - [1400] = 92, - [1401] = 93, - [1402] = 93, - [1403] = 98, + [1396] = 1396, + [1397] = 399, + [1398] = 93, + [1399] = 401, + [1400] = 1400, + [1401] = 1401, + [1402] = 656, + [1403] = 92, [1404] = 1404, - [1405] = 540, - [1406] = 446, + [1405] = 1405, + [1406] = 101, [1407] = 1407, - [1408] = 92, - [1409] = 1409, - [1410] = 99, - [1411] = 1411, - [1412] = 1412, - [1413] = 98, - [1414] = 444, - [1415] = 446, - [1416] = 691, - [1417] = 1417, - [1418] = 1418, - [1419] = 442, + [1408] = 98, + [1409] = 447, + [1410] = 93, + [1411] = 445, + [1412] = 98, + [1413] = 447, + [1414] = 1414, + [1415] = 672, + [1416] = 109, + [1417] = 111, + [1418] = 112, + [1419] = 1419, [1420] = 1420, - [1421] = 106, - [1422] = 99, - [1423] = 108, - [1424] = 1424, - [1425] = 105, - [1426] = 442, - [1427] = 444, - [1428] = 106, - [1429] = 470, - [1430] = 105, - [1431] = 459, - [1432] = 108, - [1433] = 500, - [1434] = 645, - [1435] = 503, - [1436] = 642, - [1437] = 490, - [1438] = 470, - [1439] = 459, - [1440] = 444, - [1441] = 642, - [1442] = 442, - [1443] = 645, - [1444] = 500, - [1445] = 1445, - [1446] = 1446, + [1421] = 1421, + [1422] = 1422, + [1423] = 1423, + [1424] = 454, + [1425] = 101, + [1426] = 112, + [1427] = 454, + [1428] = 445, + [1429] = 460, + [1430] = 466, + [1431] = 109, + [1432] = 111, + [1433] = 460, + [1434] = 489, + [1435] = 516, + [1436] = 466, + [1437] = 517, + [1438] = 479, + [1439] = 484, + [1440] = 479, + [1441] = 445, + [1442] = 1442, + [1443] = 517, + [1444] = 1444, + [1445] = 516, + [1446] = 484, [1447] = 1447, - [1448] = 503, - [1449] = 490, - [1450] = 1446, - [1451] = 459, - [1452] = 470, - [1453] = 1453, - [1454] = 1454, - [1455] = 1445, - [1456] = 442, - [1457] = 1454, - [1458] = 1447, - [1459] = 444, - [1460] = 937, - [1461] = 500, - [1462] = 961, - [1463] = 503, + [1448] = 489, + [1449] = 454, + [1450] = 454, + [1451] = 445, + [1452] = 460, + [1453] = 1444, + [1454] = 1447, + [1455] = 1455, + [1456] = 1456, + [1457] = 466, + [1458] = 1442, + [1459] = 1456, + [1460] = 964, + [1461] = 1461, + [1462] = 955, + [1463] = 1463, [1464] = 1464, - [1465] = 931, - [1466] = 1466, + [1465] = 867, + [1466] = 959, [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 941, - [1471] = 959, - [1472] = 886, + [1468] = 479, + [1469] = 965, + [1470] = 946, + [1471] = 1463, + [1472] = 951, [1473] = 1473, [1474] = 1474, [1475] = 1475, - [1476] = 470, - [1477] = 490, - [1478] = 1478, - [1479] = 948, - [1480] = 1480, - [1481] = 459, - [1482] = 960, + [1476] = 1476, + [1477] = 484, + [1478] = 912, + [1479] = 1479, + [1480] = 460, + [1481] = 1481, + [1482] = 489, [1483] = 1483, [1484] = 1484, [1485] = 1485, - [1486] = 954, - [1487] = 958, - [1488] = 1043, - [1489] = 1489, - [1490] = 960, - [1491] = 1491, - [1492] = 886, - [1493] = 1112, - [1494] = 961, - [1495] = 941, - [1496] = 1496, - [1497] = 931, - [1498] = 1498, - [1499] = 503, - [1500] = 490, - [1501] = 937, - [1502] = 958, - [1503] = 967, - [1504] = 959, - [1505] = 954, - [1506] = 948, - [1507] = 500, - [1508] = 1113, - [1509] = 1509, - [1510] = 1510, - [1511] = 1112, - [1512] = 1113, + [1486] = 1486, + [1487] = 927, + [1488] = 919, + [1489] = 466, + [1490] = 1107, + [1491] = 965, + [1492] = 484, + [1493] = 955, + [1494] = 1494, + [1495] = 927, + [1496] = 1106, + [1497] = 1497, + [1498] = 867, + [1499] = 946, + [1500] = 919, + [1501] = 951, + [1502] = 964, + [1503] = 1503, + [1504] = 1504, + [1505] = 959, + [1506] = 1013, + [1507] = 489, + [1508] = 1101, + [1509] = 479, + [1510] = 912, + [1511] = 1246, + [1512] = 1512, [1513] = 1513, - [1514] = 1514, - [1515] = 1515, - [1516] = 1516, - [1517] = 1517, - [1518] = 1043, - [1519] = 389, - [1520] = 967, - [1521] = 1521, - [1522] = 1522, - [1523] = 1523, - [1524] = 1524, + [1514] = 1512, + [1515] = 1224, + [1516] = 1226, + [1517] = 1228, + [1518] = 1233, + [1519] = 1235, + [1520] = 1237, + [1521] = 1239, + [1522] = 1241, + [1523] = 1513, + [1524] = 1249, [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1528, + [1526] = 1251, + [1527] = 1253, + [1528] = 1525, [1529] = 1529, [1530] = 1530, [1531] = 1531, - [1532] = 1532, - [1533] = 1533, - [1534] = 1534, + [1532] = 1529, + [1533] = 1530, + [1534] = 1531, [1535] = 1535, [1536] = 1536, [1537] = 1537, [1538] = 1538, - [1539] = 1539, - [1540] = 1509, - [1541] = 1541, - [1542] = 1542, - [1543] = 1543, - [1544] = 1535, - [1545] = 1536, - [1546] = 1526, - [1547] = 1527, - [1548] = 1528, - [1549] = 1529, - [1550] = 1530, - [1551] = 1531, - [1552] = 1532, - [1553] = 1513, - [1554] = 1514, - [1555] = 1516, - [1556] = 1517, - [1557] = 1521, - [1558] = 1522, - [1559] = 1523, - [1560] = 1524, - [1561] = 1533, - [1562] = 1534, - [1563] = 1537, - [1564] = 1176, - [1565] = 1262, - [1566] = 1250, - [1567] = 1255, - [1568] = 1135, - [1569] = 1158, - [1570] = 1182, - [1571] = 1221, - [1572] = 1226, - [1573] = 1235, - [1574] = 1241, - [1575] = 1245, - [1576] = 1538, - [1577] = 1530, - [1578] = 1187, - [1579] = 1243, - [1580] = 1156, - [1581] = 1175, - [1582] = 1193, - [1583] = 1222, - [1584] = 1168, - [1585] = 1173, - [1586] = 1180, - [1587] = 1190, - [1588] = 1197, - [1589] = 1234, - [1590] = 1244, - [1591] = 1261, - [1592] = 1159, - [1593] = 1178, - [1594] = 1183, - [1595] = 1188, - [1596] = 1196, - [1597] = 1201, - [1598] = 1211, - [1599] = 1217, - [1600] = 1225, - [1601] = 1236, - [1602] = 1249, - [1603] = 1253, - [1604] = 1539, - [1605] = 1154, - [1606] = 1161, - [1607] = 1164, - [1608] = 1171, - [1609] = 1174, - [1610] = 1185, - [1611] = 1192, - [1612] = 1195, - [1613] = 1199, - [1614] = 1209, - [1615] = 1213, - [1616] = 1215, - [1617] = 1219, - [1618] = 1224, - [1619] = 1228, - [1620] = 1231, - [1621] = 1233, - [1622] = 1238, - [1623] = 1246, - [1624] = 1248, - [1625] = 1132, - [1626] = 1134, - [1627] = 1137, - [1628] = 1139, - [1629] = 1141, - [1630] = 1143, - [1631] = 1146, - [1632] = 1148, - [1633] = 1150, - [1634] = 1152, - [1635] = 1155, - [1636] = 1157, - [1637] = 1160, - [1638] = 1162, - [1639] = 1165, - [1640] = 1167, - [1641] = 1170, - [1642] = 1177, - [1643] = 1179, - [1644] = 1181, - [1645] = 1184, - [1646] = 1186, - [1647] = 1189, - [1648] = 1191, - [1649] = 1194, - [1650] = 1198, - [1651] = 1200, - [1652] = 1131, - [1653] = 1204, - [1654] = 1206, - [1655] = 1208, - [1656] = 1210, - [1657] = 1212, - [1658] = 1216, - [1659] = 1218, - [1660] = 1227, - [1661] = 1229, - [1662] = 1541, - [1663] = 1542, - [1664] = 1543, - [1665] = 1247, - [1666] = 1251, - [1667] = 1254, - [1668] = 1203, - [1669] = 1133, - [1670] = 1136, - [1671] = 1138, - [1672] = 1140, - [1673] = 1142, - [1674] = 1144, - [1675] = 1145, - [1676] = 1147, - [1677] = 1530, - [1678] = 1214, - [1679] = 398, - [1680] = 1680, - [1681] = 1247, - [1682] = 1251, - [1683] = 1254, - [1684] = 1203, - [1685] = 1133, - [1686] = 1136, - [1687] = 1138, + [1539] = 1255, + [1540] = 1155, + [1541] = 1173, + [1542] = 1182, + [1543] = 1188, + [1544] = 1211, + [1545] = 1222, + [1546] = 1236, + [1547] = 1132, + [1548] = 1147, + [1549] = 1153, + [1550] = 1159, + [1551] = 1161, + [1552] = 1166, + [1553] = 1171, + [1554] = 1177, + [1555] = 1194, + [1556] = 1199, + [1557] = 1206, + [1558] = 1213, + [1559] = 1217, + [1560] = 1225, + [1561] = 1230, + [1562] = 1240, + [1563] = 1252, + [1564] = 1202, + [1565] = 1565, + [1566] = 1136, + [1567] = 1140, + [1568] = 1149, + [1569] = 1569, + [1570] = 1158, + [1571] = 1571, + [1572] = 1162, + [1573] = 1573, + [1574] = 1168, + [1575] = 1575, + [1576] = 1576, + [1577] = 1175, + [1578] = 1578, + [1579] = 1179, + [1580] = 1536, + [1581] = 1181, + [1582] = 1565, + [1583] = 1184, + [1584] = 1535, + [1585] = 1538, + [1586] = 1586, + [1587] = 1198, + [1588] = 1200, + [1589] = 1204, + [1590] = 1208, + [1591] = 1212, + [1592] = 1214, + [1593] = 1216, + [1594] = 1218, + [1595] = 1229, + [1596] = 1231, + [1597] = 1234, + [1598] = 1238, + [1599] = 1599, + [1600] = 1250, + [1601] = 1254, + [1602] = 1257, + [1603] = 1203, + [1604] = 1133, + [1605] = 1135, + [1606] = 1137, + [1607] = 1139, + [1608] = 1142, + [1609] = 1144, + [1610] = 1148, + [1611] = 1150, + [1612] = 1152, + [1613] = 1154, + [1614] = 1157, + [1615] = 1163, + [1616] = 1165, + [1617] = 1167, + [1618] = 1170, + [1619] = 1172, + [1620] = 1174, + [1621] = 1176, + [1622] = 1178, + [1623] = 1586, + [1624] = 1624, + [1625] = 1183, + [1626] = 1185, + [1627] = 1187, + [1628] = 1189, + [1629] = 1191, + [1630] = 1193, + [1631] = 1195, + [1632] = 1197, + [1633] = 1201, + [1634] = 1262, + [1635] = 1205, + [1636] = 1207, + [1637] = 1637, + [1638] = 1106, + [1639] = 1013, + [1640] = 1107, + [1641] = 1641, + [1642] = 1642, + [1643] = 1248, + [1644] = 1138, + [1645] = 1151, + [1646] = 1160, + [1647] = 1164, + [1648] = 1169, + [1649] = 1180, + [1650] = 1186, + [1651] = 1190, + [1652] = 1196, + [1653] = 1131, + [1654] = 1215, + [1655] = 1655, + [1656] = 1656, + [1657] = 1537, + [1658] = 1624, + [1659] = 1535, + [1660] = 1569, + [1661] = 1571, + [1662] = 1573, + [1663] = 1575, + [1664] = 1664, + [1665] = 1665, + [1666] = 1666, + [1667] = 1101, + [1668] = 1664, + [1669] = 1665, + [1670] = 1535, + [1671] = 1576, + [1672] = 387, + [1673] = 1655, + [1674] = 1578, + [1675] = 1641, + [1676] = 1642, + [1677] = 1656, + [1678] = 1242, + [1679] = 399, + [1680] = 1180, + [1681] = 1599, + [1682] = 1190, + [1683] = 1683, + [1684] = 1196, + [1685] = 1131, + [1686] = 401, + [1687] = 1215, [1688] = 1688, - [1689] = 1140, - [1690] = 1142, - [1691] = 1144, - [1692] = 1145, - [1693] = 1147, - [1694] = 1680, - [1695] = 389, - [1696] = 1510, - [1697] = 407, + [1689] = 1248, + [1690] = 1138, + [1691] = 1151, + [1692] = 1160, + [1693] = 387, + [1694] = 1683, + [1695] = 1164, + [1696] = 1169, + [1697] = 1186, [1698] = 1698, - [1699] = 1699, + [1699] = 92, [1700] = 1700, - [1701] = 1699, + [1701] = 397, [1702] = 1702, - [1703] = 1703, - [1704] = 92, - [1705] = 378, - [1706] = 93, - [1707] = 407, - [1708] = 398, - [1709] = 1698, - [1710] = 1710, - [1711] = 377, - [1712] = 1700, - [1713] = 1710, - [1714] = 1702, - [1715] = 400, - [1716] = 1716, - [1717] = 403, - [1718] = 446, - [1719] = 1719, - [1720] = 93, - [1721] = 1721, - [1722] = 98, - [1723] = 411, + [1703] = 93, + [1704] = 1704, + [1705] = 1705, + [1706] = 383, + [1707] = 401, + [1708] = 1705, + [1709] = 1704, + [1710] = 1698, + [1711] = 1702, + [1712] = 1712, + [1713] = 399, + [1714] = 1712, + [1715] = 1715, + [1716] = 338, + [1717] = 407, + [1718] = 412, + [1719] = 93, + [1720] = 92, + [1721] = 400, + [1722] = 447, + [1723] = 1723, [1724] = 1724, - [1725] = 99, + [1725] = 101, [1726] = 1726, - [1727] = 412, - [1728] = 408, - [1729] = 409, - [1730] = 410, - [1731] = 1719, - [1732] = 1719, - [1733] = 336, - [1734] = 399, - [1735] = 333, - [1736] = 92, + [1727] = 405, + [1728] = 411, + [1729] = 404, + [1730] = 398, + [1731] = 403, + [1732] = 1732, + [1733] = 98, + [1734] = 1723, + [1735] = 334, + [1736] = 1723, [1737] = 1737, - [1738] = 412, - [1739] = 446, - [1740] = 1740, - [1741] = 399, - [1742] = 338, - [1743] = 353, - [1744] = 92, - [1745] = 1737, + [1738] = 338, + [1739] = 1739, + [1740] = 445, + [1741] = 1741, + [1742] = 1742, + [1743] = 1743, + [1744] = 1744, + [1745] = 1745, [1746] = 1746, - [1747] = 444, - [1748] = 93, - [1749] = 343, - [1750] = 360, - [1751] = 340, - [1752] = 341, - [1753] = 1753, - [1754] = 349, - [1755] = 1755, - [1756] = 1753, - [1757] = 108, - [1758] = 1737, - [1759] = 105, - [1760] = 106, - [1761] = 99, - [1762] = 98, - [1763] = 1763, - [1764] = 1764, - [1765] = 442, - [1766] = 1755, - [1767] = 1767, - [1768] = 1740, - [1769] = 1769, - [1770] = 1770, - [1771] = 1767, - [1772] = 336, - [1773] = 1755, - [1774] = 333, - [1775] = 1755, - [1776] = 342, - [1777] = 108, - [1778] = 1778, - [1779] = 1779, - [1780] = 343, - [1781] = 1781, - [1782] = 1782, - [1783] = 1783, + [1747] = 1742, + [1748] = 1748, + [1749] = 360, + [1750] = 361, + [1751] = 1751, + [1752] = 1743, + [1753] = 405, + [1754] = 109, + [1755] = 447, + [1756] = 349, + [1757] = 407, + [1758] = 350, + [1759] = 1744, + [1760] = 93, + [1761] = 351, + [1762] = 352, + [1763] = 334, + [1764] = 1745, + [1765] = 454, + [1766] = 101, + [1767] = 112, + [1768] = 1742, + [1769] = 111, + [1770] = 1746, + [1771] = 1744, + [1772] = 98, + [1773] = 92, + [1774] = 353, + [1775] = 1744, + [1776] = 354, + [1777] = 1777, + [1778] = 353, + [1779] = 111, + [1780] = 112, + [1781] = 354, + [1782] = 349, + [1783] = 335, [1784] = 1784, [1785] = 1785, - [1786] = 360, - [1787] = 340, - [1788] = 1788, - [1789] = 1789, - [1790] = 1790, - [1791] = 1791, - [1792] = 1792, - [1793] = 1793, - [1794] = 1791, - [1795] = 334, - [1796] = 105, + [1786] = 1786, + [1787] = 1787, + [1788] = 350, + [1789] = 351, + [1790] = 352, + [1791] = 460, + [1792] = 466, + [1793] = 361, + [1794] = 445, + [1795] = 454, + [1796] = 1796, [1797] = 1797, - [1798] = 106, - [1799] = 1779, - [1800] = 341, - [1801] = 470, - [1802] = 342, - [1803] = 459, - [1804] = 442, - [1805] = 444, - [1806] = 349, - [1807] = 1807, + [1798] = 1798, + [1799] = 1799, + [1800] = 1800, + [1801] = 1801, + [1802] = 1802, + [1803] = 1803, + [1804] = 1804, + [1805] = 372, + [1806] = 1806, + [1807] = 1799, [1808] = 1808, - [1809] = 1790, - [1810] = 1810, - [1811] = 1810, - [1812] = 338, - [1813] = 353, - [1814] = 1788, - [1815] = 1789, - [1816] = 369, + [1809] = 360, + [1810] = 101, + [1811] = 98, + [1812] = 1796, + [1813] = 1813, + [1814] = 1808, + [1815] = 1784, + [1816] = 1785, [1817] = 1817, - [1818] = 1778, - [1819] = 1785, - [1820] = 1817, - [1821] = 1817, - [1822] = 1817, - [1823] = 99, - [1824] = 98, - [1825] = 339, - [1826] = 645, - [1827] = 642, + [1818] = 1777, + [1819] = 1797, + [1820] = 1813, + [1821] = 1813, + [1822] = 109, + [1823] = 1813, + [1824] = 1817, + [1825] = 109, + [1826] = 466, + [1827] = 359, [1828] = 1828, - [1829] = 500, - [1830] = 1830, - [1831] = 1831, - [1832] = 334, - [1833] = 351, - [1834] = 503, - [1835] = 490, - [1836] = 470, - [1837] = 369, + [1829] = 363, + [1830] = 516, + [1831] = 362, + [1832] = 517, + [1833] = 1833, + [1834] = 372, + [1835] = 112, + [1836] = 111, + [1837] = 335, [1838] = 1838, - [1839] = 459, - [1840] = 108, + [1839] = 1839, + [1840] = 479, [1841] = 1841, - [1842] = 105, - [1843] = 106, - [1844] = 357, - [1845] = 342, - [1846] = 1846, - [1847] = 500, - [1848] = 503, - [1849] = 490, - [1850] = 642, - [1851] = 1851, - [1852] = 685, - [1853] = 1853, - [1854] = 743, - [1855] = 645, - [1856] = 744, - [1857] = 339, - [1858] = 368, - [1859] = 93, - [1860] = 746, - [1861] = 747, - [1862] = 465, - [1863] = 1851, - [1864] = 442, - [1865] = 764, - [1866] = 466, - [1867] = 351, - [1868] = 357, - [1869] = 343, - [1870] = 360, - [1871] = 340, - [1872] = 676, - [1873] = 341, - [1874] = 349, - [1875] = 1830, - [1876] = 1473, - [1877] = 1846, - [1878] = 92, - [1879] = 444, - [1880] = 763, - [1881] = 744, - [1882] = 336, - [1883] = 497, - [1884] = 342, - [1885] = 747, - [1886] = 343, - [1887] = 746, - [1888] = 486, - [1889] = 676, - [1890] = 340, - [1891] = 341, - [1892] = 442, - [1893] = 92, - [1894] = 489, - [1895] = 444, - [1896] = 368, - [1897] = 1897, - [1898] = 466, - [1899] = 459, - [1900] = 1897, - [1901] = 484, - [1902] = 93, - [1903] = 1489, - [1904] = 470, - [1905] = 98, - [1906] = 763, - [1907] = 764, - [1908] = 465, - [1909] = 493, - [1910] = 349, - [1911] = 333, - [1912] = 99, - [1913] = 685, - [1914] = 360, - [1915] = 743, - [1916] = 485, - [1917] = 459, - [1918] = 948, - [1919] = 954, - [1920] = 886, - [1921] = 1921, - [1922] = 1922, + [1842] = 484, + [1843] = 489, + [1844] = 460, + [1845] = 786, + [1846] = 475, + [1847] = 1847, + [1848] = 794, + [1849] = 517, + [1850] = 454, + [1851] = 870, + [1852] = 516, + [1853] = 445, + [1854] = 350, + [1855] = 353, + [1856] = 349, + [1857] = 1847, + [1858] = 351, + [1859] = 352, + [1860] = 1860, + [1861] = 92, + [1862] = 363, + [1863] = 797, + [1864] = 1864, + [1865] = 871, + [1866] = 469, + [1867] = 680, + [1868] = 1484, + [1869] = 93, + [1870] = 354, + [1871] = 684, + [1872] = 1841, + [1873] = 362, + [1874] = 374, + [1875] = 359, + [1876] = 489, + [1877] = 479, + [1878] = 484, + [1879] = 1864, + [1880] = 787, + [1881] = 445, + [1882] = 1882, + [1883] = 92, + [1884] = 350, + [1885] = 354, + [1886] = 351, + [1887] = 374, + [1888] = 460, + [1889] = 490, + [1890] = 486, + [1891] = 353, + [1892] = 501, + [1893] = 101, + [1894] = 349, + [1895] = 794, + [1896] = 797, + [1897] = 495, + [1898] = 870, + [1899] = 338, + [1900] = 454, + [1901] = 871, + [1902] = 786, + [1903] = 1503, + [1904] = 98, + [1905] = 469, + [1906] = 1882, + [1907] = 93, + [1908] = 481, + [1909] = 466, + [1910] = 498, + [1911] = 680, + [1912] = 352, + [1913] = 475, + [1914] = 787, + [1915] = 684, + [1916] = 334, + [1917] = 687, + [1918] = 351, + [1919] = 1919, + [1920] = 1920, + [1921] = 349, + [1922] = 951, [1923] = 1923, - [1924] = 958, - [1925] = 959, - [1926] = 1926, - [1927] = 960, - [1928] = 937, - [1929] = 470, + [1924] = 361, + [1925] = 360, + [1926] = 111, + [1927] = 867, + [1928] = 1928, + [1929] = 1929, [1930] = 1930, - [1931] = 1931, - [1932] = 961, - [1933] = 931, - [1934] = 1498, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1938, - [1939] = 99, - [1940] = 1940, - [1941] = 349, - [1942] = 98, - [1943] = 1936, - [1944] = 108, - [1945] = 105, - [1946] = 106, - [1947] = 338, - [1948] = 353, - [1949] = 500, - [1950] = 503, - [1951] = 490, - [1952] = 941, - [1953] = 343, - [1954] = 360, - [1955] = 700, - [1956] = 709, - [1957] = 705, - [1958] = 340, - [1959] = 697, - [1960] = 704, - [1961] = 692, - [1962] = 675, - [1963] = 698, - [1964] = 341, - [1965] = 342, - [1966] = 712, - [1967] = 948, - [1968] = 1968, - [1969] = 937, - [1970] = 540, - [1971] = 500, - [1972] = 503, - [1973] = 490, - [1974] = 941, - [1975] = 1975, - [1976] = 1976, - [1977] = 333, - [1978] = 954, + [1931] = 1928, + [1932] = 98, + [1933] = 109, + [1934] = 489, + [1935] = 479, + [1936] = 959, + [1937] = 912, + [1938] = 466, + [1939] = 1939, + [1940] = 927, + [1941] = 350, + [1942] = 688, + [1943] = 678, + [1944] = 964, + [1945] = 1945, + [1946] = 1946, + [1947] = 697, + [1948] = 1948, + [1949] = 1504, + [1950] = 965, + [1951] = 946, + [1952] = 112, + [1953] = 709, + [1954] = 352, + [1955] = 1955, + [1956] = 919, + [1957] = 460, + [1958] = 353, + [1959] = 705, + [1960] = 710, + [1961] = 677, + [1962] = 484, + [1963] = 955, + [1964] = 354, + [1965] = 101, + [1966] = 674, + [1967] = 1208, + [1968] = 1013, + [1969] = 867, + [1970] = 1198, + [1971] = 1971, + [1972] = 1972, + [1973] = 1484, + [1974] = 1200, + [1975] = 1204, + [1976] = 1161, + [1977] = 1977, + [1978] = 1212, [1979] = 1979, - [1980] = 1980, - [1981] = 1981, - [1982] = 1176, - [1983] = 1262, - [1984] = 1250, - [1985] = 1255, - [1986] = 1135, - [1987] = 1158, - [1988] = 1182, - [1989] = 1221, + [1980] = 334, + [1981] = 1214, + [1982] = 1216, + [1983] = 335, + [1984] = 1218, + [1985] = 912, + [1986] = 1229, + [1987] = 1231, + [1988] = 1234, + [1989] = 1989, [1990] = 1990, - [1991] = 1226, - [1992] = 1235, - [1993] = 1241, - [1994] = 1245, - [1995] = 1995, - [1996] = 1187, - [1997] = 1243, - [1998] = 1156, - [1999] = 1175, - [2000] = 1193, - [2001] = 1222, - [2002] = 1168, - [2003] = 1173, - [2004] = 1180, - [2005] = 1190, - [2006] = 1197, - [2007] = 1214, - [2008] = 1234, - [2009] = 1244, - [2010] = 1261, - [2011] = 1159, - [2012] = 1178, - [2013] = 1183, - [2014] = 1188, - [2015] = 1196, - [2016] = 1201, - [2017] = 1211, - [2018] = 1217, - [2019] = 1225, - [2020] = 1236, - [2021] = 1249, - [2022] = 1253, - [2023] = 1154, - [2024] = 1161, - [2025] = 1164, - [2026] = 1171, - [2027] = 1174, - [2028] = 1185, - [2029] = 1192, - [2030] = 1195, - [2031] = 1199, - [2032] = 1209, - [2033] = 1213, - [2034] = 1215, - [2035] = 1219, - [2036] = 1224, - [2037] = 1228, - [2038] = 1231, - [2039] = 1233, - [2040] = 1238, - [2041] = 1246, - [2042] = 1248, - [2043] = 1132, - [2044] = 1134, - [2045] = 1137, - [2046] = 1139, - [2047] = 1141, - [2048] = 1143, - [2049] = 1146, - [2050] = 1148, - [2051] = 1150, - [2052] = 1152, - [2053] = 1155, - [2054] = 1157, - [2055] = 1160, - [2056] = 1162, - [2057] = 1165, - [2058] = 1167, - [2059] = 1170, - [2060] = 1177, - [2061] = 1179, - [2062] = 1181, - [2063] = 1184, - [2064] = 1186, - [2065] = 1189, - [2066] = 1191, - [2067] = 1194, - [2068] = 1198, - [2069] = 1200, - [2070] = 1131, - [2071] = 1204, - [2072] = 1206, - [2073] = 1208, - [2074] = 1210, - [2075] = 1212, - [2076] = 1216, - [2077] = 1218, - [2078] = 1227, - [2079] = 1229, - [2080] = 108, - [2081] = 2081, + [1991] = 1238, + [1992] = 1242, + [1993] = 1250, + [1994] = 959, + [1995] = 964, + [1996] = 965, + [1997] = 1254, + [1998] = 1257, + [1999] = 1203, + [2000] = 1133, + [2001] = 372, + [2002] = 2002, + [2003] = 2003, + [2004] = 2004, + [2005] = 1135, + [2006] = 1137, + [2007] = 1972, + [2008] = 1139, + [2009] = 1142, + [2010] = 1224, + [2011] = 1144, + [2012] = 1226, + [2013] = 1148, + [2014] = 1150, + [2015] = 1228, + [2016] = 1972, + [2017] = 1233, + [2018] = 1152, + [2019] = 1154, + [2020] = 1157, + [2021] = 1163, + [2022] = 1235, + [2023] = 1165, + [2024] = 111, + [2025] = 1167, + [2026] = 1170, + [2027] = 2027, + [2028] = 1237, + [2029] = 1239, + [2030] = 1172, + [2031] = 1166, + [2032] = 1174, + [2033] = 1246, + [2034] = 1176, + [2035] = 1249, + [2036] = 1178, + [2037] = 1251, + [2038] = 1149, + [2039] = 1253, + [2040] = 479, + [2041] = 2041, + [2042] = 1213, + [2043] = 2043, + [2044] = 1158, + [2045] = 1972, + [2046] = 1217, + [2047] = 1162, + [2048] = 484, + [2049] = 2049, + [2050] = 1225, + [2051] = 2051, + [2052] = 489, + [2053] = 2053, + [2054] = 1972, + [2055] = 1168, + [2056] = 1230, + [2057] = 1240, + [2058] = 919, + [2059] = 1972, + [2060] = 1183, + [2061] = 2003, + [2062] = 1185, + [2063] = 1187, + [2064] = 1189, + [2065] = 2065, + [2066] = 1666, + [2067] = 1191, + [2068] = 1193, + [2069] = 1195, + [2070] = 109, + [2071] = 1197, + [2072] = 1201, + [2073] = 1262, + [2074] = 1205, + [2075] = 1207, + [2076] = 1175, + [2077] = 1171, + [2078] = 2049, + [2079] = 1179, + [2080] = 1252, + [2081] = 1181, [2082] = 2082, - [2083] = 2083, - [2084] = 958, - [2085] = 1976, - [2086] = 2086, - [2087] = 2087, - [2088] = 1515, - [2089] = 2089, - [2090] = 105, - [2091] = 1473, - [2092] = 959, - [2093] = 886, - [2094] = 334, - [2095] = 369, - [2096] = 960, - [2097] = 961, - [2098] = 967, - [2099] = 1976, - [2100] = 931, - [2101] = 1976, - [2102] = 1473, - [2103] = 1976, - [2104] = 2104, - [2105] = 2105, - [2106] = 1981, - [2107] = 1976, - [2108] = 2108, - [2109] = 106, - [2110] = 2110, - [2111] = 351, - [2112] = 1489, - [2113] = 1489, - [2114] = 960, - [2115] = 967, - [2116] = 937, - [2117] = 1498, + [2083] = 656, + [2084] = 1184, + [2085] = 2085, + [2086] = 1177, + [2087] = 927, + [2088] = 1484, + [2089] = 946, + [2090] = 1255, + [2091] = 1202, + [2092] = 1155, + [2093] = 1173, + [2094] = 1194, + [2095] = 1136, + [2096] = 951, + [2097] = 1199, + [2098] = 1182, + [2099] = 1188, + [2100] = 1211, + [2101] = 1222, + [2102] = 955, + [2103] = 1236, + [2104] = 1132, + [2105] = 1147, + [2106] = 1153, + [2107] = 1140, + [2108] = 1206, + [2109] = 1159, + [2110] = 112, + [2111] = 1241, + [2112] = 959, + [2113] = 2113, + [2114] = 1013, + [2115] = 2115, + [2116] = 1504, + [2117] = 964, [2118] = 2118, - [2119] = 961, - [2120] = 2120, - [2121] = 1498, - [2122] = 931, - [2123] = 2123, - [2124] = 2124, - [2125] = 967, - [2126] = 699, - [2127] = 357, - [2128] = 2123, - [2129] = 2124, - [2130] = 2123, - [2131] = 2124, - [2132] = 886, - [2133] = 339, - [2134] = 691, - [2135] = 926, - [2136] = 1515, - [2137] = 1251, - [2138] = 1254, - [2139] = 1203, - [2140] = 1133, - [2141] = 1136, - [2142] = 1138, - [2143] = 1140, - [2144] = 1142, - [2145] = 1144, - [2146] = 1145, - [2147] = 1147, + [2119] = 912, + [2120] = 363, + [2121] = 1503, + [2122] = 1504, + [2123] = 1503, + [2124] = 2113, + [2125] = 359, + [2126] = 2115, + [2127] = 1013, + [2128] = 867, + [2129] = 2129, + [2130] = 2113, + [2131] = 2115, + [2132] = 965, + [2133] = 362, + [2134] = 672, + [2135] = 673, + [2136] = 786, + [2137] = 2137, + [2138] = 949, + [2139] = 1196, + [2140] = 870, + [2141] = 871, + [2142] = 1131, + [2143] = 1138, + [2144] = 492, + [2145] = 1215, + [2146] = 1151, + [2147] = 2137, [2148] = 2148, - [2149] = 2149, - [2150] = 899, - [2151] = 2149, - [2152] = 930, - [2153] = 1515, - [2154] = 676, - [2155] = 763, - [2156] = 764, - [2157] = 2157, - [2158] = 498, - [2159] = 2157, - [2160] = 343, - [2161] = 2149, - [2162] = 360, - [2163] = 340, - [2164] = 695, - [2165] = 341, - [2166] = 342, - [2167] = 349, - [2168] = 743, - [2169] = 1247, - [2170] = 1251, - [2171] = 943, - [2172] = 1254, - [2173] = 2173, - [2174] = 2174, - [2175] = 1203, - [2176] = 2176, - [2177] = 1133, - [2178] = 694, - [2179] = 744, - [2180] = 491, - [2181] = 887, - [2182] = 368, - [2183] = 951, - [2184] = 1136, - [2185] = 1138, - [2186] = 1140, - [2187] = 1142, - [2188] = 1144, - [2189] = 1145, - [2190] = 1147, - [2191] = 2191, - [2192] = 2149, - [2193] = 924, - [2194] = 746, - [2195] = 2149, - [2196] = 730, - [2197] = 747, - [2198] = 949, - [2199] = 2149, - [2200] = 2149, - [2201] = 540, - [2202] = 2157, - [2203] = 735, - [2204] = 916, - [2205] = 724, - [2206] = 897, - [2207] = 936, - [2208] = 685, - [2209] = 923, - [2210] = 719, - [2211] = 898, - [2212] = 1247, - [2213] = 2213, - [2214] = 2213, - [2215] = 2213, - [2216] = 2213, - [2217] = 2217, - [2218] = 2213, - [2219] = 691, - [2220] = 2213, - [2221] = 2217, - [2222] = 1473, - [2223] = 2223, + [2149] = 785, + [2150] = 1160, + [2151] = 1164, + [2152] = 2152, + [2153] = 1186, + [2154] = 2137, + [2155] = 2155, + [2156] = 2137, + [2157] = 353, + [2158] = 352, + [2159] = 2137, + [2160] = 1169, + [2161] = 1666, + [2162] = 1180, + [2163] = 714, + [2164] = 1180, + [2165] = 1186, + [2166] = 937, + [2167] = 2167, + [2168] = 940, + [2169] = 916, + [2170] = 2137, + [2171] = 899, + [2172] = 787, + [2173] = 903, + [2174] = 496, + [2175] = 729, + [2176] = 1169, + [2177] = 2155, + [2178] = 932, + [2179] = 1190, + [2180] = 680, + [2181] = 2181, + [2182] = 2182, + [2183] = 1138, + [2184] = 374, + [2185] = 1196, + [2186] = 1151, + [2187] = 736, + [2188] = 692, + [2189] = 1131, + [2190] = 897, + [2191] = 656, + [2192] = 1215, + [2193] = 351, + [2194] = 1666, + [2195] = 2155, + [2196] = 349, + [2197] = 1190, + [2198] = 684, + [2199] = 676, + [2200] = 350, + [2201] = 952, + [2202] = 963, + [2203] = 906, + [2204] = 938, + [2205] = 1248, + [2206] = 1160, + [2207] = 794, + [2208] = 869, + [2209] = 1164, + [2210] = 797, + [2211] = 354, + [2212] = 2137, + [2213] = 1248, + [2214] = 2214, + [2215] = 2215, + [2216] = 2215, + [2217] = 2215, + [2218] = 2215, + [2219] = 2215, + [2220] = 672, + [2221] = 2215, + [2222] = 1484, + [2223] = 656, [2224] = 2224, [2225] = 2225, - [2226] = 540, + [2226] = 2226, [2227] = 2227, - [2228] = 343, - [2229] = 341, - [2230] = 342, - [2231] = 2231, - [2232] = 2232, + [2228] = 2214, + [2229] = 1484, + [2230] = 350, + [2231] = 351, + [2232] = 352, [2233] = 349, - [2234] = 2234, + [2234] = 353, [2235] = 2235, [2236] = 2236, - [2237] = 1981, - [2238] = 2238, - [2239] = 1489, - [2240] = 2240, - [2241] = 1498, - [2242] = 360, - [2243] = 340, - [2244] = 691, - [2245] = 1473, - [2246] = 2246, - [2247] = 1498, - [2248] = 1489, + [2237] = 2237, + [2238] = 2049, + [2239] = 2239, + [2240] = 1504, + [2241] = 2241, + [2242] = 2242, + [2243] = 672, + [2244] = 354, + [2245] = 2245, + [2246] = 1503, + [2247] = 2247, + [2248] = 2248, [2249] = 2249, [2250] = 2250, - [2251] = 1515, - [2252] = 2252, - [2253] = 1515, - [2254] = 2254, + [2251] = 1503, + [2252] = 1504, + [2253] = 1666, + [2254] = 1666, [2255] = 2255, [2256] = 2256, - [2257] = 2257, - [2258] = 368, + [2257] = 2256, + [2258] = 2258, [2259] = 2259, [2260] = 2260, [2261] = 2255, - [2262] = 2254, - [2263] = 336, - [2264] = 2264, + [2262] = 374, + [2263] = 2263, + [2264] = 338, [2265] = 2265, - [2266] = 2266, + [2266] = 387, [2267] = 2267, [2268] = 2268, [2269] = 2269, [2270] = 2270, [2271] = 2271, [2272] = 2272, - [2273] = 333, + [2273] = 2273, [2274] = 2274, [2275] = 2275, [2276] = 2276, [2277] = 2277, [2278] = 2278, - [2279] = 2279, + [2279] = 407, [2280] = 2280, [2281] = 2281, - [2282] = 2268, - [2283] = 389, + [2282] = 2282, + [2283] = 2283, [2284] = 2284, - [2285] = 2285, + [2285] = 334, [2286] = 2286, [2287] = 2287, - [2288] = 2288, + [2288] = 2267, [2289] = 2289, - [2290] = 338, - [2291] = 353, - [2292] = 412, - [2293] = 399, - [2294] = 2294, - [2295] = 2295, - [2296] = 369, - [2297] = 377, - [2298] = 389, - [2299] = 407, - [2300] = 398, - [2301] = 407, + [2290] = 2290, + [2291] = 2291, + [2292] = 2292, + [2293] = 360, + [2294] = 361, + [2295] = 405, + [2296] = 2296, + [2297] = 387, + [2298] = 397, + [2299] = 399, + [2300] = 372, + [2301] = 401, [2302] = 2302, - [2303] = 2303, - [2304] = 398, - [2305] = 2302, - [2306] = 400, - [2307] = 408, - [2308] = 409, - [2309] = 410, + [2303] = 401, + [2304] = 2304, + [2305] = 399, + [2306] = 2306, + [2307] = 2302, + [2308] = 2308, + [2309] = 2309, [2310] = 2310, - [2311] = 2311, - [2312] = 2303, - [2313] = 389, - [2314] = 377, - [2315] = 2315, - [2316] = 2316, - [2317] = 2315, - [2318] = 2316, - [2319] = 2310, - [2320] = 2311, - [2321] = 92, - [2322] = 93, - [2323] = 410, - [2324] = 98, - [2325] = 377, - [2326] = 389, - [2327] = 93, - [2328] = 92, - [2329] = 398, - [2330] = 407, - [2331] = 446, - [2332] = 408, - [2333] = 400, - [2334] = 409, - [2335] = 99, - [2336] = 108, - [2337] = 442, - [2338] = 446, - [2339] = 106, - [2340] = 377, - [2341] = 400, - [2342] = 105, - [2343] = 408, - [2344] = 409, - [2345] = 410, - [2346] = 407, - [2347] = 98, - [2348] = 444, - [2349] = 486, - [2350] = 93, - [2351] = 493, - [2352] = 92, - [2353] = 398, - [2354] = 99, - [2355] = 108, - [2356] = 410, - [2357] = 92, - [2358] = 400, - [2359] = 336, - [2360] = 470, - [2361] = 1473, - [2362] = 2362, - [2363] = 446, - [2364] = 412, - [2365] = 442, - [2366] = 459, - [2367] = 399, - [2368] = 93, - [2369] = 444, - [2370] = 2370, - [2371] = 99, + [2311] = 2304, + [2312] = 2306, + [2313] = 404, + [2314] = 398, + [2315] = 403, + [2316] = 387, + [2317] = 397, + [2318] = 2308, + [2319] = 92, + [2320] = 93, + [2321] = 2309, + [2322] = 2310, + [2323] = 411, + [2324] = 399, + [2325] = 101, + [2326] = 411, + [2327] = 404, + [2328] = 398, + [2329] = 403, + [2330] = 98, + [2331] = 397, + [2332] = 93, + [2333] = 92, + [2334] = 387, + [2335] = 447, + [2336] = 401, + [2337] = 112, + [2338] = 111, + [2339] = 401, + [2340] = 101, + [2341] = 445, + [2342] = 98, + [2343] = 93, + [2344] = 399, + [2345] = 447, + [2346] = 397, + [2347] = 92, + [2348] = 411, + [2349] = 404, + [2350] = 398, + [2351] = 498, + [2352] = 403, + [2353] = 454, + [2354] = 501, + [2355] = 109, + [2356] = 404, + [2357] = 387, + [2358] = 466, + [2359] = 112, + [2360] = 338, + [2361] = 2361, + [2362] = 460, + [2363] = 92, + [2364] = 1484, + [2365] = 445, + [2366] = 398, + [2367] = 411, + [2368] = 405, + [2369] = 101, + [2370] = 403, + [2371] = 454, [2372] = 2372, - [2373] = 2373, - [2374] = 336, - [2375] = 105, + [2373] = 109, + [2374] = 338, + [2375] = 407, [2376] = 2376, - [2377] = 408, - [2378] = 389, - [2379] = 106, - [2380] = 98, - [2381] = 409, - [2382] = 333, - [2383] = 398, - [2384] = 442, - [2385] = 1489, - [2386] = 1498, - [2387] = 338, - [2388] = 399, - [2389] = 2389, + [2377] = 2377, + [2378] = 2378, + [2379] = 334, + [2380] = 93, + [2381] = 447, + [2382] = 111, + [2383] = 98, + [2384] = 338, + [2385] = 101, + [2386] = 360, + [2387] = 445, + [2388] = 353, + [2389] = 354, [2390] = 349, - [2391] = 106, - [2392] = 377, - [2393] = 99, - [2394] = 333, - [2395] = 92, - [2396] = 93, - [2397] = 446, - [2398] = 500, + [2391] = 350, + [2392] = 351, + [2393] = 352, + [2394] = 361, + [2395] = 334, + [2396] = 109, + [2397] = 111, + [2398] = 112, [2399] = 98, - [2400] = 503, - [2401] = 490, - [2402] = 2402, - [2403] = 342, - [2404] = 336, - [2405] = 470, - [2406] = 642, - [2407] = 353, - [2408] = 340, - [2409] = 645, - [2410] = 108, - [2411] = 341, - [2412] = 412, - [2413] = 497, - [2414] = 484, - [2415] = 485, - [2416] = 489, - [2417] = 2417, - [2418] = 407, - [2419] = 459, - [2420] = 343, - [2421] = 105, - [2422] = 360, - [2423] = 444, - [2424] = 490, - [2425] = 333, - [2426] = 106, - [2427] = 408, - [2428] = 409, - [2429] = 410, - [2430] = 338, - [2431] = 444, - [2432] = 412, - [2433] = 642, - [2434] = 353, - [2435] = 442, - [2436] = 645, - [2437] = 400, - [2438] = 503, - [2439] = 1515, - [2440] = 105, - [2441] = 349, - [2442] = 99, - [2443] = 442, - [2444] = 2444, - [2445] = 334, - [2446] = 360, - [2447] = 444, - [2448] = 1841, - [2449] = 459, - [2450] = 108, - [2451] = 341, - [2452] = 98, - [2453] = 500, - [2454] = 343, - [2455] = 336, - [2456] = 399, - [2457] = 340, - [2458] = 342, - [2459] = 369, - [2460] = 470, - [2461] = 369, - [2462] = 360, - [2463] = 342, - [2464] = 2464, - [2465] = 349, - [2466] = 489, - [2467] = 2467, - [2468] = 500, - [2469] = 1841, - [2470] = 484, - [2471] = 459, - [2472] = 343, - [2473] = 106, - [2474] = 485, - [2475] = 2475, - [2476] = 351, - [2477] = 486, - [2478] = 697, - [2479] = 497, - [2480] = 444, - [2481] = 2481, - [2482] = 442, - [2483] = 108, - [2484] = 2464, - [2485] = 2464, - [2486] = 341, - [2487] = 490, - [2488] = 444, - [2489] = 338, - [2490] = 340, - [2491] = 399, - [2492] = 353, - [2493] = 470, - [2494] = 333, - [2495] = 2464, - [2496] = 2496, - [2497] = 2497, - [2498] = 412, - [2499] = 470, - [2500] = 704, - [2501] = 692, - [2502] = 675, - [2503] = 698, - [2504] = 442, - [2505] = 642, - [2506] = 369, - [2507] = 105, - [2508] = 357, - [2509] = 645, - [2510] = 459, - [2511] = 339, - [2512] = 334, - [2513] = 493, - [2514] = 503, - [2515] = 937, - [2516] = 485, - [2517] = 2517, - [2518] = 369, - [2519] = 489, - [2520] = 2497, - [2521] = 2521, - [2522] = 886, - [2523] = 941, - [2524] = 961, - [2525] = 459, - [2526] = 2526, - [2527] = 960, - [2528] = 948, - [2529] = 503, - [2530] = 2530, - [2531] = 500, - [2532] = 357, - [2533] = 954, - [2534] = 958, - [2535] = 959, - [2536] = 341, - [2537] = 2537, + [2400] = 447, + [2401] = 516, + [2402] = 454, + [2403] = 460, + [2404] = 401, + [2405] = 517, + [2406] = 93, + [2407] = 92, + [2408] = 479, + [2409] = 2409, + [2410] = 484, + [2411] = 2411, + [2412] = 405, + [2413] = 489, + [2414] = 1503, + [2415] = 1504, + [2416] = 407, + [2417] = 397, + [2418] = 481, + [2419] = 486, + [2420] = 495, + [2421] = 490, + [2422] = 2422, + [2423] = 399, + [2424] = 466, + [2425] = 101, + [2426] = 338, + [2427] = 517, + [2428] = 111, + [2429] = 405, + [2430] = 407, + [2431] = 479, + [2432] = 460, + [2433] = 484, + [2434] = 489, + [2435] = 335, + [2436] = 1833, + [2437] = 112, + [2438] = 1666, + [2439] = 98, + [2440] = 372, + [2441] = 372, + [2442] = 411, + [2443] = 466, + [2444] = 445, + [2445] = 445, + [2446] = 404, + [2447] = 398, + [2448] = 403, + [2449] = 353, + [2450] = 334, + [2451] = 354, + [2452] = 349, + [2453] = 2453, + [2454] = 361, + [2455] = 360, + [2456] = 109, + [2457] = 454, + [2458] = 350, + [2459] = 351, + [2460] = 352, + [2461] = 454, + [2462] = 516, + [2463] = 479, + [2464] = 445, + [2465] = 2465, + [2466] = 362, + [2467] = 359, + [2468] = 495, + [2469] = 353, + [2470] = 498, + [2471] = 361, + [2472] = 354, + [2473] = 109, + [2474] = 349, + [2475] = 486, + [2476] = 335, + [2477] = 350, + [2478] = 351, + [2479] = 352, + [2480] = 111, + [2481] = 112, + [2482] = 460, + [2483] = 2483, + [2484] = 460, + [2485] = 490, + [2486] = 484, + [2487] = 360, + [2488] = 454, + [2489] = 2465, + [2490] = 466, + [2491] = 501, + [2492] = 363, + [2493] = 334, + [2494] = 405, + [2495] = 516, + [2496] = 445, + [2497] = 709, + [2498] = 481, + [2499] = 1833, + [2500] = 407, + [2501] = 2501, + [2502] = 2502, + [2503] = 2503, + [2504] = 372, + [2505] = 489, + [2506] = 2506, + [2507] = 2465, + [2508] = 454, + [2509] = 2465, + [2510] = 517, + [2511] = 687, + [2512] = 705, + [2513] = 710, + [2514] = 677, + [2515] = 466, + [2516] = 484, + [2517] = 912, + [2518] = 479, + [2519] = 479, + [2520] = 2520, + [2521] = 484, + [2522] = 489, + [2523] = 498, + [2524] = 946, + [2525] = 362, + [2526] = 354, + [2527] = 490, + [2528] = 951, + [2529] = 360, + [2530] = 489, + [2531] = 2531, + [2532] = 349, + [2533] = 359, + [2534] = 2534, + [2535] = 460, + [2536] = 2536, + [2537] = 2503, [2538] = 2538, - [2539] = 2539, + [2539] = 466, [2540] = 2540, - [2541] = 2541, - [2542] = 339, - [2543] = 442, - [2544] = 342, - [2545] = 2545, - [2546] = 931, + [2541] = 466, + [2542] = 501, + [2543] = 2502, + [2544] = 964, + [2545] = 959, + [2546] = 445, [2547] = 2547, - [2548] = 343, + [2548] = 965, [2549] = 2549, - [2550] = 444, - [2551] = 334, - [2552] = 349, - [2553] = 497, - [2554] = 493, - [2555] = 470, - [2556] = 338, - [2557] = 486, - [2558] = 500, - [2559] = 490, - [2560] = 645, - [2561] = 360, - [2562] = 2475, - [2563] = 2537, - [2564] = 697, - [2565] = 642, - [2566] = 351, - [2567] = 2567, - [2568] = 340, - [2569] = 503, - [2570] = 2570, - [2571] = 490, - [2572] = 459, - [2573] = 484, - [2574] = 2481, + [2550] = 481, + [2551] = 335, + [2552] = 352, + [2553] = 2553, + [2554] = 2554, + [2555] = 486, + [2556] = 517, + [2557] = 2554, + [2558] = 350, + [2559] = 2559, + [2560] = 2560, + [2561] = 709, + [2562] = 2562, + [2563] = 2563, + [2564] = 351, + [2565] = 454, + [2566] = 361, + [2567] = 363, + [2568] = 927, + [2569] = 495, + [2570] = 2501, + [2571] = 867, + [2572] = 372, + [2573] = 516, + [2574] = 460, [2575] = 353, - [2576] = 704, - [2577] = 470, - [2578] = 692, - [2579] = 675, - [2580] = 698, + [2576] = 687, + [2577] = 705, + [2578] = 710, + [2579] = 677, + [2580] = 955, [2581] = 2581, - [2582] = 444, - [2583] = 503, - [2584] = 2584, - [2585] = 2538, - [2586] = 459, - [2587] = 937, - [2588] = 503, - [2589] = 490, + [2582] = 919, + [2583] = 359, + [2584] = 481, + [2585] = 484, + [2586] = 489, + [2587] = 965, + [2588] = 492, + [2589] = 919, [2590] = 2590, - [2591] = 490, - [2592] = 2592, - [2593] = 2567, - [2594] = 493, - [2595] = 500, - [2596] = 491, - [2597] = 2597, + [2591] = 495, + [2592] = 374, + [2593] = 2593, + [2594] = 2553, + [2595] = 2549, + [2596] = 912, + [2597] = 492, [2598] = 2598, - [2599] = 489, - [2600] = 948, - [2601] = 465, - [2602] = 497, - [2603] = 954, - [2604] = 697, - [2605] = 704, - [2606] = 692, - [2607] = 675, - [2608] = 698, - [2609] = 351, - [2610] = 500, - [2611] = 339, - [2612] = 642, - [2613] = 2547, - [2614] = 958, - [2615] = 466, - [2616] = 491, - [2617] = 486, - [2618] = 959, - [2619] = 960, - [2620] = 967, - [2621] = 2621, - [2622] = 498, + [2599] = 2599, + [2600] = 460, + [2601] = 445, + [2602] = 927, + [2603] = 362, + [2604] = 946, + [2605] = 496, + [2606] = 951, + [2607] = 2547, + [2608] = 867, + [2609] = 466, + [2610] = 2610, + [2611] = 1955, + [2612] = 955, + [2613] = 2534, + [2614] = 2536, + [2615] = 475, + [2616] = 516, + [2617] = 709, + [2618] = 687, + [2619] = 705, + [2620] = 710, + [2621] = 677, + [2622] = 959, [2623] = 2623, - [2624] = 498, - [2625] = 485, - [2626] = 941, - [2627] = 368, - [2628] = 2521, - [2629] = 442, - [2630] = 2539, - [2631] = 2631, - [2632] = 2581, - [2633] = 484, - [2634] = 1940, - [2635] = 2549, - [2636] = 2545, - [2637] = 645, - [2638] = 470, - [2639] = 961, - [2640] = 357, - [2641] = 931, - [2642] = 886, + [2624] = 1013, + [2625] = 2559, + [2626] = 2538, + [2627] = 496, + [2628] = 2628, + [2629] = 517, + [2630] = 454, + [2631] = 479, + [2632] = 469, + [2633] = 479, + [2634] = 484, + [2635] = 489, + [2636] = 486, + [2637] = 363, + [2638] = 2562, + [2639] = 964, + [2640] = 498, + [2641] = 490, + [2642] = 501, [2643] = 2643, - [2644] = 498, - [2645] = 697, + [2644] = 955, + [2645] = 2645, [2646] = 2646, [2647] = 2647, [2648] = 2648, [2649] = 2649, [2650] = 2650, - [2651] = 442, + [2651] = 2651, [2652] = 2652, [2653] = 2653, - [2654] = 2654, - [2655] = 2655, - [2656] = 2656, - [2657] = 2657, + [2654] = 709, + [2655] = 2610, + [2656] = 2643, + [2657] = 687, [2658] = 2658, [2659] = 2659, [2660] = 2660, @@ -7478,14 +7494,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2662] = 2662, [2663] = 2663, [2664] = 2664, - [2665] = 2665, - [2666] = 2666, - [2667] = 2667, + [2665] = 705, + [2666] = 710, + [2667] = 677, [2668] = 2668, [2669] = 2669, [2670] = 2670, [2671] = 2671, - [2672] = 2672, + [2672] = 965, [2673] = 2673, [2674] = 2674, [2675] = 2675, @@ -7494,11 +7510,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2678] = 2678, [2679] = 2679, [2680] = 2680, - [2681] = 444, - [2682] = 704, - [2683] = 444, - [2684] = 2684, - [2685] = 2685, + [2681] = 706, + [2682] = 707, + [2683] = 2683, + [2684] = 708, + [2685] = 699, [2686] = 2686, [2687] = 2687, [2688] = 2688, @@ -7508,54 +7524,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2692] = 2692, [2693] = 2693, [2694] = 2694, - [2695] = 937, - [2696] = 470, + [2695] = 2695, + [2696] = 2696, [2697] = 2697, [2698] = 2698, - [2699] = 941, + [2699] = 2699, [2700] = 2700, - [2701] = 368, - [2702] = 2702, - [2703] = 2703, - [2704] = 692, - [2705] = 675, - [2706] = 698, - [2707] = 948, - [2708] = 954, - [2709] = 459, - [2710] = 958, + [2701] = 2701, + [2702] = 475, + [2703] = 479, + [2704] = 964, + [2705] = 2705, + [2706] = 2706, + [2707] = 484, + [2708] = 2708, + [2709] = 2709, + [2710] = 2710, [2711] = 2711, - [2712] = 2712, - [2713] = 959, + [2712] = 469, + [2713] = 489, [2714] = 2714, - [2715] = 2715, - [2716] = 886, - [2717] = 960, + [2715] = 445, + [2716] = 2716, + [2717] = 2717, [2718] = 2718, [2719] = 2719, [2720] = 2720, - [2721] = 2597, - [2722] = 961, - [2723] = 931, + [2721] = 2721, + [2722] = 2722, + [2723] = 2723, [2724] = 2724, [2725] = 2725, [2726] = 2726, [2727] = 2727, - [2728] = 2598, + [2728] = 492, [2729] = 2729, [2730] = 2730, [2731] = 2731, [2732] = 2732, - [2733] = 702, - [2734] = 703, + [2733] = 2733, + [2734] = 2734, [2735] = 2735, - [2736] = 710, - [2737] = 674, + [2736] = 2736, + [2737] = 2737, [2738] = 2738, [2739] = 2739, [2740] = 2740, [2741] = 2741, - [2742] = 2742, + [2742] = 496, [2743] = 2743, [2744] = 2744, [2745] = 2745, @@ -7568,21 +7584,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2752] = 2752, [2753] = 2753, [2754] = 2754, - [2755] = 2755, - [2756] = 465, - [2757] = 2757, + [2755] = 454, + [2756] = 2756, + [2757] = 454, [2758] = 2758, [2759] = 2759, - [2760] = 1940, - [2761] = 466, - [2762] = 2762, - [2763] = 2763, - [2764] = 500, + [2760] = 2760, + [2761] = 1955, + [2762] = 912, + [2763] = 460, + [2764] = 2764, [2765] = 2765, - [2766] = 2766, + [2766] = 919, [2767] = 2767, - [2768] = 503, - [2769] = 490, + [2768] = 2768, + [2769] = 374, [2770] = 2770, [2771] = 2771, [2772] = 2772, @@ -7596,971 +7612,971 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2780] = 2780, [2781] = 2781, [2782] = 2782, - [2783] = 2783, - [2784] = 491, + [2783] = 1013, + [2784] = 2784, [2785] = 2785, [2786] = 2786, [2787] = 2787, [2788] = 2788, [2789] = 2789, - [2790] = 1980, - [2791] = 484, - [2792] = 486, - [2793] = 489, - [2794] = 493, - [2795] = 497, - [2796] = 485, - [2797] = 2797, - [2798] = 2798, + [2790] = 2027, + [2791] = 2791, + [2792] = 2792, + [2793] = 486, + [2794] = 498, + [2795] = 490, + [2796] = 501, + [2797] = 481, + [2798] = 495, [2799] = 2799, [2800] = 2800, - [2801] = 2801, - [2802] = 2802, - [2803] = 2803, + [2801] = 927, + [2802] = 946, + [2803] = 466, [2804] = 2804, [2805] = 2805, [2806] = 2806, - [2807] = 2807, + [2807] = 951, [2808] = 2808, [2809] = 2809, - [2810] = 2810, - [2811] = 2811, + [2810] = 867, + [2811] = 959, [2812] = 2812, [2813] = 2813, [2814] = 2814, - [2815] = 967, - [2816] = 941, - [2817] = 503, + [2815] = 2815, + [2816] = 2816, + [2817] = 1013, [2818] = 2818, - [2819] = 490, - [2820] = 676, - [2821] = 2821, - [2822] = 2541, - [2823] = 2743, - [2824] = 702, - [2825] = 459, - [2826] = 923, - [2827] = 2744, - [2828] = 2828, - [2829] = 2570, - [2830] = 1980, - [2831] = 2745, - [2832] = 2762, - [2833] = 2530, - [2834] = 703, - [2835] = 2540, - [2836] = 886, - [2837] = 961, - [2838] = 931, - [2839] = 2839, - [2840] = 2840, - [2841] = 2779, - [2842] = 2530, - [2843] = 899, - [2844] = 2780, - [2845] = 2782, - [2846] = 2846, + [2819] = 454, + [2820] = 460, + [2821] = 2560, + [2822] = 699, + [2823] = 2823, + [2824] = 673, + [2825] = 466, + [2826] = 709, + [2827] = 687, + [2828] = 2764, + [2829] = 2829, + [2830] = 387, + [2831] = 2831, + [2832] = 707, + [2833] = 2563, + [2834] = 2520, + [2835] = 2716, + [2836] = 2836, + [2837] = 927, + [2838] = 946, + [2839] = 705, + [2840] = 710, + [2841] = 677, + [2842] = 2733, + [2843] = 2560, + [2844] = 951, + [2845] = 673, + [2846] = 680, [2847] = 2847, - [2848] = 2848, - [2849] = 2849, - [2850] = 2783, - [2851] = 2786, - [2852] = 2852, - [2853] = 2797, - [2854] = 2798, - [2855] = 2799, - [2856] = 2800, + [2848] = 2531, + [2849] = 955, + [2850] = 684, + [2851] = 2531, + [2852] = 374, + [2853] = 2853, + [2854] = 952, + [2855] = 2751, + [2856] = 2856, [2857] = 2857, - [2858] = 2801, - [2859] = 2802, - [2860] = 2803, - [2861] = 2805, - [2862] = 2808, - [2863] = 368, - [2864] = 2809, - [2865] = 2810, - [2866] = 2866, - [2867] = 2867, - [2868] = 466, - [2869] = 2517, - [2870] = 2526, - [2871] = 2871, - [2872] = 960, - [2873] = 948, - [2874] = 2541, - [2875] = 954, - [2876] = 937, - [2877] = 710, - [2878] = 674, - [2879] = 2879, - [2880] = 2880, - [2881] = 699, - [2882] = 444, - [2883] = 470, - [2884] = 697, - [2885] = 2540, - [2886] = 704, - [2887] = 2887, - [2888] = 958, - [2889] = 2889, - [2890] = 2813, - [2891] = 2891, - [2892] = 389, - [2893] = 2789, - [2894] = 959, - [2895] = 2711, - [2896] = 967, - [2897] = 2570, - [2898] = 699, - [2899] = 930, - [2900] = 465, - [2901] = 2879, - [2902] = 2880, - [2903] = 500, - [2904] = 685, - [2905] = 2905, - [2906] = 692, - [2907] = 2517, - [2908] = 2526, - [2909] = 675, - [2910] = 2887, - [2911] = 2911, - [2912] = 2889, - [2913] = 698, - [2914] = 936, - [2915] = 2812, - [2916] = 2916, - [2917] = 2917, - [2918] = 2918, - [2919] = 2919, - [2920] = 763, - [2921] = 764, - [2922] = 2530, - [2923] = 444, - [2924] = 743, - [2925] = 744, - [2926] = 2857, + [2858] = 2727, + [2859] = 903, + [2860] = 2581, + [2861] = 2739, + [2862] = 2862, + [2863] = 867, + [2864] = 2864, + [2865] = 2581, + [2866] = 2645, + [2867] = 2648, + [2868] = 2868, + [2869] = 2869, + [2870] = 2652, + [2871] = 912, + [2872] = 2872, + [2873] = 2829, + [2874] = 949, + [2875] = 2725, + [2876] = 475, + [2877] = 2741, + [2878] = 2878, + [2879] = 2831, + [2880] = 2743, + [2881] = 479, + [2882] = 2744, + [2883] = 2540, + [2884] = 2738, + [2885] = 2885, + [2886] = 2653, + [2887] = 2745, + [2888] = 2746, + [2889] = 2719, + [2890] = 2890, + [2891] = 2027, + [2892] = 919, + [2893] = 706, + [2894] = 708, + [2895] = 964, + [2896] = 2868, + [2897] = 2748, + [2898] = 2749, + [2899] = 2890, + [2900] = 965, + [2901] = 2901, + [2902] = 2540, + [2903] = 2750, + [2904] = 2787, + [2905] = 932, + [2906] = 469, + [2907] = 484, + [2908] = 2732, + [2909] = 2563, + [2910] = 2520, + [2911] = 489, + [2912] = 2720, + [2913] = 2913, + [2914] = 2914, + [2915] = 2915, + [2916] = 959, + [2917] = 899, + [2918] = 484, + [2919] = 2520, + [2920] = 2920, + [2921] = 869, + [2922] = 2922, + [2923] = 916, + [2924] = 2924, + [2925] = 794, + [2926] = 797, [2927] = 2927, [2928] = 2928, - [2929] = 2905, - [2930] = 888, - [2931] = 724, - [2932] = 936, - [2933] = 2191, - [2934] = 724, - [2935] = 676, - [2936] = 949, - [2937] = 2937, - [2938] = 2846, - [2939] = 2849, - [2940] = 2570, - [2941] = 377, - [2942] = 897, - [2943] = 898, - [2944] = 2944, - [2945] = 2945, - [2946] = 2946, - [2947] = 730, + [2929] = 2929, + [2930] = 489, + [2931] = 387, + [2932] = 2932, + [2933] = 869, + [2934] = 949, + [2935] = 916, + [2936] = 2936, + [2937] = 2581, + [2938] = 2938, + [2939] = 2853, + [2940] = 2940, + [2941] = 2941, + [2942] = 963, + [2943] = 906, + [2944] = 673, + [2945] = 2847, + [2946] = 870, + [2947] = 722, [2948] = 2948, - [2949] = 389, - [2950] = 2950, - [2951] = 730, - [2952] = 746, - [2953] = 2818, - [2954] = 747, - [2955] = 2955, - [2956] = 2176, - [2957] = 2867, - [2958] = 2540, - [2959] = 2517, - [2960] = 389, - [2961] = 2961, - [2962] = 2839, - [2963] = 2963, - [2964] = 2964, - [2965] = 2526, - [2966] = 2966, - [2967] = 2967, - [2968] = 930, - [2969] = 2969, + [2949] = 785, + [2950] = 870, + [2951] = 871, + [2952] = 2952, + [2953] = 932, + [2954] = 2836, + [2955] = 714, + [2956] = 2956, + [2957] = 2957, + [2958] = 937, + [2959] = 940, + [2960] = 2960, + [2961] = 723, + [2962] = 2962, + [2963] = 2878, + [2964] = 729, + [2965] = 725, + [2966] = 399, + [2967] = 739, + [2968] = 736, + [2969] = 897, [2970] = 2970, - [2971] = 2971, + [2971] = 2915, [2972] = 2972, [2973] = 2973, - [2974] = 2974, + [2974] = 741, [2975] = 2975, [2976] = 2976, - [2977] = 720, - [2978] = 886, - [2979] = 721, - [2980] = 937, - [2981] = 722, - [2982] = 723, - [2983] = 941, - [2984] = 503, - [2985] = 2985, + [2977] = 2977, + [2978] = 454, + [2979] = 2979, + [2980] = 2980, + [2981] = 680, + [2982] = 743, + [2983] = 2563, + [2984] = 2984, + [2985] = 927, [2986] = 2986, - [2987] = 735, - [2988] = 2988, - [2989] = 948, + [2987] = 2987, + [2988] = 952, + [2989] = 2989, [2990] = 2990, - [2991] = 954, - [2992] = 2992, - [2993] = 958, - [2994] = 959, - [2995] = 490, - [2996] = 726, - [2997] = 727, - [2998] = 728, - [2999] = 389, - [3000] = 763, - [3001] = 967, - [3002] = 764, + [2991] = 2991, + [2992] = 963, + [2993] = 2993, + [2994] = 906, + [2995] = 747, + [2996] = 2996, + [2997] = 2914, + [2998] = 2182, + [2999] = 1013, + [3000] = 749, + [3001] = 787, + [3002] = 3002, [3003] = 3003, - [3004] = 398, - [3005] = 3005, - [3006] = 736, - [3007] = 960, - [3008] = 737, - [3009] = 2840, - [3010] = 739, - [3011] = 740, - [3012] = 741, - [3013] = 742, - [3014] = 961, - [3015] = 931, - [3016] = 3016, - [3017] = 916, - [3018] = 949, - [3019] = 897, - [3020] = 695, - [3021] = 943, - [3022] = 898, - [3023] = 694, + [3004] = 874, + [3005] = 397, + [3006] = 3006, + [3007] = 2152, + [3008] = 2167, + [3009] = 785, + [3010] = 752, + [3011] = 776, + [3012] = 3012, + [3013] = 946, + [3014] = 3014, + [3015] = 2872, + [3016] = 959, + [3017] = 3017, + [3018] = 3018, + [3019] = 871, + [3020] = 2540, + [3021] = 2560, + [3022] = 692, + [3023] = 2862, [3024] = 3024, - [3025] = 899, - [3026] = 3026, - [3027] = 887, + [3025] = 964, + [3026] = 965, + [3027] = 3027, [3028] = 3028, - [3029] = 2891, + [3029] = 714, [3030] = 951, - [3031] = 3031, - [3032] = 735, + [3031] = 938, + [3032] = 3032, [3033] = 3033, - [3034] = 916, - [3035] = 951, + [3034] = 3034, + [3035] = 2531, [3036] = 3036, - [3037] = 3037, - [3038] = 924, - [3039] = 407, - [3040] = 3040, - [3041] = 3041, - [3042] = 3042, + [3037] = 937, + [3038] = 940, + [3039] = 899, + [3040] = 656, + [3041] = 903, + [3042] = 676, [3043] = 3043, - [3044] = 3044, - [3045] = 685, - [3046] = 2541, - [3047] = 3047, - [3048] = 3048, - [3049] = 746, - [3050] = 923, - [3051] = 924, - [3052] = 926, - [3053] = 3053, + [3044] = 955, + [3045] = 821, + [3046] = 729, + [3047] = 401, + [3048] = 867, + [3049] = 872, + [3050] = 736, + [3051] = 897, + [3052] = 912, + [3053] = 873, [3054] = 3054, - [3055] = 500, - [3056] = 695, + [3055] = 809, + [3056] = 479, [3057] = 3057, - [3058] = 926, - [3059] = 719, - [3060] = 2174, - [3061] = 943, - [3062] = 694, - [3063] = 743, - [3064] = 699, - [3065] = 540, - [3066] = 744, - [3067] = 747, - [3068] = 887, - [3069] = 3069, - [3070] = 2173, + [3058] = 692, + [3059] = 2181, + [3060] = 2885, + [3061] = 786, + [3062] = 787, + [3063] = 684, + [3064] = 387, + [3065] = 3065, + [3066] = 938, + [3067] = 3067, + [3068] = 676, + [3069] = 786, + [3070] = 919, [3071] = 3071, - [3072] = 719, - [3073] = 3073, - [3074] = 738, - [3075] = 408, - [3076] = 3076, - [3077] = 3077, - [3078] = 916, - [3079] = 3079, - [3080] = 389, - [3081] = 2955, - [3082] = 400, - [3083] = 3083, - [3084] = 724, - [3085] = 2970, - [3086] = 3037, - [3087] = 3087, - [3088] = 3088, - [3089] = 887, - [3090] = 398, - [3091] = 743, - [3092] = 2967, - [3093] = 3093, - [3094] = 936, - [3095] = 3095, - [3096] = 3096, - [3097] = 3036, - [3098] = 744, - [3099] = 398, - [3100] = 2986, - [3101] = 726, - [3102] = 3102, - [3103] = 727, - [3104] = 691, - [3105] = 3105, - [3106] = 3076, - [3107] = 746, - [3108] = 377, - [3109] = 3109, - [3110] = 736, - [3111] = 737, - [3112] = 738, - [3113] = 3113, - [3114] = 3114, - [3115] = 3115, + [3072] = 387, + [3073] = 794, + [3074] = 797, + [3075] = 3075, + [3076] = 899, + [3077] = 940, + [3078] = 903, + [3079] = 2940, + [3080] = 722, + [3081] = 723, + [3082] = 725, + [3083] = 729, + [3084] = 401, + [3085] = 736, + [3086] = 897, + [3087] = 3034, + [3088] = 739, + [3089] = 741, + [3090] = 743, + [3091] = 747, + [3092] = 749, + [3093] = 752, + [3094] = 776, + [3095] = 786, + [3096] = 787, + [3097] = 3097, + [3098] = 3098, + [3099] = 3099, + [3100] = 3100, + [3101] = 3101, + [3102] = 2920, + [3103] = 2924, + [3104] = 3104, + [3105] = 411, + [3106] = 794, + [3107] = 797, + [3108] = 3018, + [3109] = 3054, + [3110] = 2976, + [3111] = 949, + [3112] = 399, + [3113] = 404, + [3114] = 398, + [3115] = 403, [3116] = 3116, - [3117] = 3117, - [3118] = 3118, - [3119] = 377, + [3117] = 870, + [3118] = 871, + [3119] = 3119, [3120] = 3120, - [3121] = 739, - [3122] = 3003, - [3123] = 3005, - [3124] = 3016, - [3125] = 740, - [3126] = 3073, - [3127] = 407, + [3121] = 932, + [3122] = 401, + [3123] = 3123, + [3124] = 3124, + [3125] = 3125, + [3126] = 3126, + [3127] = 3127, [3128] = 3128, - [3129] = 3129, - [3130] = 728, - [3131] = 3131, - [3132] = 741, - [3133] = 951, - [3134] = 3134, - [3135] = 2173, + [3129] = 3017, + [3130] = 397, + [3131] = 2181, + [3132] = 3027, + [3133] = 3003, + [3134] = 3028, + [3135] = 387, [3136] = 3136, [3137] = 3137, - [3138] = 742, + [3138] = 3138, [3139] = 3139, - [3140] = 3140, - [3141] = 747, + [3140] = 3127, + [3141] = 3136, [3142] = 3142, - [3143] = 930, + [3143] = 397, [3144] = 3144, - [3145] = 3145, - [3146] = 3146, - [3147] = 2174, - [3148] = 949, - [3149] = 407, - [3150] = 2988, + [3145] = 2182, + [3146] = 399, + [3147] = 2152, + [3148] = 2932, + [3149] = 2167, + [3150] = 3150, [3151] = 3151, - [3152] = 2176, - [3153] = 924, - [3154] = 409, - [3155] = 926, - [3156] = 730, + [3152] = 937, + [3153] = 3153, + [3154] = 3154, + [3155] = 3155, + [3156] = 401, [3157] = 3157, [3158] = 3158, - [3159] = 3076, - [3160] = 410, + [3159] = 3159, + [3160] = 3160, [3161] = 3161, - [3162] = 897, - [3163] = 719, - [3164] = 398, - [3165] = 695, - [3166] = 2971, - [3167] = 3167, - [3168] = 898, - [3169] = 3169, - [3170] = 2972, - [3171] = 3077, - [3172] = 3083, + [3162] = 3162, + [3163] = 3163, + [3164] = 3164, + [3165] = 3165, + [3166] = 3166, + [3167] = 692, + [3168] = 387, + [3169] = 938, + [3170] = 676, + [3171] = 3171, + [3172] = 3172, [3173] = 3173, - [3174] = 3088, - [3175] = 407, - [3176] = 2973, - [3177] = 720, - [3178] = 389, - [3179] = 3179, - [3180] = 943, - [3181] = 2974, - [3182] = 721, - [3183] = 3040, - [3184] = 3069, - [3185] = 3071, - [3186] = 2944, - [3187] = 3028, - [3188] = 2919, - [3189] = 2950, - [3190] = 2963, - [3191] = 3044, - [3192] = 3047, - [3193] = 3057, - [3194] = 2937, - [3195] = 722, - [3196] = 2975, - [3197] = 735, - [3198] = 3198, - [3199] = 723, - [3200] = 377, - [3201] = 888, - [3202] = 3198, - [3203] = 694, - [3204] = 2191, - [3205] = 763, - [3206] = 764, - [3207] = 3207, - [3208] = 3208, - [3209] = 2967, - [3210] = 2985, + [3174] = 869, + [3175] = 916, + [3176] = 874, + [3177] = 2962, + [3178] = 3126, + [3179] = 672, + [3180] = 397, + [3181] = 3043, + [3182] = 3163, + [3183] = 2970, + [3184] = 3126, + [3185] = 3165, + [3186] = 399, + [3187] = 2973, + [3188] = 2975, + [3189] = 952, + [3190] = 963, + [3191] = 906, + [3192] = 2972, + [3193] = 2987, + [3194] = 2989, + [3195] = 2991, + [3196] = 3012, + [3197] = 2986, + [3198] = 2990, + [3199] = 3024, + [3200] = 3033, + [3201] = 3057, + [3202] = 3071, + [3203] = 2941, + [3204] = 785, + [3205] = 3205, + [3206] = 821, + [3207] = 872, + [3208] = 873, + [3209] = 809, + [3210] = 3210, [3211] = 3211, - [3212] = 899, - [3213] = 923, - [3214] = 3040, + [3212] = 3212, + [3213] = 714, + [3214] = 3034, [3215] = 3215, [3216] = 3216, [3217] = 3217, [3218] = 3218, - [3219] = 3219, - [3220] = 741, - [3221] = 742, + [3219] = 399, + [3220] = 403, + [3221] = 3221, [3222] = 3222, [3223] = 3223, [3224] = 3224, - [3225] = 3225, - [3226] = 728, - [3227] = 3227, + [3225] = 3125, + [3226] = 3226, + [3227] = 3100, [3228] = 3228, - [3229] = 3109, + [3229] = 401, [3230] = 3230, - [3231] = 3231, - [3232] = 3232, - [3233] = 3233, - [3234] = 3234, - [3235] = 408, - [3236] = 409, - [3237] = 410, - [3238] = 408, + [3231] = 3097, + [3232] = 3098, + [3233] = 3101, + [3234] = 3099, + [3235] = 92, + [3236] = 387, + [3237] = 3237, + [3238] = 3238, [3239] = 3239, - [3240] = 409, - [3241] = 3241, + [3240] = 3240, + [3241] = 404, [3242] = 3242, [3243] = 3243, [3244] = 3244, [3245] = 3245, [3246] = 3246, [3247] = 3247, - [3248] = 92, - [3249] = 3249, + [3248] = 398, + [3249] = 93, [3250] = 3250, [3251] = 3251, - [3252] = 3087, - [3253] = 93, + [3252] = 3252, + [3253] = 3119, [3254] = 3254, - [3255] = 3255, + [3255] = 656, [3256] = 3256, [3257] = 3257, - [3258] = 3169, + [3258] = 3258, [3259] = 3259, [3260] = 3260, [3261] = 3261, [3262] = 3262, - [3263] = 3263, - [3264] = 410, + [3263] = 3139, + [3264] = 3264, [3265] = 3265, - [3266] = 3102, - [3267] = 92, - [3268] = 336, + [3266] = 3128, + [3267] = 3267, + [3268] = 3268, [3269] = 3269, - [3270] = 93, - [3271] = 726, - [3272] = 3272, - [3273] = 407, - [3274] = 727, - [3275] = 736, - [3276] = 92, - [3277] = 400, - [3278] = 3146, - [3279] = 737, - [3280] = 3280, - [3281] = 3113, - [3282] = 3114, - [3283] = 3115, - [3284] = 3284, - [3285] = 738, - [3286] = 398, - [3287] = 3161, - [3288] = 3118, - [3289] = 3289, - [3290] = 888, + [3270] = 383, + [3271] = 874, + [3272] = 3260, + [3273] = 3273, + [3274] = 92, + [3275] = 399, + [3276] = 3276, + [3277] = 3277, + [3278] = 3150, + [3279] = 3279, + [3280] = 403, + [3281] = 2972, + [3282] = 411, + [3283] = 3166, + [3284] = 3034, + [3285] = 2987, + [3286] = 2989, + [3287] = 2991, + [3288] = 3012, + [3289] = 2986, + [3290] = 2990, [3291] = 3291, - [3292] = 400, - [3293] = 333, - [3294] = 3294, - [3295] = 3295, + [3292] = 3033, + [3293] = 3057, + [3294] = 3071, + [3295] = 2941, [3296] = 3296, - [3297] = 3297, - [3298] = 93, + [3297] = 92, + [3298] = 3298, [3299] = 3299, - [3300] = 3300, - [3301] = 3167, - [3302] = 3136, - [3303] = 3207, - [3304] = 739, - [3305] = 740, - [3306] = 540, - [3307] = 3307, + [3300] = 3173, + [3301] = 3137, + [3302] = 401, + [3303] = 411, + [3304] = 3304, + [3305] = 3305, + [3306] = 3306, + [3307] = 3123, [3308] = 3308, [3309] = 3309, - [3310] = 2967, + [3310] = 3310, [3311] = 3311, - [3312] = 3145, + [3312] = 3312, [3313] = 3313, [3314] = 3314, - [3315] = 3315, + [3315] = 93, [3316] = 3316, - [3317] = 3069, - [3318] = 3071, - [3319] = 2944, - [3320] = 3028, - [3321] = 2919, - [3322] = 2950, - [3323] = 2963, - [3324] = 3044, - [3325] = 3047, - [3326] = 3057, - [3327] = 2937, - [3328] = 3328, - [3329] = 3329, - [3330] = 3330, - [3331] = 389, - [3332] = 3332, - [3333] = 3333, - [3334] = 3079, - [3335] = 400, - [3336] = 408, - [3337] = 409, - [3338] = 410, - [3339] = 3216, - [3340] = 3340, - [3341] = 3341, - [3342] = 398, - [3343] = 720, - [3344] = 378, - [3345] = 721, - [3346] = 3076, - [3347] = 722, - [3348] = 92, - [3349] = 3349, - [3350] = 93, - [3351] = 723, - [3352] = 3352, - [3353] = 407, + [3317] = 334, + [3318] = 338, + [3319] = 3319, + [3320] = 3320, + [3321] = 93, + [3322] = 92, + [3323] = 3323, + [3324] = 3324, + [3325] = 821, + [3326] = 872, + [3327] = 873, + [3328] = 809, + [3329] = 411, + [3330] = 722, + [3331] = 723, + [3332] = 725, + [3333] = 404, + [3334] = 404, + [3335] = 398, + [3336] = 403, + [3337] = 398, + [3338] = 3116, + [3339] = 3339, + [3340] = 739, + [3341] = 3126, + [3342] = 3342, + [3343] = 741, + [3344] = 3344, + [3345] = 743, + [3346] = 3346, + [3347] = 747, + [3348] = 3348, + [3349] = 749, + [3350] = 3350, + [3351] = 752, + [3352] = 93, + [3353] = 776, [3354] = 3354, - [3355] = 3355, - [3356] = 691, - [3357] = 3357, - [3358] = 98, - [3359] = 3355, - [3360] = 99, - [3361] = 398, - [3362] = 92, - [3363] = 3363, - [3364] = 92, - [3365] = 3365, - [3366] = 446, - [3367] = 3367, - [3368] = 98, - [3369] = 399, - [3370] = 98, - [3371] = 3371, - [3372] = 343, - [3373] = 99, + [3355] = 3024, + [3356] = 3356, + [3357] = 98, + [3358] = 401, + [3359] = 3359, + [3360] = 672, + [3361] = 93, + [3362] = 353, + [3363] = 93, + [3364] = 3364, + [3365] = 92, + [3366] = 400, + [3367] = 92, + [3368] = 3356, + [3369] = 3369, + [3370] = 399, + [3371] = 3356, + [3372] = 354, + [3373] = 349, [3374] = 3374, - [3375] = 377, - [3376] = 360, - [3377] = 340, - [3378] = 338, - [3379] = 341, - [3380] = 353, - [3381] = 3355, - [3382] = 342, - [3383] = 349, - [3384] = 3384, - [3385] = 407, - [3386] = 412, - [3387] = 403, - [3388] = 99, - [3389] = 411, - [3390] = 93, + [3375] = 3375, + [3376] = 98, + [3377] = 3356, + [3378] = 350, + [3379] = 351, + [3380] = 101, + [3381] = 352, + [3382] = 405, + [3383] = 397, + [3384] = 412, + [3385] = 360, + [3386] = 3386, + [3387] = 361, + [3388] = 407, + [3389] = 3389, + [3390] = 101, [3391] = 3391, - [3392] = 92, - [3393] = 3355, - [3394] = 3394, - [3395] = 3076, - [3396] = 3355, - [3397] = 93, - [3398] = 99, - [3399] = 98, - [3400] = 93, - [3401] = 3401, + [3392] = 93, + [3393] = 98, + [3394] = 3356, + [3395] = 3126, + [3396] = 447, + [3397] = 98, + [3398] = 92, + [3399] = 101, + [3400] = 3400, + [3401] = 101, [3402] = 3402, - [3403] = 3402, - [3404] = 3402, - [3405] = 3405, + [3403] = 3403, + [3404] = 98, + [3405] = 101, [3406] = 3406, - [3407] = 105, - [3408] = 3402, - [3409] = 3409, - [3410] = 3401, + [3407] = 3402, + [3408] = 3406, + [3409] = 3402, + [3410] = 3403, [3411] = 3406, - [3412] = 99, - [3413] = 442, - [3414] = 106, - [3415] = 3402, - [3416] = 444, - [3417] = 3417, - [3418] = 2444, - [3419] = 99, - [3420] = 3405, + [3412] = 3412, + [3413] = 3413, + [3414] = 445, + [3415] = 3406, + [3416] = 3402, + [3417] = 3403, + [3418] = 3406, + [3419] = 3402, + [3420] = 3403, [3421] = 3406, [3422] = 3402, - [3423] = 442, - [3424] = 108, - [3425] = 105, - [3426] = 442, - [3427] = 408, - [3428] = 409, - [3429] = 106, - [3430] = 3405, - [3431] = 3406, - [3432] = 410, - [3433] = 3402, - [3434] = 400, - [3435] = 369, - [3436] = 3405, - [3437] = 3406, - [3438] = 3402, - [3439] = 444, - [3440] = 98, - [3441] = 3402, - [3442] = 3405, - [3443] = 3406, - [3444] = 3402, - [3445] = 98, - [3446] = 3405, - [3447] = 3406, - [3448] = 106, + [3423] = 3403, + [3424] = 3406, + [3425] = 3402, + [3426] = 3403, + [3427] = 3406, + [3428] = 3402, + [3429] = 3403, + [3430] = 3406, + [3431] = 3402, + [3432] = 3403, + [3433] = 3406, + [3434] = 3402, + [3435] = 3403, + [3436] = 3403, + [3437] = 3403, + [3438] = 3403, + [3439] = 3403, + [3440] = 3403, + [3441] = 3403, + [3442] = 98, + [3443] = 3403, + [3444] = 3406, + [3445] = 3402, + [3446] = 3403, + [3447] = 112, + [3448] = 404, [3449] = 3449, - [3450] = 98, - [3451] = 3405, - [3452] = 105, - [3453] = 3406, - [3454] = 3402, - [3455] = 3405, - [3456] = 3357, - [3457] = 3457, - [3458] = 3406, - [3459] = 3402, - [3460] = 99, - [3461] = 3457, - [3462] = 3449, - [3463] = 3405, - [3464] = 3405, - [3465] = 3406, - [3466] = 3405, - [3467] = 3402, - [3468] = 3405, + [3450] = 111, + [3451] = 411, + [3452] = 3391, + [3453] = 403, + [3454] = 454, + [3455] = 454, + [3456] = 112, + [3457] = 98, + [3458] = 454, + [3459] = 445, + [3460] = 109, + [3461] = 109, + [3462] = 445, + [3463] = 109, + [3464] = 3412, + [3465] = 112, + [3466] = 3402, + [3467] = 3403, + [3468] = 111, [3469] = 3406, - [3470] = 444, - [3471] = 3406, - [3472] = 3405, - [3473] = 3406, - [3474] = 3405, - [3475] = 3406, - [3476] = 3402, - [3477] = 3402, - [3478] = 3409, - [3479] = 3402, - [3480] = 444, - [3481] = 108, - [3482] = 442, - [3483] = 3402, - [3484] = 105, - [3485] = 106, - [3486] = 3402, - [3487] = 3487, - [3488] = 108, - [3489] = 108, + [3470] = 3402, + [3471] = 372, + [3472] = 3472, + [3473] = 101, + [3474] = 109, + [3475] = 445, + [3476] = 3403, + [3477] = 111, + [3478] = 3413, + [3479] = 111, + [3480] = 101, + [3481] = 3481, + [3482] = 112, + [3483] = 454, + [3484] = 2453, + [3485] = 3472, + [3486] = 3481, + [3487] = 3406, + [3488] = 3488, + [3489] = 3406, [3490] = 3402, - [3491] = 105, - [3492] = 106, - [3493] = 489, + [3491] = 398, + [3492] = 3492, + [3493] = 109, [3494] = 3494, - [3495] = 3495, - [3496] = 485, - [3497] = 106, + [3495] = 349, + [3496] = 3494, + [3497] = 466, [3498] = 3494, - [3499] = 3495, - [3500] = 459, - [3501] = 3487, - [3502] = 3502, - [3503] = 3494, - [3504] = 3495, - [3505] = 343, - [3506] = 3494, - [3507] = 3495, - [3508] = 342, - [3509] = 3494, - [3510] = 3495, - [3511] = 349, - [3512] = 3494, - [3513] = 3494, - [3514] = 442, - [3515] = 3494, - [3516] = 3494, + [3499] = 3499, + [3500] = 3500, + [3501] = 481, + [3502] = 111, + [3503] = 3503, + [3504] = 351, + [3505] = 495, + [3506] = 454, + [3507] = 3494, + [3508] = 3503, + [3509] = 3503, + [3510] = 3503, + [3511] = 112, + [3512] = 3512, + [3513] = 352, + [3514] = 3492, + [3515] = 466, + [3516] = 111, [3517] = 3494, - [3518] = 92, + [3518] = 3503, [3519] = 3494, - [3520] = 3494, - [3521] = 3494, - [3522] = 3494, - [3523] = 3494, - [3524] = 3494, - [3525] = 3525, - [3526] = 1841, - [3527] = 3495, - [3528] = 340, - [3529] = 3502, - [3530] = 3495, - [3531] = 3495, - [3532] = 3532, - [3533] = 3502, - [3534] = 459, - [3535] = 3502, - [3536] = 470, - [3537] = 3525, - [3538] = 108, - [3539] = 3525, - [3540] = 3540, - [3541] = 105, - [3542] = 108, - [3543] = 3495, - [3544] = 1841, - [3545] = 3495, - [3546] = 106, - [3547] = 3540, - [3548] = 470, - [3549] = 105, - [3550] = 3494, - [3551] = 3495, - [3552] = 3495, - [3553] = 470, - [3554] = 444, + [3520] = 112, + [3521] = 3500, + [3522] = 3492, + [3523] = 3488, + [3524] = 334, + [3525] = 460, + [3526] = 460, + [3527] = 353, + [3528] = 3494, + [3529] = 3503, + [3530] = 3494, + [3531] = 93, + [3532] = 111, + [3533] = 354, + [3534] = 3503, + [3535] = 3494, + [3536] = 3494, + [3537] = 3537, + [3538] = 3499, + [3539] = 112, + [3540] = 3494, + [3541] = 3503, + [3542] = 466, + [3543] = 445, + [3544] = 3500, + [3545] = 3494, + [3546] = 3503, + [3547] = 460, + [3548] = 3499, + [3549] = 3499, + [3550] = 3503, + [3551] = 3492, + [3552] = 3494, + [3553] = 466, + [3554] = 3503, [3555] = 3555, - [3556] = 3525, - [3557] = 3540, - [3558] = 3540, - [3559] = 442, - [3560] = 341, - [3561] = 108, - [3562] = 497, - [3563] = 459, - [3564] = 93, - [3565] = 470, - [3566] = 3494, - [3567] = 3495, - [3568] = 360, - [3569] = 459, - [3570] = 3570, - [3571] = 444, - [3572] = 333, - [3573] = 3573, - [3574] = 3573, - [3575] = 459, - [3576] = 3573, - [3577] = 645, - [3578] = 503, - [3579] = 500, - [3580] = 3573, - [3581] = 3581, + [3556] = 460, + [3557] = 445, + [3558] = 3494, + [3559] = 3494, + [3560] = 109, + [3561] = 350, + [3562] = 3500, + [3563] = 490, + [3564] = 3494, + [3565] = 3494, + [3566] = 3503, + [3567] = 1833, + [3568] = 109, + [3569] = 454, + [3570] = 1833, + [3571] = 3494, + [3572] = 92, + [3573] = 3503, + [3574] = 93, + [3575] = 517, + [3576] = 3576, + [3577] = 517, + [3578] = 3578, + [3579] = 516, + [3580] = 3578, + [3581] = 489, [3582] = 3582, - [3583] = 500, - [3584] = 490, - [3585] = 503, - [3586] = 3573, - [3587] = 3573, - [3588] = 490, - [3589] = 99, - [3590] = 470, - [3591] = 3591, - [3592] = 338, - [3593] = 353, - [3594] = 3573, - [3595] = 470, - [3596] = 490, - [3597] = 500, - [3598] = 645, - [3599] = 3599, - [3600] = 642, - [3601] = 98, - [3602] = 3573, - [3603] = 642, - [3604] = 459, - [3605] = 3573, - [3606] = 645, - [3607] = 3573, - [3608] = 642, - [3609] = 93, - [3610] = 336, - [3611] = 92, - [3612] = 3573, - [3613] = 3613, - [3614] = 503, - [3615] = 3573, - [3616] = 500, - [3617] = 503, - [3618] = 490, - [3619] = 3573, - [3620] = 3581, - [3621] = 333, - [3622] = 444, - [3623] = 3623, - [3624] = 353, - [3625] = 704, - [3626] = 503, + [3583] = 516, + [3584] = 466, + [3585] = 3585, + [3586] = 3578, + [3587] = 3578, + [3588] = 3578, + [3589] = 360, + [3590] = 361, + [3591] = 101, + [3592] = 479, + [3593] = 479, + [3594] = 3578, + [3595] = 3578, + [3596] = 484, + [3597] = 3578, + [3598] = 3578, + [3599] = 460, + [3600] = 489, + [3601] = 479, + [3602] = 484, + [3603] = 479, + [3604] = 3578, + [3605] = 3578, + [3606] = 484, + [3607] = 489, + [3608] = 3578, + [3609] = 92, + [3610] = 98, + [3611] = 517, + [3612] = 460, + [3613] = 466, + [3614] = 489, + [3615] = 516, + [3616] = 3578, + [3617] = 3617, + [3618] = 338, + [3619] = 3619, + [3620] = 3582, + [3621] = 334, + [3622] = 484, + [3623] = 475, + [3624] = 3624, + [3625] = 516, + [3626] = 687, [3627] = 3627, [3628] = 3628, - [3629] = 3629, - [3630] = 442, - [3631] = 444, - [3632] = 489, - [3633] = 3633, - [3634] = 692, - [3635] = 675, - [3636] = 698, - [3637] = 442, - [3638] = 491, - [3639] = 645, - [3640] = 338, - [3641] = 3641, - [3642] = 3642, - [3643] = 3643, - [3644] = 98, - [3645] = 490, - [3646] = 3646, - [3647] = 333, - [3648] = 3648, - [3649] = 490, - [3650] = 3646, - [3651] = 3641, - [3652] = 106, - [3653] = 333, - [3654] = 3654, - [3655] = 485, - [3656] = 3646, - [3657] = 3648, - [3658] = 3627, - [3659] = 3659, - [3660] = 485, - [3661] = 465, - [3662] = 3662, - [3663] = 466, - [3664] = 493, - [3665] = 3646, + [3629] = 334, + [3630] = 3617, + [3631] = 498, + [3632] = 501, + [3633] = 516, + [3634] = 481, + [3635] = 705, + [3636] = 710, + [3637] = 677, + [3638] = 3638, + [3639] = 3639, + [3640] = 3640, + [3641] = 454, + [3642] = 3639, + [3643] = 445, + [3644] = 516, + [3645] = 3645, + [3646] = 2534, + [3647] = 338, + [3648] = 334, + [3649] = 484, + [3650] = 454, + [3651] = 3628, + [3652] = 3582, + [3653] = 495, + [3654] = 481, + [3655] = 3655, + [3656] = 3628, + [3657] = 454, + [3658] = 3658, + [3659] = 3628, + [3660] = 3660, + [3661] = 3661, + [3662] = 360, + [3663] = 486, + [3664] = 3624, + [3665] = 3628, [3666] = 3628, - [3667] = 486, - [3668] = 493, - [3669] = 486, - [3670] = 3646, - [3671] = 3671, - [3672] = 3555, - [3673] = 645, + [3667] = 3645, + [3668] = 3488, + [3669] = 495, + [3670] = 361, + [3671] = 3628, + [3672] = 517, + [3673] = 2536, [3674] = 3674, - [3675] = 3646, - [3676] = 1830, - [3677] = 336, - [3678] = 444, - [3679] = 444, - [3680] = 645, - [3681] = 442, - [3682] = 497, - [3683] = 503, - [3684] = 2521, - [3685] = 3646, - [3686] = 3686, - [3687] = 642, - [3688] = 3688, - [3689] = 3689, - [3690] = 493, - [3691] = 3633, - [3692] = 2549, - [3693] = 642, - [3694] = 500, - [3695] = 3671, - [3696] = 3613, - [3697] = 3646, - [3698] = 3643, - [3699] = 484, - [3700] = 442, - [3701] = 3701, - [3702] = 3646, - [3703] = 486, - [3704] = 497, - [3705] = 500, - [3706] = 3706, - [3707] = 3581, + [3675] = 501, + [3676] = 3676, + [3677] = 2559, + [3678] = 3661, + [3679] = 112, + [3680] = 3638, + [3681] = 498, + [3682] = 3682, + [3683] = 3683, + [3684] = 109, + [3685] = 517, + [3686] = 496, + [3687] = 490, + [3688] = 492, + [3689] = 101, + [3690] = 3690, + [3691] = 501, + [3692] = 479, + [3693] = 445, + [3694] = 1841, + [3695] = 3690, + [3696] = 3555, + [3697] = 3628, + [3698] = 479, + [3699] = 3676, + [3700] = 3700, + [3701] = 3576, + [3702] = 3702, + [3703] = 489, + [3704] = 3658, + [3705] = 98, + [3706] = 445, + [3707] = 3660, [3708] = 3674, - [3709] = 3646, - [3710] = 3487, - [3711] = 2539, - [3712] = 3591, - [3713] = 3706, - [3714] = 3714, - [3715] = 3715, - [3716] = 3654, - [3717] = 108, - [3718] = 484, - [3719] = 642, - [3720] = 3671, - [3721] = 3659, - [3722] = 3671, - [3723] = 99, - [3724] = 3688, - [3725] = 3686, - [3726] = 498, - [3727] = 3642, - [3728] = 3646, - [3729] = 3629, - [3730] = 105, - [3731] = 3731, + [3709] = 484, + [3710] = 111, + [3711] = 3628, + [3712] = 3628, + [3713] = 3713, + [3714] = 489, + [3715] = 498, + [3716] = 3682, + [3717] = 3628, + [3718] = 486, + [3719] = 3719, + [3720] = 454, + [3721] = 3682, + [3722] = 445, + [3723] = 3682, + [3724] = 517, + [3725] = 3700, + [3726] = 3713, + [3727] = 3727, + [3728] = 3640, + [3729] = 469, + [3730] = 3730, + [3731] = 3655, [3732] = 3732, [3733] = 3733, [3734] = 3734, [3735] = 3735, [3736] = 3736, - [3737] = 2597, - [3738] = 2598, - [3739] = 2990, - [3740] = 2992, - [3741] = 444, - [3742] = 444, - [3743] = 3731, - [3744] = 3744, + [3737] = 3737, + [3738] = 2610, + [3739] = 2643, + [3740] = 454, + [3741] = 2977, + [3742] = 2979, + [3743] = 454, + [3744] = 3732, [3745] = 3745, - [3746] = 442, - [3747] = 3747, + [3746] = 3746, + [3747] = 445, [3748] = 3748, [3749] = 3749, [3750] = 3750, @@ -8568,339 +8584,339 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3752] = 3752, [3753] = 3753, [3754] = 3754, - [3755] = 338, - [3756] = 3714, - [3757] = 3715, - [3758] = 353, - [3759] = 459, - [3760] = 3752, - [3761] = 3761, + [3755] = 3755, + [3756] = 360, + [3757] = 3727, + [3758] = 3627, + [3759] = 361, + [3760] = 466, + [3761] = 3752, [3762] = 3762, [3763] = 3763, [3764] = 3764, - [3765] = 444, - [3766] = 3751, + [3765] = 454, + [3766] = 3753, [3767] = 3767, [3768] = 3768, [3769] = 3769, - [3770] = 1446, - [3771] = 2785, - [3772] = 2785, - [3773] = 2538, - [3774] = 3774, + [3770] = 1447, + [3771] = 3771, + [3772] = 2776, + [3773] = 2776, + [3774] = 2562, [3775] = 3775, - [3776] = 489, - [3777] = 497, - [3778] = 338, - [3779] = 485, - [3780] = 704, - [3781] = 3747, - [3782] = 3748, - [3783] = 3749, - [3784] = 3784, - [3785] = 3752, + [3776] = 490, + [3777] = 481, + [3778] = 495, + [3779] = 360, + [3780] = 687, + [3781] = 3748, + [3782] = 3749, + [3783] = 3750, + [3784] = 3752, + [3785] = 3785, [3786] = 3786, [3787] = 3787, [3788] = 3788, [3789] = 3789, [3790] = 3790, - [3791] = 343, + [3791] = 353, [3792] = 3792, - [3793] = 470, - [3794] = 3794, - [3795] = 360, - [3796] = 340, - [3797] = 353, - [3798] = 341, - [3799] = 342, - [3800] = 349, - [3801] = 459, - [3802] = 3744, - [3803] = 3803, - [3804] = 3745, - [3805] = 3748, - [3806] = 3749, - [3807] = 692, - [3808] = 675, - [3809] = 698, - [3810] = 470, + [3793] = 460, + [3794] = 354, + [3795] = 349, + [3796] = 3796, + [3797] = 3797, + [3798] = 361, + [3799] = 350, + [3800] = 351, + [3801] = 352, + [3802] = 466, + [3803] = 705, + [3804] = 710, + [3805] = 677, + [3806] = 3745, + [3807] = 3807, + [3808] = 460, + [3809] = 3746, + [3810] = 3749, [3811] = 3750, - [3812] = 334, - [3813] = 459, - [3814] = 3814, - [3815] = 3786, - [3816] = 3816, - [3817] = 1940, - [3818] = 3818, - [3819] = 3747, - [3820] = 3820, - [3821] = 3748, - [3822] = 3749, - [3823] = 3752, + [3812] = 335, + [3813] = 466, + [3814] = 3751, + [3815] = 372, + [3816] = 3748, + [3817] = 3817, + [3818] = 1955, + [3819] = 3748, + [3820] = 3749, + [3821] = 3750, + [3822] = 3752, + [3823] = 3823, [3824] = 3824, - [3825] = 3747, + [3825] = 3825, [3826] = 3748, [3827] = 3749, - [3828] = 3752, - [3829] = 3747, + [3828] = 3750, + [3829] = 3752, [3830] = 3748, [3831] = 3749, - [3832] = 3752, - [3833] = 3747, - [3834] = 3752, - [3835] = 3747, - [3836] = 3836, + [3832] = 3750, + [3833] = 3752, + [3834] = 3748, + [3835] = 3752, + [3836] = 3748, [3837] = 3752, - [3838] = 442, - [3839] = 3747, + [3838] = 445, + [3839] = 3748, [3840] = 3752, [3841] = 3841, [3842] = 3842, [3843] = 3843, - [3844] = 1940, - [3845] = 3845, - [3846] = 697, - [3847] = 2545, - [3848] = 697, - [3849] = 470, - [3850] = 459, - [3851] = 444, - [3852] = 470, - [3853] = 704, - [3854] = 108, - [3855] = 105, - [3856] = 106, - [3857] = 3857, + [3844] = 3844, + [3845] = 1955, + [3846] = 3846, + [3847] = 709, + [3848] = 709, + [3849] = 460, + [3850] = 466, + [3851] = 2538, + [3852] = 454, + [3853] = 687, + [3854] = 460, + [3855] = 109, + [3856] = 111, + [3857] = 112, [3858] = 3858, [3859] = 3859, - [3860] = 704, - [3861] = 692, - [3862] = 675, - [3863] = 698, - [3864] = 3747, - [3865] = 3731, - [3866] = 3744, - [3867] = 3745, - [3868] = 442, - [3869] = 692, - [3870] = 675, + [3860] = 3860, + [3861] = 687, + [3862] = 705, + [3863] = 710, + [3864] = 677, + [3865] = 3732, + [3866] = 3745, + [3867] = 3746, + [3868] = 445, + [3869] = 705, + [3870] = 710, [3871] = 3871, - [3872] = 698, - [3873] = 444, - [3874] = 3818, - [3875] = 3875, - [3876] = 3731, - [3877] = 3744, - [3878] = 3745, + [3872] = 677, + [3873] = 454, + [3874] = 3824, + [3875] = 3732, + [3876] = 3745, + [3877] = 3746, + [3878] = 3878, [3879] = 3879, - [3880] = 442, - [3881] = 3775, - [3882] = 3784, - [3883] = 369, - [3884] = 339, - [3885] = 961, - [3886] = 931, - [3887] = 3887, - [3888] = 3105, - [3889] = 369, - [3890] = 490, - [3891] = 3137, - [3892] = 645, + [3880] = 445, + [3881] = 3785, + [3882] = 3788, + [3883] = 3792, + [3884] = 3884, + [3885] = 3389, + [3886] = 3886, + [3887] = 372, + [3888] = 489, + [3889] = 3889, + [3890] = 3157, + [3891] = 3158, + [3892] = 481, [3893] = 3893, - [3894] = 3139, - [3895] = 3140, - [3896] = 497, - [3897] = 3897, - [3898] = 3142, - [3899] = 485, - [3900] = 967, - [3901] = 444, - [3902] = 3753, - [3903] = 699, - [3904] = 886, - [3905] = 3613, - [3906] = 3591, - [3907] = 2785, - [3908] = 948, - [3909] = 954, - [3910] = 3910, - [3911] = 709, - [3912] = 3912, - [3913] = 3887, - [3914] = 941, - [3915] = 3897, - [3916] = 459, - [3917] = 3910, - [3918] = 3918, - [3919] = 958, + [3894] = 3159, + [3895] = 1013, + [3896] = 3160, + [3897] = 495, + [3898] = 3898, + [3899] = 517, + [3900] = 454, + [3901] = 3898, + [3902] = 673, + [3903] = 867, + [3904] = 3904, + [3905] = 3754, + [3906] = 3576, + [3907] = 3617, + [3908] = 2776, + [3909] = 3755, + [3910] = 927, + [3911] = 688, + [3912] = 3889, + [3913] = 3893, + [3914] = 946, + [3915] = 3904, + [3916] = 3916, + [3917] = 3142, + [3918] = 3916, + [3919] = 466, [3920] = 3920, - [3921] = 886, - [3922] = 941, - [3923] = 500, - [3924] = 2990, - [3925] = 2992, - [3926] = 959, - [3927] = 948, - [3928] = 954, - [3929] = 503, - [3930] = 958, - [3931] = 490, - [3932] = 959, - [3933] = 3897, - [3934] = 336, - [3935] = 886, - [3936] = 960, - [3937] = 705, - [3938] = 960, - [3939] = 3939, - [3940] = 3940, - [3941] = 937, - [3942] = 3871, - [3943] = 961, - [3944] = 931, - [3945] = 3945, - [3946] = 500, - [3947] = 351, - [3948] = 503, - [3949] = 357, - [3950] = 490, - [3951] = 3845, - [3952] = 3144, - [3953] = 3953, + [3921] = 3921, + [3922] = 951, + [3923] = 867, + [3924] = 919, + [3925] = 3925, + [3926] = 919, + [3927] = 479, + [3928] = 2977, + [3929] = 2979, + [3930] = 927, + [3931] = 946, + [3932] = 955, + [3933] = 484, + [3934] = 951, + [3935] = 489, + [3936] = 955, + [3937] = 3904, + [3938] = 338, + [3939] = 678, + [3940] = 959, + [3941] = 867, + [3942] = 363, + [3943] = 959, + [3944] = 912, + [3945] = 964, + [3946] = 965, + [3947] = 3947, + [3948] = 479, + [3949] = 3871, + [3950] = 362, + [3951] = 484, + [3952] = 359, + [3953] = 489, [3954] = 3954, - [3955] = 3912, - [3956] = 3887, - [3957] = 3897, - [3958] = 3958, - [3959] = 3875, - [3960] = 3910, - [3961] = 941, - [3962] = 3157, - [3963] = 3879, - [3964] = 3129, - [3965] = 3965, - [3966] = 3912, - [3967] = 3887, - [3968] = 1980, - [3969] = 3912, - [3970] = 3953, - [3971] = 961, - [3972] = 3371, - [3973] = 931, - [3974] = 3912, - [3975] = 3887, - [3976] = 3976, - [3977] = 642, - [3978] = 3910, - [3979] = 3912, - [3980] = 3887, - [3981] = 3910, - [3982] = 3910, - [3983] = 3768, - [3984] = 3769, - [3985] = 470, - [3986] = 3912, - [3987] = 3887, - [3988] = 3910, - [3989] = 3754, - [3990] = 503, - [3991] = 3912, - [3992] = 3887, - [3993] = 334, - [3994] = 3910, - [3995] = 459, - [3996] = 3912, - [3997] = 3997, - [3998] = 3912, - [3999] = 3912, - [4000] = 3912, - [4001] = 3116, - [4002] = 470, - [4003] = 3912, - [4004] = 3912, - [4005] = 4005, - [4006] = 3912, - [4007] = 3120, - [4008] = 3912, - [4009] = 3912, - [4010] = 3912, - [4011] = 3912, - [4012] = 948, - [4013] = 954, - [4014] = 3940, - [4015] = 500, + [3955] = 3161, + [3956] = 3846, + [3957] = 3889, + [3958] = 3893, + [3959] = 3904, + [3960] = 3916, + [3961] = 965, + [3962] = 919, + [3963] = 3104, + [3964] = 3889, + [3965] = 3893, + [3966] = 3966, + [3967] = 3966, + [3968] = 3968, + [3969] = 2027, + [3970] = 3878, + [3971] = 3172, + [3972] = 3972, + [3973] = 3920, + [3974] = 964, + [3975] = 3889, + [3976] = 3893, + [3977] = 965, + [3978] = 3879, + [3979] = 3916, + [3980] = 3980, + [3981] = 3889, + [3982] = 3889, + [3983] = 3893, + [3984] = 516, + [3985] = 3916, + [3986] = 3889, + [3987] = 3893, + [3988] = 460, + [3989] = 3768, + [3990] = 3769, + [3991] = 3916, + [3992] = 335, + [3993] = 460, + [3994] = 3889, + [3995] = 3893, + [3996] = 484, + [3997] = 3916, + [3998] = 927, + [3999] = 466, + [4000] = 3889, + [4001] = 946, + [4002] = 3889, + [4003] = 4003, + [4004] = 3889, + [4005] = 3889, + [4006] = 3889, + [4007] = 3154, + [4008] = 3889, + [4009] = 3916, + [4010] = 3889, + [4011] = 3889, + [4012] = 3889, + [4013] = 3889, + [4014] = 3155, + [4015] = 3889, [4016] = 4016, - [4017] = 503, - [4018] = 490, - [4019] = 3887, - [4020] = 958, - [4021] = 4021, - [4022] = 4022, - [4023] = 3939, - [4024] = 500, - [4025] = 4025, - [4026] = 959, - [4027] = 2789, - [4028] = 333, - [4029] = 4029, - [4030] = 886, - [4031] = 960, - [4032] = 470, - [4033] = 4033, - [4034] = 3893, - [4035] = 459, - [4036] = 3912, - [4037] = 4037, - [4038] = 1980, - [4039] = 2081, - [4040] = 3893, - [4041] = 3893, - [4042] = 444, - [4043] = 470, - [4044] = 459, - [4045] = 4045, - [4046] = 4045, - [4047] = 3910, - [4048] = 4048, + [4017] = 3886, + [4018] = 479, + [4019] = 484, + [4020] = 489, + [4021] = 479, + [4022] = 951, + [4023] = 3893, + [4024] = 4024, + [4025] = 955, + [4026] = 4026, + [4027] = 4027, + [4028] = 2787, + [4029] = 867, + [4030] = 334, + [4031] = 4031, + [4032] = 4032, + [4033] = 959, + [4034] = 4034, + [4035] = 460, + [4036] = 3898, + [4037] = 3947, + [4038] = 466, + [4039] = 4039, + [4040] = 2027, + [4041] = 2043, + [4042] = 3898, + [4043] = 4043, + [4044] = 454, + [4045] = 460, + [4046] = 964, + [4047] = 466, + [4048] = 3916, [4049] = 4049, [4050] = 4050, - [4051] = 442, + [4051] = 4051, [4052] = 4052, - [4053] = 4053, - [4054] = 4054, - [4055] = 3137, - [4056] = 960, - [4057] = 967, - [4058] = 719, - [4059] = 338, - [4060] = 4060, - [4061] = 961, - [4062] = 931, - [4063] = 1807, - [4064] = 3139, - [4065] = 353, - [4066] = 4029, - [4067] = 1808, + [4053] = 445, + [4054] = 3157, + [4055] = 3158, + [4056] = 959, + [4057] = 1013, + [4058] = 4058, + [4059] = 360, + [4060] = 785, + [4061] = 4061, + [4062] = 4062, + [4063] = 964, + [4064] = 965, + [4065] = 3159, + [4066] = 3160, + [4067] = 361, [4068] = 4068, - [4069] = 4069, - [4070] = 4070, - [4071] = 720, - [4072] = 3140, - [4073] = 3142, - [4074] = 721, - [4075] = 722, - [4076] = 2517, - [4077] = 967, - [4078] = 4078, - [4079] = 723, - [4080] = 2526, + [4069] = 821, + [4070] = 1786, + [4071] = 1787, + [4072] = 872, + [4073] = 873, + [4074] = 2563, + [4075] = 4075, + [4076] = 4076, + [4077] = 809, + [4078] = 2520, + [4079] = 4032, + [4080] = 4080, [4081] = 4081, [4082] = 4082, [4083] = 4083, - [4084] = 4084, - [4085] = 4085, + [4084] = 4062, + [4085] = 1013, [4086] = 4086, - [4087] = 4016, + [4087] = 4026, [4088] = 4088, [4089] = 4089, [4090] = 4090, @@ -8909,702 +8925,702 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4093] = 4093, [4094] = 4094, [4095] = 4095, - [4096] = 724, - [4097] = 2945, - [4098] = 4098, + [4096] = 714, + [4097] = 4097, + [4098] = 2956, [4099] = 4099, - [4100] = 3144, + [4100] = 4100, [4101] = 4101, - [4102] = 899, - [4103] = 2948, - [4104] = 886, - [4105] = 726, - [4106] = 727, - [4107] = 728, - [4108] = 339, - [4109] = 730, + [4102] = 3161, + [4103] = 903, + [4104] = 867, + [4105] = 722, + [4106] = 723, + [4107] = 725, + [4108] = 2957, + [4109] = 729, [4110] = 4110, - [4111] = 2541, - [4112] = 941, - [4113] = 735, - [4114] = 4114, - [4115] = 736, - [4116] = 737, - [4117] = 738, - [4118] = 948, - [4119] = 739, - [4120] = 954, - [4121] = 740, - [4122] = 741, - [4123] = 742, - [4124] = 958, - [4125] = 959, - [4126] = 4126, - [4127] = 886, + [4111] = 919, + [4112] = 2560, + [4113] = 736, + [4114] = 363, + [4115] = 739, + [4116] = 741, + [4117] = 927, + [4118] = 743, + [4119] = 946, + [4120] = 747, + [4121] = 749, + [4122] = 752, + [4123] = 951, + [4124] = 776, + [4125] = 955, + [4126] = 867, + [4127] = 4127, [4128] = 4128, - [4129] = 4129, - [4130] = 937, + [4129] = 2872, + [4130] = 4130, [4131] = 4131, - [4132] = 4132, + [4132] = 687, [4133] = 4133, - [4134] = 4016, - [4135] = 704, + [4134] = 4134, + [4135] = 4135, [4136] = 4136, [4137] = 4137, [4138] = 4138, - [4139] = 4139, - [4140] = 343, - [4141] = 4050, - [4142] = 4142, - [4143] = 948, - [4144] = 4144, - [4145] = 954, - [4146] = 960, - [4147] = 4147, - [4148] = 444, + [4139] = 912, + [4140] = 4140, + [4141] = 4141, + [4142] = 4062, + [4143] = 4143, + [4144] = 353, + [4145] = 4026, + [4146] = 4146, + [4147] = 959, + [4148] = 454, [4149] = 4149, - [4150] = 360, - [4151] = 4151, - [4152] = 3918, - [4153] = 340, - [4154] = 4154, - [4155] = 2570, - [4156] = 4156, - [4157] = 961, - [4158] = 931, - [4159] = 941, - [4160] = 341, - [4161] = 342, - [4162] = 349, - [4163] = 695, + [4150] = 3144, + [4151] = 354, + [4152] = 349, + [4153] = 4153, + [4154] = 927, + [4155] = 946, + [4156] = 964, + [4157] = 965, + [4158] = 4158, + [4159] = 4159, + [4160] = 4160, + [4161] = 350, + [4162] = 351, + [4163] = 352, [4164] = 4164, - [4165] = 694, - [4166] = 4166, - [4167] = 3997, - [4168] = 2540, - [4169] = 4050, - [4170] = 4170, - [4171] = 4092, - [4172] = 4172, - [4173] = 4173, - [4174] = 948, + [4165] = 4165, + [4166] = 2531, + [4167] = 951, + [4168] = 4062, + [4169] = 919, + [4170] = 692, + [4171] = 4171, + [4172] = 676, + [4173] = 2581, + [4174] = 4174, [4175] = 4175, - [4176] = 930, - [4177] = 954, - [4178] = 692, - [4179] = 4088, - [4180] = 4050, - [4181] = 1395, + [4176] = 927, + [4177] = 949, + [4178] = 4178, + [4179] = 705, + [4180] = 710, + [4181] = 4062, [4182] = 4182, - [4183] = 675, - [4184] = 4184, + [4183] = 1401, + [4184] = 677, [4185] = 4185, - [4186] = 698, + [4186] = 946, [4187] = 4187, - [4188] = 4188, + [4188] = 3727, [4189] = 4189, - [4190] = 4190, - [4191] = 3714, - [4192] = 3715, - [4193] = 4050, - [4194] = 4194, + [4190] = 3627, + [4191] = 4191, + [4192] = 4192, + [4193] = 4193, + [4194] = 4062, [4195] = 4195, [4196] = 4196, - [4197] = 887, - [4198] = 4198, + [4197] = 4197, + [4198] = 4094, [4199] = 4199, - [4200] = 958, - [4201] = 4201, + [4200] = 4200, + [4201] = 3154, [4202] = 4202, - [4203] = 4203, - [4204] = 4050, - [4205] = 4205, - [4206] = 3116, - [4207] = 697, - [4208] = 959, - [4209] = 500, - [4210] = 3120, - [4211] = 1781, - [4212] = 4212, - [4213] = 4050, - [4214] = 936, - [4215] = 2857, - [4216] = 4216, - [4217] = 4217, - [4218] = 503, - [4219] = 886, + [4203] = 4062, + [4204] = 951, + [4205] = 869, + [4206] = 4206, + [4207] = 3155, + [4208] = 955, + [4209] = 3921, + [4210] = 4131, + [4211] = 709, + [4212] = 867, + [4213] = 4062, + [4214] = 479, + [4215] = 4215, + [4216] = 959, + [4217] = 1013, + [4218] = 932, + [4219] = 4219, [4220] = 4220, - [4221] = 490, - [4222] = 960, - [4223] = 967, - [4224] = 4050, - [4225] = 4225, - [4226] = 4226, + [4221] = 4221, + [4222] = 484, + [4223] = 489, + [4224] = 1801, + [4225] = 874, + [4226] = 4062, [4227] = 4227, [4228] = 4228, - [4229] = 958, - [4230] = 4050, - [4231] = 4231, + [4229] = 4229, + [4230] = 1802, + [4231] = 4062, [4232] = 4232, - [4233] = 1782, - [4234] = 888, + [4233] = 4233, + [4234] = 4234, [4235] = 4235, [4236] = 4236, [4237] = 4237, - [4238] = 4238, + [4238] = 4062, [4239] = 4239, [4240] = 4240, [4241] = 4241, - [4242] = 4050, - [4243] = 4243, + [4242] = 4242, + [4243] = 964, [4244] = 4244, - [4245] = 503, - [4246] = 3532, + [4245] = 4245, + [4246] = 965, [4247] = 4247, - [4248] = 3570, - [4249] = 961, - [4250] = 4250, - [4251] = 4251, + [4248] = 4248, + [4249] = 4249, + [4250] = 3537, + [4251] = 3512, [4252] = 4252, - [4253] = 931, - [4254] = 4050, - [4255] = 4232, - [4256] = 4256, + [4253] = 4253, + [4254] = 4254, + [4255] = 4062, + [4256] = 362, [4257] = 4257, [4258] = 4258, [4259] = 4259, [4260] = 4260, [4261] = 4261, - [4262] = 960, - [4263] = 937, + [4262] = 959, + [4263] = 4263, [4264] = 4264, - [4265] = 4265, - [4266] = 351, + [4265] = 912, + [4266] = 4266, [4267] = 4267, - [4268] = 3417, + [4268] = 4268, [4269] = 4269, - [4270] = 4270, - [4271] = 4271, - [4272] = 4272, - [4273] = 4138, - [4274] = 357, - [4275] = 2927, - [4276] = 2530, - [4277] = 2928, + [4270] = 2540, + [4271] = 3449, + [4272] = 4257, + [4273] = 4003, + [4274] = 4274, + [4275] = 4275, + [4276] = 4276, + [4277] = 359, [4278] = 4278, - [4279] = 4084, + [4279] = 4279, [4280] = 4280, - [4281] = 3131, - [4282] = 1357, - [4283] = 4050, + [4281] = 1354, + [4282] = 2948, + [4283] = 484, [4284] = 4284, - [4285] = 4285, - [4286] = 959, - [4287] = 4287, + [4285] = 2952, + [4286] = 479, + [4287] = 4092, [4288] = 4288, - [4289] = 4289, + [4289] = 955, [4290] = 4290, - [4291] = 500, - [4292] = 4292, + [4291] = 4291, + [4292] = 4267, [4293] = 4293, - [4294] = 4294, + [4294] = 912, [4295] = 4295, [4296] = 4296, [4297] = 4297, [4298] = 4298, [4299] = 4299, [4300] = 4300, - [4301] = 937, + [4301] = 4301, [4302] = 4302, - [4303] = 490, + [4303] = 4303, [4304] = 4304, - [4305] = 4185, - [4306] = 3105, + [4305] = 489, + [4306] = 4195, [4307] = 4307, [4308] = 4308, [4309] = 4309, - [4310] = 500, + [4310] = 479, [4311] = 4311, - [4312] = 4312, - [4313] = 4050, - [4314] = 503, - [4315] = 4050, + [4312] = 4062, + [4313] = 374, + [4314] = 4062, + [4315] = 484, [4316] = 4316, - [4317] = 490, - [4318] = 368, + [4317] = 489, + [4318] = 4318, [4319] = 4319, [4320] = 4320, [4321] = 4321, [4322] = 4322, - [4323] = 4133, + [4323] = 4323, [4324] = 4324, - [4325] = 4325, + [4325] = 4138, [4326] = 4326, [4327] = 4327, [4328] = 4328, [4329] = 4329, [4330] = 4330, [4331] = 4331, - [4332] = 1792, - [4333] = 1793, + [4332] = 1798, + [4333] = 1800, [4334] = 4334, - [4335] = 923, - [4336] = 4336, + [4335] = 4335, + [4336] = 952, [4337] = 4337, [4338] = 4338, - [4339] = 4339, + [4339] = 3142, [4340] = 4340, [4341] = 4341, - [4342] = 500, - [4343] = 4050, - [4344] = 4344, - [4345] = 4345, + [4342] = 4342, + [4343] = 4343, + [4344] = 4062, + [4345] = 479, [4346] = 4346, [4347] = 4347, [4348] = 4348, - [4349] = 503, - [4350] = 941, + [4349] = 4349, + [4350] = 484, [4351] = 4351, - [4352] = 4280, - [4353] = 490, - [4354] = 961, - [4355] = 4271, - [4356] = 4272, - [4357] = 931, - [4358] = 4267, + [4352] = 4299, + [4353] = 489, + [4354] = 4354, + [4355] = 919, + [4356] = 4275, + [4357] = 4278, + [4358] = 4279, [4359] = 4359, - [4360] = 4280, - [4361] = 4271, - [4362] = 4272, - [4363] = 4267, - [4364] = 4364, - [4365] = 4365, - [4366] = 4050, - [4367] = 4367, - [4368] = 930, - [4369] = 4369, - [4370] = 4370, - [4371] = 4371, - [4372] = 4372, + [4360] = 964, + [4361] = 965, + [4362] = 4299, + [4363] = 4275, + [4364] = 4278, + [4365] = 4279, + [4366] = 4366, + [4367] = 4062, + [4368] = 4334, + [4369] = 949, + [4370] = 4346, + [4371] = 2560, + [4372] = 4233, [4373] = 4373, [4374] = 4374, - [4375] = 369, - [4376] = 4068, - [4377] = 924, + [4375] = 4375, + [4376] = 372, + [4377] = 4347, [4378] = 4378, - [4379] = 4270, - [4380] = 926, - [4381] = 4381, - [4382] = 685, - [4383] = 4250, - [4384] = 4269, - [4385] = 4321, + [4379] = 4379, + [4380] = 4380, + [4381] = 963, + [4382] = 906, + [4383] = 4383, + [4384] = 4379, + [4385] = 680, [4386] = 4386, - [4387] = 4069, + [4387] = 4387, [4388] = 4388, - [4389] = 4251, + [4389] = 4389, [4390] = 4252, [4391] = 4391, - [4392] = 4231, + [4392] = 4392, [4393] = 4393, - [4394] = 4324, - [4395] = 4330, + [4394] = 4318, + [4395] = 4221, [4396] = 4396, - [4397] = 4322, - [4398] = 334, - [4399] = 4289, - [4400] = 676, - [4401] = 3054, + [4397] = 4253, + [4398] = 335, + [4399] = 4254, + [4400] = 4400, + [4401] = 4235, [4402] = 4402, - [4403] = 4307, - [4404] = 4404, + [4403] = 4303, + [4404] = 4319, [4405] = 4405, - [4406] = 4226, + [4406] = 684, [4407] = 4407, - [4408] = 2916, - [4409] = 4331, - [4410] = 4227, - [4411] = 4411, - [4412] = 4294, - [4413] = 4413, - [4414] = 4339, - [4415] = 4336, - [4416] = 4257, - [4417] = 4340, - [4418] = 4348, - [4419] = 4351, - [4420] = 4049, - [4421] = 936, - [4422] = 4052, - [4423] = 4423, - [4424] = 949, - [4425] = 897, - [4426] = 898, - [4427] = 4053, - [4428] = 459, - [4429] = 4054, - [4430] = 4304, - [4431] = 4402, - [4432] = 4083, - [4433] = 4085, - [4434] = 4086, - [4435] = 4090, - [4436] = 916, + [4408] = 4220, + [4409] = 4075, + [4410] = 4288, + [4411] = 3075, + [4412] = 4083, + [4413] = 4311, + [4414] = 4308, + [4415] = 1407, + [4416] = 4416, + [4417] = 4100, + [4418] = 4418, + [4419] = 4320, + [4420] = 932, + [4421] = 4324, + [4422] = 4322, + [4423] = 4340, + [4424] = 937, + [4425] = 940, + [4426] = 899, + [4427] = 4348, + [4428] = 4349, + [4429] = 466, + [4430] = 4430, + [4431] = 4351, + [4432] = 4050, + [4433] = 4086, + [4434] = 4089, + [4435] = 4407, + [4436] = 4090, [4437] = 4091, - [4438] = 4438, - [4439] = 4439, - [4440] = 4093, - [4441] = 4441, - [4442] = 4094, - [4443] = 4098, - [4444] = 4259, - [4445] = 4445, - [4446] = 4446, - [4447] = 4393, + [4438] = 897, + [4439] = 4093, + [4440] = 4051, + [4441] = 4052, + [4442] = 4095, + [4443] = 4443, + [4444] = 4099, + [4445] = 4101, + [4446] = 4228, + [4447] = 4258, [4448] = 4448, [4449] = 4449, [4450] = 4450, [4451] = 4451, - [4452] = 743, - [4453] = 744, - [4454] = 2570, - [4455] = 4325, - [4456] = 4326, - [4457] = 4327, - [4458] = 4328, - [4459] = 4329, - [4460] = 4460, + [4452] = 4452, + [4453] = 4453, + [4454] = 4454, + [4455] = 4455, + [4456] = 4260, + [4457] = 786, + [4458] = 787, + [4459] = 3006, + [4460] = 4402, [4461] = 4461, - [4462] = 2173, - [4463] = 2174, + [4462] = 2531, + [4463] = 4326, [4464] = 4464, - [4465] = 4378, - [4466] = 2176, - [4467] = 4467, - [4468] = 4407, - [4469] = 444, - [4470] = 2540, - [4471] = 4381, - [4472] = 4472, - [4473] = 3128, - [4474] = 4413, - [4475] = 4446, - [4476] = 4287, - [4477] = 4288, - [4478] = 4297, - [4479] = 746, - [4480] = 747, - [4481] = 4337, - [4482] = 4482, - [4483] = 3003, - [4484] = 4484, - [4485] = 4485, - [4486] = 4338, - [4487] = 4101, - [4488] = 4110, - [4489] = 4129, - [4490] = 4381, - [4491] = 4292, - [4492] = 4136, - [4493] = 4413, - [4494] = 4137, - [4495] = 4142, - [4496] = 4496, - [4497] = 4381, - [4498] = 4413, - [4499] = 4446, - [4500] = 4334, - [4501] = 4381, - [4502] = 4502, + [4465] = 4327, + [4466] = 4328, + [4467] = 4329, + [4468] = 4468, + [4469] = 2182, + [4470] = 4330, + [4471] = 4379, + [4472] = 454, + [4473] = 2152, + [4474] = 2167, + [4475] = 4418, + [4476] = 4455, + [4477] = 4291, + [4478] = 4430, + [4479] = 2581, + [4480] = 794, + [4481] = 797, + [4482] = 4290, + [4483] = 4295, + [4484] = 4300, + [4485] = 3171, + [4486] = 2936, + [4487] = 4379, + [4488] = 4488, + [4489] = 4127, + [4490] = 4130, + [4491] = 4418, + [4492] = 4140, + [4493] = 4143, + [4494] = 4149, + [4495] = 4495, + [4496] = 4373, + [4497] = 4497, + [4498] = 4331, + [4499] = 4499, + [4500] = 4500, + [4501] = 4341, + [4502] = 4379, [4503] = 4503, - [4504] = 4070, - [4505] = 763, - [4506] = 764, - [4507] = 4149, - [4508] = 4151, - [4509] = 4381, - [4510] = 4172, - [4511] = 4175, - [4512] = 4413, - [4513] = 4217, - [4514] = 3005, - [4515] = 4299, - [4516] = 4302, - [4517] = 4309, - [4518] = 4311, - [4519] = 4341, - [4520] = 2530, - [4521] = 4144, - [4522] = 1358, - [4523] = 4156, - [4524] = 4524, - [4525] = 4164, - [4526] = 4526, - [4527] = 4170, - [4528] = 4201, - [4529] = 4345, + [4504] = 4418, + [4505] = 4418, + [4506] = 4455, + [4507] = 4342, + [4508] = 870, + [4509] = 871, + [4510] = 4510, + [4511] = 4164, + [4512] = 4379, + [4513] = 4165, + [4514] = 4418, + [4515] = 4191, + [4516] = 4219, + [4517] = 4378, + [4518] = 4309, + [4519] = 4076, + [4520] = 4274, + [4521] = 4284, + [4522] = 4522, + [4523] = 2540, + [4524] = 1362, + [4525] = 4321, + [4526] = 4171, + [4527] = 4174, + [4528] = 4528, + [4529] = 4175, [4530] = 4530, - [4531] = 4531, - [4532] = 1366, - [4533] = 4081, - [4534] = 4202, - [4535] = 4082, - [4536] = 943, - [4537] = 4537, - [4538] = 4316, - [4539] = 4539, - [4540] = 540, - [4541] = 4402, - [4542] = 4542, - [4543] = 4543, - [4544] = 4544, - [4545] = 4346, - [4546] = 4095, - [4547] = 2148, - [4548] = 4099, + [4531] = 1365, + [4532] = 4178, + [4533] = 4197, + [4534] = 4200, + [4535] = 4335, + [4536] = 938, + [4537] = 4080, + [4538] = 4088, + [4539] = 4081, + [4540] = 4540, + [4541] = 3017, + [4542] = 4229, + [4543] = 3027, + [4544] = 4407, + [4545] = 4545, + [4546] = 4546, + [4547] = 4547, + [4548] = 2148, [4549] = 4549, - [4550] = 4320, + [4550] = 4550, [4551] = 4551, - [4552] = 3026, - [4553] = 4347, - [4554] = 3036, - [4555] = 4555, - [4556] = 951, - [4557] = 4557, - [4558] = 4558, + [4552] = 4552, + [4553] = 4110, + [4554] = 454, + [4555] = 2960, + [4556] = 4556, + [4557] = 4316, + [4558] = 916, [4559] = 4559, - [4560] = 4237, - [4561] = 4240, - [4562] = 4241, - [4563] = 4243, - [4564] = 4244, - [4565] = 4265, - [4566] = 4128, - [4567] = 4220, - [4568] = 4568, - [4569] = 4569, + [4560] = 4560, + [4561] = 4561, + [4562] = 4234, + [4563] = 4236, + [4564] = 4128, + [4565] = 4239, + [4566] = 4241, + [4567] = 4242, + [4568] = 4134, + [4569] = 4248, [4570] = 4570, [4571] = 4571, - [4572] = 2517, - [4573] = 470, - [4574] = 2526, - [4575] = 4575, + [4572] = 4572, + [4573] = 4573, + [4574] = 4574, + [4575] = 2920, [4576] = 4576, [4577] = 4577, - [4578] = 4578, - [4579] = 4579, - [4580] = 4580, + [4578] = 460, + [4579] = 2563, + [4580] = 2520, [4581] = 4581, - [4582] = 4225, + [4582] = 4582, [4583] = 4583, - [4584] = 4264, - [4585] = 4212, - [4586] = 4586, + [4584] = 4337, + [4585] = 4585, + [4586] = 656, [4587] = 4587, [4588] = 4588, [4589] = 4589, - [4590] = 4590, + [4590] = 4338, [4591] = 4591, [4592] = 4592, [4593] = 4593, - [4594] = 444, + [4594] = 4249, [4595] = 4595, - [4596] = 491, + [4596] = 492, [4597] = 4597, - [4598] = 442, - [4599] = 2191, - [4600] = 4381, - [4601] = 4485, - [4602] = 4602, - [4603] = 3053, - [4604] = 4228, - [4605] = 4373, - [4606] = 498, + [4598] = 445, + [4599] = 4599, + [4600] = 2181, + [4601] = 4601, + [4602] = 4379, + [4603] = 4497, + [4604] = 4604, + [4605] = 4232, + [4606] = 4389, [4607] = 4607, - [4608] = 4608, - [4609] = 4413, - [4610] = 4446, - [4611] = 4078, - [4612] = 1409, - [4613] = 4472, + [4608] = 496, + [4609] = 4343, + [4610] = 4418, + [4611] = 4455, + [4612] = 4612, + [4613] = 4268, [4614] = 4614, [4615] = 4615, [4616] = 4616, [4617] = 4617, - [4618] = 4239, + [4618] = 4245, [4619] = 4619, - [4620] = 2541, - [4621] = 4413, + [4620] = 4620, + [4621] = 4158, [4622] = 4622, - [4623] = 4623, - [4624] = 4624, - [4625] = 4625, - [4626] = 4626, - [4627] = 4627, + [4623] = 3144, + [4624] = 933, + [4625] = 4026, + [4626] = 3205, + [4627] = 3211, [4628] = 4628, [4629] = 4629, [4630] = 4630, [4631] = 4631, - [4632] = 4632, - [4633] = 4633, - [4634] = 4629, + [4632] = 951, + [4633] = 960, + [4634] = 4634, [4635] = 4635, [4636] = 4636, [4637] = 4637, - [4638] = 4635, + [4638] = 946, [4639] = 4639, - [4640] = 691, - [4641] = 339, - [4642] = 4642, + [4640] = 1101, + [4641] = 4641, + [4642] = 4630, [4643] = 4643, [4644] = 4644, [4645] = 4645, - [4646] = 4626, - [4647] = 4637, + [4646] = 867, + [4647] = 4628, [4648] = 4648, - [4649] = 4630, + [4649] = 4649, [4650] = 4650, - [4651] = 4651, + [4651] = 912, [4652] = 4652, - [4653] = 960, - [4654] = 4654, - [4655] = 4631, + [4653] = 4653, + [4654] = 479, + [4655] = 4655, [4656] = 4656, - [4657] = 4627, - [4658] = 4628, - [4659] = 4639, - [4660] = 941, - [4661] = 967, + [4657] = 4657, + [4658] = 489, + [4659] = 4659, + [4660] = 3537, + [4661] = 3512, [4662] = 4662, - [4663] = 4627, - [4664] = 4664, - [4665] = 4628, + [4663] = 4663, + [4664] = 3028, + [4665] = 4665, [4666] = 4666, [4667] = 4667, [4668] = 4668, - [4669] = 961, + [4669] = 4464, [4670] = 4670, - [4671] = 503, - [4672] = 4672, - [4673] = 931, + [4671] = 2041, + [4672] = 4636, + [4673] = 4673, [4674] = 4674, [4675] = 4675, - [4676] = 904, - [4677] = 937, - [4678] = 3016, - [4679] = 4648, - [4680] = 4651, + [4676] = 4676, + [4677] = 4677, + [4678] = 4678, + [4679] = 4679, + [4680] = 4670, [4681] = 4681, [4682] = 4682, [4683] = 4683, [4684] = 4684, - [4685] = 4016, + [4685] = 4685, [4686] = 4686, - [4687] = 4664, - [4688] = 4666, - [4689] = 4662, - [4690] = 4622, - [4691] = 4691, - [4692] = 4643, - [4693] = 4667, - [4694] = 4670, - [4695] = 948, - [4696] = 4672, - [4697] = 490, - [4698] = 886, - [4699] = 4699, - [4700] = 1043, + [4687] = 4687, + [4688] = 4667, + [4689] = 4689, + [4690] = 4690, + [4691] = 4690, + [4692] = 4692, + [4693] = 4693, + [4694] = 363, + [4695] = 942, + [4696] = 4681, + [4697] = 4697, + [4698] = 4655, + [4699] = 4683, + [4700] = 927, [4701] = 4701, - [4702] = 4675, - [4703] = 4668, - [4704] = 4704, - [4705] = 4705, + [4702] = 4702, + [4703] = 4656, + [4704] = 1599, + [4705] = 4639, [4706] = 4706, [4707] = 4707, [4708] = 4708, [4709] = 4709, - [4710] = 3532, - [4711] = 3570, - [4712] = 4464, - [4713] = 954, - [4714] = 4633, - [4715] = 4715, - [4716] = 1510, - [4717] = 4717, - [4718] = 4707, - [4719] = 4719, - [4720] = 2089, - [4721] = 4721, - [4722] = 4644, - [4723] = 958, - [4724] = 4724, - [4725] = 4625, + [4710] = 4710, + [4711] = 4711, + [4712] = 362, + [4713] = 965, + [4714] = 4644, + [4715] = 4656, + [4716] = 359, + [4717] = 925, + [4718] = 4685, + [4719] = 4657, + [4720] = 4720, + [4721] = 4687, + [4722] = 4722, + [4723] = 922, + [4724] = 672, + [4725] = 4725, [4726] = 4726, [4727] = 4727, - [4728] = 4728, + [4728] = 4676, [4729] = 4729, - [4730] = 3037, - [4731] = 3131, + [4730] = 4635, + [4731] = 4678, [4732] = 4732, - [4733] = 351, - [4734] = 4645, + [4733] = 4733, + [4734] = 4684, [4735] = 4735, - [4736] = 4736, - [4737] = 4724, - [4738] = 4704, - [4739] = 4625, - [4740] = 4705, + [4736] = 4662, + [4737] = 4685, + [4738] = 4663, + [4739] = 4650, + [4740] = 4740, [4741] = 4741, - [4742] = 4742, - [4743] = 357, - [4744] = 4744, + [4742] = 4653, + [4743] = 4665, + [4744] = 460, [4745] = 4745, - [4746] = 4626, - [4747] = 4691, - [4748] = 927, - [4749] = 4749, - [4750] = 955, - [4751] = 4751, - [4752] = 4706, - [4753] = 896, - [4754] = 4754, - [4755] = 4627, - [4756] = 4726, - [4757] = 4628, - [4758] = 4758, - [4759] = 4759, - [4760] = 3093, - [4761] = 4761, - [4762] = 3095, - [4763] = 4726, - [4764] = 4764, - [4765] = 4765, - [4766] = 4766, - [4767] = 4767, - [4768] = 4768, - [4769] = 470, - [4770] = 4770, - [4771] = 4699, + [4746] = 4697, + [4747] = 959, + [4748] = 4748, + [4749] = 466, + [4750] = 4662, + [4751] = 4629, + [4752] = 4752, + [4753] = 4662, + [4754] = 4643, + [4755] = 4755, + [4756] = 4756, + [4757] = 4757, + [4758] = 4685, + [4759] = 4663, + [4760] = 4657, + [4761] = 4685, + [4762] = 4762, + [4763] = 4673, + [4764] = 4663, + [4765] = 4656, + [4766] = 2051, + [4767] = 4657, + [4768] = 4682, + [4769] = 2053, + [4770] = 4741, + [4771] = 919, [4772] = 4772, - [4773] = 459, + [4773] = 4652, [4774] = 4774, - [4775] = 4625, - [4776] = 4726, - [4777] = 4626, - [4778] = 2082, - [4779] = 4726, - [4780] = 2083, - [4781] = 4686, - [4782] = 4719, + [4775] = 1013, + [4776] = 4776, + [4777] = 4777, + [4778] = 4778, + [4779] = 4772, + [4780] = 4708, + [4781] = 4710, + [4782] = 484, [4783] = 4783, - [4784] = 4715, + [4784] = 955, [4785] = 4785, - [4786] = 500, - [4787] = 959, - [4788] = 4788, - [4789] = 4632, - [4790] = 925, - [4791] = 4791, + [4786] = 4666, + [4787] = 4787, + [4788] = 4634, + [4789] = 4637, + [4790] = 964, + [4791] = 2924, [4792] = 4792, [4793] = 4793, [4794] = 4794, @@ -9612,411 +9628,413 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4796] = 4796, [4797] = 4797, [4798] = 4798, - [4799] = 4798, - [4800] = 4792, + [4799] = 4799, + [4800] = 4800, [4801] = 4801, [4802] = 4802, - [4803] = 4803, - [4804] = 4798, - [4805] = 4801, + [4803] = 4794, + [4804] = 4804, + [4805] = 4799, [4806] = 4806, [4807] = 4807, [4808] = 4808, - [4809] = 4809, + [4809] = 4807, [4810] = 4810, [4811] = 4811, - [4812] = 4792, - [4813] = 4793, + [4812] = 4812, + [4813] = 4813, [4814] = 4794, - [4815] = 4815, - [4816] = 4816, - [4817] = 4798, - [4818] = 4802, - [4819] = 4819, + [4815] = 4795, + [4816] = 4796, + [4817] = 4817, + [4818] = 4818, + [4819] = 4800, [4820] = 4820, - [4821] = 4821, - [4822] = 4801, - [4823] = 4823, - [4824] = 4792, - [4825] = 4791, - [4826] = 4809, - [4827] = 4827, - [4828] = 4828, - [4829] = 4792, - [4830] = 4793, + [4821] = 4800, + [4822] = 4822, + [4823] = 4798, + [4824] = 4807, + [4825] = 4825, + [4826] = 4826, + [4827] = 4818, + [4828] = 4811, + [4829] = 4795, + [4830] = 4830, [4831] = 4794, - [4832] = 4798, - [4833] = 4833, - [4834] = 4793, - [4835] = 4835, - [4836] = 4836, - [4837] = 4801, + [4832] = 4795, + [4833] = 4796, + [4834] = 4800, + [4835] = 4806, + [4836] = 4813, + [4837] = 4806, [4838] = 4838, - [4839] = 4798, + [4839] = 4807, [4840] = 4840, - [4841] = 498, - [4842] = 4842, - [4843] = 4792, - [4844] = 4793, + [4841] = 4841, + [4842] = 4802, + [4843] = 4843, + [4844] = 4844, [4845] = 4794, - [4846] = 4798, - [4847] = 4801, - [4848] = 4848, - [4849] = 4821, - [4850] = 4801, + [4846] = 4795, + [4847] = 4796, + [4848] = 4800, + [4849] = 496, + [4850] = 4850, [4851] = 4851, - [4852] = 4819, - [4853] = 4853, - [4854] = 4815, - [4855] = 4792, - [4856] = 4793, + [4852] = 4807, + [4853] = 2560, + [4854] = 4854, + [4855] = 4800, + [4856] = 4856, [4857] = 4794, - [4858] = 4820, - [4859] = 4803, - [4860] = 4801, + [4858] = 4795, + [4859] = 4796, + [4860] = 4860, [4861] = 4861, - [4862] = 4862, + [4862] = 4807, [4863] = 4863, - [4864] = 4792, - [4865] = 4793, + [4864] = 4864, + [4865] = 4865, [4866] = 4794, - [4867] = 4867, - [4868] = 4868, + [4867] = 4795, + [4868] = 4796, [4869] = 4801, - [4870] = 4870, - [4871] = 4871, + [4870] = 4865, + [4871] = 4807, [4872] = 4872, - [4873] = 4792, - [4874] = 4793, + [4873] = 4873, + [4874] = 4874, [4875] = 4794, - [4876] = 4835, - [4877] = 491, - [4878] = 4801, + [4876] = 4795, + [4877] = 4796, + [4878] = 2540, [4879] = 4879, - [4880] = 4792, - [4881] = 4793, + [4880] = 4807, + [4881] = 4881, [4882] = 4794, - [4883] = 4801, - [4884] = 4851, - [4885] = 4801, - [4886] = 4809, - [4887] = 4792, - [4888] = 4793, - [4889] = 4794, - [4890] = 4793, + [4883] = 4795, + [4884] = 4796, + [4885] = 4885, + [4886] = 4886, + [4887] = 4807, + [4888] = 4794, + [4889] = 4795, + [4890] = 4796, [4891] = 4891, - [4892] = 4801, - [4893] = 4827, - [4894] = 4792, - [4895] = 4793, - [4896] = 4794, - [4897] = 4807, - [4898] = 4810, - [4899] = 4801, - [4900] = 4810, - [4901] = 4792, - [4902] = 4793, - [4903] = 4794, - [4904] = 4904, - [4905] = 491, - [4906] = 4801, - [4907] = 4907, - [4908] = 4792, - [4909] = 4793, - [4910] = 4794, - [4911] = 4911, - [4912] = 4801, - [4913] = 4792, - [4914] = 4793, - [4915] = 4794, - [4916] = 4916, - [4917] = 4917, - [4918] = 4851, - [4919] = 4811, + [4892] = 492, + [4893] = 4807, + [4894] = 4894, + [4895] = 4794, + [4896] = 4795, + [4897] = 4796, + [4898] = 4807, + [4899] = 4899, + [4900] = 4807, + [4901] = 4901, + [4902] = 4794, + [4903] = 4795, + [4904] = 4796, + [4905] = 4838, + [4906] = 4906, + [4907] = 4807, + [4908] = 4908, + [4909] = 4794, + [4910] = 4795, + [4911] = 4796, + [4912] = 4794, + [4913] = 4807, + [4914] = 4794, + [4915] = 4795, + [4916] = 4796, + [4917] = 4804, + [4918] = 4918, + [4919] = 4861, [4920] = 4920, [4921] = 4921, - [4922] = 4922, - [4923] = 4923, - [4924] = 4924, - [4925] = 4808, - [4926] = 4809, - [4927] = 4867, - [4928] = 4928, - [4929] = 4929, - [4930] = 4930, - [4931] = 4879, + [4922] = 4792, + [4923] = 4812, + [4924] = 4863, + [4925] = 4851, + [4926] = 4801, + [4927] = 4908, + [4928] = 4811, + [4929] = 4810, + [4930] = 4879, + [4931] = 4844, [4932] = 4932, [4933] = 4933, - [4934] = 4809, - [4935] = 2530, - [4936] = 498, + [4934] = 4934, + [4935] = 4811, + [4936] = 4841, [4937] = 4937, - [4938] = 4827, - [4939] = 4792, - [4940] = 4793, - [4941] = 4929, - [4942] = 4806, + [4938] = 4795, + [4939] = 4879, + [4940] = 4807, + [4941] = 4796, + [4942] = 4920, [4943] = 4943, - [4944] = 4870, - [4945] = 4794, - [4946] = 4851, - [4947] = 4929, - [4948] = 491, - [4949] = 4797, - [4950] = 4950, - [4951] = 4951, - [4952] = 4823, - [4953] = 4933, - [4954] = 4954, - [4955] = 4797, - [4956] = 4794, + [4944] = 4944, + [4945] = 4945, + [4946] = 496, + [4947] = 4947, + [4948] = 4948, + [4949] = 2531, + [4950] = 4811, + [4951] = 4799, + [4952] = 4952, + [4953] = 949, + [4954] = 4810, + [4955] = 4920, + [4956] = 4956, [4957] = 4957, - [4958] = 4820, - [4959] = 4959, - [4960] = 4960, - [4961] = 4819, - [4962] = 4823, - [4963] = 930, - [4964] = 4803, - [4965] = 4965, - [4966] = 4966, - [4967] = 4967, - [4968] = 4798, - [4969] = 2570, - [4970] = 4802, + [4958] = 4958, + [4959] = 4802, + [4960] = 4794, + [4961] = 4961, + [4962] = 4962, + [4963] = 492, + [4964] = 4964, + [4965] = 4795, + [4966] = 4796, + [4967] = 4820, + [4968] = 4968, + [4969] = 4797, + [4970] = 4948, [4971] = 4971, - [4972] = 4770, - [4973] = 4921, - [4974] = 4820, - [4975] = 4797, - [4976] = 4803, - [4977] = 4977, - [4978] = 4791, - [4979] = 4802, - [4980] = 4809, - [4981] = 4922, - [4982] = 4982, - [4983] = 4827, - [4984] = 4806, - [4985] = 4920, - [4986] = 4932, - [4987] = 2517, - [4988] = 4801, - [4989] = 4989, - [4990] = 4801, + [4972] = 4799, + [4973] = 4810, + [4974] = 4974, + [4975] = 4975, + [4976] = 4825, + [4977] = 4932, + [4978] = 4820, + [4979] = 4800, + [4980] = 4974, + [4981] = 4981, + [4982] = 4648, + [4983] = 4806, + [4984] = 4984, + [4985] = 4838, + [4986] = 4863, + [4987] = 4865, + [4988] = 4988, + [4989] = 4838, + [4990] = 4990, [4991] = 4991, - [4992] = 4851, - [4993] = 4797, - [4994] = 4810, - [4995] = 4929, - [4996] = 4996, - [4997] = 4997, - [4998] = 4916, - [4999] = 2541, - [5000] = 4862, - [5001] = 4791, + [4992] = 4820, + [4993] = 4865, + [4994] = 4800, + [4995] = 4807, + [4996] = 4813, + [4997] = 4843, + [4998] = 4908, + [4999] = 4854, + [5000] = 4920, + [5001] = 4865, [5002] = 5002, - [5003] = 4809, - [5004] = 4933, - [5005] = 5005, - [5006] = 4827, - [5007] = 5007, - [5008] = 4819, - [5009] = 4791, - [5010] = 4863, - [5011] = 4810, - [5012] = 4929, - [5013] = 4820, - [5014] = 4809, - [5015] = 4929, - [5016] = 4803, - [5017] = 5017, - [5018] = 4797, - [5019] = 4871, - [5020] = 4801, + [5003] = 5003, + [5004] = 867, + [5005] = 4957, + [5006] = 5006, + [5007] = 4811, + [5008] = 4891, + [5009] = 4865, + [5010] = 4933, + [5011] = 4879, + [5012] = 4799, + [5013] = 4945, + [5014] = 4796, + [5015] = 5015, + [5016] = 4937, + [5017] = 4920, + [5018] = 5018, + [5019] = 4920, + [5020] = 5020, [5021] = 5021, - [5022] = 4792, - [5023] = 4836, - [5024] = 5024, - [5025] = 4807, - [5026] = 2526, - [5027] = 4808, - [5028] = 4793, - [5029] = 4801, - [5030] = 5030, - [5031] = 4794, - [5032] = 4851, - [5033] = 4836, - [5034] = 4827, - [5035] = 5035, - [5036] = 4967, - [5037] = 4794, - [5038] = 4997, - [5039] = 4862, - [5040] = 4840, - [5041] = 4809, - [5042] = 4823, - [5043] = 4929, - [5044] = 4797, - [5045] = 936, - [5046] = 4827, - [5047] = 4809, - [5048] = 498, - [5049] = 4827, - [5050] = 4851, - [5051] = 4797, - [5052] = 4891, - [5053] = 4929, - [5054] = 4797, - [5055] = 4810, - [5056] = 4809, - [5057] = 4916, - [5058] = 4920, - [5059] = 4921, - [5060] = 4922, - [5061] = 4819, - [5062] = 886, - [5063] = 4959, - [5064] = 4943, - [5065] = 4803, - [5066] = 4929, - [5067] = 4798, - [5068] = 4928, - [5069] = 500, - [5070] = 4793, - [5071] = 4802, - [5072] = 4794, - [5073] = 503, - [5074] = 4820, - [5075] = 490, - [5076] = 4792, - [5077] = 4996, - [5078] = 4793, - [5079] = 4794, - [5080] = 4809, - [5081] = 4820, - [5082] = 4823, - [5083] = 4967, - [5084] = 4791, - [5085] = 4816, - [5086] = 5021, - [5087] = 5087, - [5088] = 5002, - [5089] = 4943, - [5090] = 4868, - [5091] = 4870, - [5092] = 4960, - [5093] = 5002, - [5094] = 4916, + [5022] = 4850, + [5023] = 4794, + [5024] = 4799, + [5025] = 4795, + [5026] = 4796, + [5027] = 4807, + [5028] = 4843, + [5029] = 4947, + [5030] = 2581, + [5031] = 4797, + [5032] = 5032, + [5033] = 4799, + [5034] = 4810, + [5035] = 4908, + [5036] = 4899, + [5037] = 4820, + [5038] = 4800, + [5039] = 4921, + [5040] = 4806, + [5041] = 4807, + [5042] = 4838, + [5043] = 4811, + [5044] = 4843, + [5045] = 4920, + [5046] = 4799, + [5047] = 2563, + [5048] = 4879, + [5049] = 4865, + [5050] = 4860, + [5051] = 4860, + [5052] = 4811, + [5053] = 5053, + [5054] = 4879, + [5055] = 4920, + [5056] = 4799, + [5057] = 5057, + [5058] = 4811, + [5059] = 4804, + [5060] = 4921, + [5061] = 4792, + [5062] = 4812, + [5063] = 5063, + [5064] = 5064, + [5065] = 5065, + [5066] = 4944, + [5067] = 4945, + [5068] = 5032, + [5069] = 4797, + [5070] = 4807, + [5071] = 4908, + [5072] = 479, + [5073] = 4908, + [5074] = 4920, + [5075] = 5075, + [5076] = 484, + [5077] = 4968, + [5078] = 489, + [5079] = 4811, + [5080] = 4945, + [5081] = 4879, + [5082] = 4794, + [5083] = 5021, + [5084] = 4795, + [5085] = 4796, + [5086] = 4891, + [5087] = 4811, + [5088] = 4797, + [5089] = 4945, + [5090] = 4798, + [5091] = 4968, + [5092] = 4802, + [5093] = 4811, + [5094] = 4948, [5095] = 4920, - [5096] = 4921, - [5097] = 4922, - [5098] = 4797, - [5099] = 4943, - [5100] = 4791, - [5101] = 4827, - [5102] = 5102, - [5103] = 5103, - [5104] = 4871, - [5105] = 4798, - [5106] = 4916, - [5107] = 4920, - [5108] = 4921, - [5109] = 4922, - [5110] = 4916, - [5111] = 4920, - [5112] = 4921, - [5113] = 4922, - [5114] = 4916, - [5115] = 4920, - [5116] = 4921, - [5117] = 4922, - [5118] = 4916, - [5119] = 4921, - [5120] = 4922, - [5121] = 4916, - [5122] = 4921, - [5123] = 4922, - [5124] = 4916, - [5125] = 4921, - [5126] = 4922, - [5127] = 4916, - [5128] = 4921, - [5129] = 4922, - [5130] = 4916, - [5131] = 4921, - [5132] = 4922, - [5133] = 4916, - [5134] = 4921, - [5135] = 4922, - [5136] = 4916, - [5137] = 4921, - [5138] = 4922, - [5139] = 4916, - [5140] = 4921, - [5141] = 4922, - [5142] = 4916, - [5143] = 4921, - [5144] = 4922, - [5145] = 4916, - [5146] = 4921, - [5147] = 4922, - [5148] = 4916, - [5149] = 4921, - [5150] = 4922, - [5151] = 4916, - [5152] = 4921, - [5153] = 4922, - [5154] = 4916, - [5155] = 4921, - [5156] = 4922, - [5157] = 4823, - [5158] = 4801, - [5159] = 5035, - [5160] = 4810, - [5161] = 5161, - [5162] = 5162, - [5163] = 4828, - [5164] = 4924, + [5096] = 4804, + [5097] = 4921, + [5098] = 4792, + [5099] = 4812, + [5100] = 4864, + [5101] = 4944, + [5102] = 4974, + [5103] = 4838, + [5104] = 4799, + [5105] = 4797, + [5106] = 4879, + [5107] = 4794, + [5108] = 4804, + [5109] = 4921, + [5110] = 4792, + [5111] = 4812, + [5112] = 4804, + [5113] = 4921, + [5114] = 4792, + [5115] = 4812, + [5116] = 4804, + [5117] = 4921, + [5118] = 4792, + [5119] = 4812, + [5120] = 4804, + [5121] = 4792, + [5122] = 4812, + [5123] = 4804, + [5124] = 4792, + [5125] = 4812, + [5126] = 4804, + [5127] = 4792, + [5128] = 4812, + [5129] = 4804, + [5130] = 4792, + [5131] = 4812, + [5132] = 4804, + [5133] = 4792, + [5134] = 4812, + [5135] = 4804, + [5136] = 4792, + [5137] = 4812, + [5138] = 4804, + [5139] = 4792, + [5140] = 4812, + [5141] = 4804, + [5142] = 4792, + [5143] = 4812, + [5144] = 4804, + [5145] = 4792, + [5146] = 4812, + [5147] = 4804, + [5148] = 4792, + [5149] = 4812, + [5150] = 4804, + [5151] = 5151, + [5152] = 4812, + [5153] = 4804, + [5154] = 4792, + [5155] = 4812, + [5156] = 4804, + [5157] = 4792, + [5158] = 4812, + [5159] = 4795, + [5160] = 4961, + [5161] = 4990, + [5162] = 4796, + [5163] = 5163, + [5164] = 4906, [5165] = 5165, - [5166] = 5166, - [5167] = 4904, - [5168] = 4907, - [5169] = 5169, - [5170] = 5170, - [5171] = 5171, - [5172] = 4819, - [5173] = 5173, - [5174] = 4803, + [5166] = 4988, + [5167] = 4797, + [5168] = 4934, + [5169] = 4799, + [5170] = 4962, + [5171] = 4810, + [5172] = 4945, + [5173] = 4820, + [5174] = 4800, [5175] = 4798, - [5176] = 4929, - [5177] = 4809, - [5178] = 4811, - [5179] = 4795, - [5180] = 4797, - [5181] = 4792, - [5182] = 4802, - [5183] = 4806, - [5184] = 4827, - [5185] = 4819, - [5186] = 5186, - [5187] = 4793, - [5188] = 4794, - [5189] = 4795, - [5190] = 4816, - [5191] = 4929, - [5192] = 4989, - [5193] = 4823, - [5194] = 4967, - [5195] = 4836, - [5196] = 4802, - [5197] = 4950, - [5198] = 4868, - [5199] = 4872, - [5200] = 5002, - [5201] = 2540, - [5202] = 4792, - [5203] = 5203, + [5176] = 4810, + [5177] = 4806, + [5178] = 496, + [5179] = 4820, + [5180] = 4800, + [5181] = 4958, + [5182] = 4793, + [5183] = 4838, + [5184] = 932, + [5185] = 4879, + [5186] = 4806, + [5187] = 4813, + [5188] = 2520, + [5189] = 4945, + [5190] = 4920, + [5191] = 4958, + [5192] = 4944, + [5193] = 4952, + [5194] = 4937, + [5195] = 4908, + [5196] = 4807, + [5197] = 4794, + [5198] = 4795, + [5199] = 4796, + [5200] = 4811, + [5201] = 4947, + [5202] = 4879, + [5203] = 4792, + [5204] = 492, + [5205] = 5205, }; static const TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -10679,72 +10697,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '$', 1510, - '&', 824, - '\'', 1688, - '(', 1561, - ')', 1616, - '*', 1112, - '+', 1117, - ',', 1469, - '-', 1118, - '.', 1721, - '/', 1114, - ':', 1713, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1144, - '?', 1717, - '@', 1481, - '[', 1665, - ']', 1466, - '^', 1731, - '_', 1502, - '`', 1692, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1715, + '"', 1682, + '#', 2185, + '$', 1507, + '&', 821, + '\'', 1685, + '(', 1558, + ')', 1613, + '*', 1109, + '+', 1114, + ',', 1466, + '-', 1115, + '.', 1718, + '/', 1111, + ':', 1710, + ';', 1448, + '<', 1138, + '=', 670, + '>', 1141, + '?', 1714, + '@', 1478, + '[', 1662, + ']', 1463, + '^', 1728, + '_', 1499, + '`', 1689, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(571); + lookahead == ' ') SKIP(568); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1373); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1370); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); END_STATE(); case 2: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1718, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1724, - ':', 1463, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1479, - '?', 1717, - '@', 1481, - '[', 1465, - ']', 1466, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1715, + '#', 2185, + '$', 1467, + '(', 1464, + ')', 1465, + ',', 1466, + '-', 1484, + '.', 1721, + ':', 1460, + ';', 1448, + '<', 1138, + '=', 670, + '>', 1476, + '?', 1714, + '@', 1478, + '[', 1462, + ']', 1463, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); @@ -10754,30 +10772,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || '.' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '`') ADVANCE(1373); + lookahead != '`') ADVANCE(1370); END_STATE(); case 3: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1718, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1725, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '?', 1717, - '[', 1465, - ']', 1466, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1715, + '#', 2185, + '$', 1467, + '(', 1464, + ')', 1465, + ',', 1466, + '-', 1484, + '.', 1722, + ':', 1460, + ';', 1448, + '=', 670, + '>', 1476, + '?', 1714, + '[', 1462, + ']', 1463, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); @@ -10788,1697 +10806,1711 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ':' || '@' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '`') ADVANCE(1373); + lookahead != '`') ADVANCE(1370); END_STATE(); case 4: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1720, - ':', 1713, - ';', 1451, + '!', 1715, + '#', 2185, + ')', 1465, + '.', 1717, + ':', 1710, + ';', 1448, '=', 323, - '?', 1717, - 'a', 421, + '?', 1714, + 'a', 419, 'e', 288, - 'i', 387, + 'i', 385, 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 'x', 429, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 5: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1722, - ':', 1713, - ';', 1451, + '!', 1715, + '#', 2185, + ')', 1465, + '.', 1719, + ':', 1710, + ';', 1448, '=', 323, - '?', 1717, - 'a', 421, + '?', 1714, + 'a', 419, 'e', 288, - 'i', 387, + 'i', 385, 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 'x', 429, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); END_STATE(); case 6: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1790, + '#', 2185, + '$', 1467, + '(', 1558, + '*', 1509, + '+', 1573, + '-', 1490, + '.', 1601, + '/', 1564, + '<', 1547, + '=', 1792, + '>', 1477, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1863, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); case 7: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1790, + '#', 2185, + '$', 1467, + '(', 1558, + '*', 1509, + '+', 1573, + '-', 1490, + '.', 1812, + '/', 1564, + '<', 1547, + '=', 1792, + '>', 1477, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1863, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); case 8: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1592, + '/', 1564, + '<', 1547, + '=', 1792, + '>', 1477, + 'B', 1650, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1802, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1876, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '{', 1495, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 9: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1592, + '/', 1564, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1813, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 10: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + '<', 1547, + '=', 1792, + '>', 1477, + 'B', 1650, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + '_', 1810, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1802, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1876, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '{', 1495, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 11: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + '<', 1547, + '=', 1792, + '>', 1477, + 'B', 1650, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1802, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1876, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '{', 1495, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 12: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1808, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + '<', 1547, + '=', 1792, + '>', 1477, + 'B', 1650, + 'E', 1807, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1805, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1876, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '{', 1495, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 13: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1813, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 14: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1813, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 15: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + '<', 1547, + '=', 1792, + '>', 1477, + 'a', 1862, + 'b', 1849, + 'e', 1863, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 16: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1591, + '/', 1564, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1813, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 17: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1813, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 18: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1813, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 19: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + '<', 1547, + '=', 1792, + '>', 1477, + 'a', 1862, + 'b', 1849, + 'e', 1863, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 20: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - '$', 1470, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - '<', 1550, + '#', 2185, + '$', 1467, + '*', 1509, + '+', 1574, + '-', 1491, + '.', 336, + '/', 1564, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, - '{', 1498, + '>', 1477, + 'a', 419, + 'b', 398, + 'e', 423, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, + 'o', 449, + 's', 483, + 'x', 429, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(20); END_STATE(); case 21: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2185, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + 's', 483, + 'x', 429, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); END_STATE(); case 22: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2185, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + 's', 483, + 'x', 429, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); END_STATE(); case 23: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, + '#', 2185, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ':', 1710, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + 's', 483, + 'x', 429, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); END_STATE(); case 24: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2185, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + 's', 483, + 'x', 429, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); END_STATE(); case 25: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2185, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + 's', 483, + 'x', 429, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); END_STATE(); case 26: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, + '#', 2185, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + 's', 483, + 'x', 429, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); END_STATE(); case 27: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, + '#', 2185, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + 's', 483, + 'x', 429, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); END_STATE(); case 28: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, + '#', 2185, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, - '{', 1498, + '>', 1477, + 'a', 419, + 'b', 398, + 'e', 423, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, + 'o', 449, + 's', 483, + 'x', 429, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1713, - ';', 1451, - '=', 1729, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '}', 1499, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + ')', 1465, + '+', 699, + '-', 1488, + '.', 694, + '0', 1620, + ':', 1710, + ';', 1448, + '=', 1726, + '@', 1459, + 'I', 806, + 'N', 802, + '[', 1462, + '^', 1728, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 766, + 't', 769, + 'u', 782, + 'w', 744, + '{', 1495, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); case 30: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1713, - ';', 1451, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '}', 1499, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + ')', 1465, + '+', 699, + '-', 1488, + '.', 694, + '0', 1620, + ':', 1710, + ';', 1448, + '@', 1459, + 'I', 806, + 'N', 802, + '[', 1462, + '^', 1728, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 766, + 't', 769, + 'u', 782, + 'w', 744, + '{', 1495, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); case 31: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 1580, - '-', 1491, - '.', 698, - '0', 1623, - ':', 1463, - ';', 1451, - '<', 1141, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + ')', 1465, + '+', 1577, + '-', 1488, + '.', 695, + '0', 1620, + ':', 1460, + ';', 1448, + '<', 1138, '=', 323, - '>', 1479, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '>', 1476, + '@', 1459, + 'I', 806, + 'N', 802, + '[', 1462, + ']', 1463, + '^', 1728, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 766, + 't', 769, + 'u', 782, + 'w', 744, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead)) ADVANCE(824); + (lookahead < '+' || '.' < lookahead)) ADVANCE(821); END_STATE(); case 32: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 1580, - '-', 1491, - '.', 698, - '0', 1623, - ':', 1463, - ';', 1451, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + ')', 1465, + '+', 1577, + '-', 1488, + '.', 695, + '0', 1620, + ':', 1460, + ';', 1448, '=', 323, - '>', 1479, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '>', 1476, + '@', 1459, + 'I', 806, + 'N', 802, + '[', 1462, + ']', 1463, + '^', 1728, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 766, + 't', 769, + 'u', 782, + 'w', 744, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead)) ADVANCE(824); + (lookahead < '0' || '>' < lookahead)) ADVANCE(821); END_STATE(); case 33: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ';', 1451, - '=', 1729, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, - '\t', 1450, - ' ', 1450, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 699, + ',', 1466, + '-', 299, + '.', 715, + '=', 1726, + 'I', 806, + 'N', 802, + '[', 1462, + ']', 1463, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, + '{', 1495, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (lookahead == '\t' || + lookahead == ' ') SKIP(34); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '@' && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); case 34: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - '=', 673, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 699, + ',', 1466, + '-', 299, + '.', 715, + 'I', 806, + 'N', 802, + '[', 1462, + ']', 1463, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, + '{', 1495, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == ' ') SKIP(34); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && + lookahead != '@' && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); case 35: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - '=', 673, - '>', 1479, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 699, + '-', 1488, + '.', 694, + '0', 1620, + ';', 1448, + '=', 1726, + 'I', 806, + 'N', 802, + '[', 1462, + '^', 1728, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 766, + 't', 769, + 'u', 782, + 'w', 748, + '{', 1495, + '\t', 1447, + ' ', 1447, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); case 36: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 691, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 'o', 693, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 699, + '-', 1488, + '.', 694, + '0', 1620, + '=', 670, + '>', 1476, + '@', 1478, + 'I', 806, + 'N', 802, + '[', 1462, + '^', 1728, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 766, + 't', 769, + 'u', 782, + 'w', 748, + '{', 1495, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(37); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); case 37: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 299, - '.', 718, - '=', 1729, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 699, + '-', 1488, + '.', 694, + '0', 1620, + '=', 670, + '>', 1476, + 'I', 806, + 'N', 802, + '[', 1462, + '^', 1728, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 766, + 't', 769, + 'u', 782, + 'w', 748, + '{', 1495, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(37); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); case 38: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 299, - '.', 718, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 699, + '-', 1488, + '.', 694, + '0', 1620, + 'I', 806, + 'N', 802, + '[', 1462, + '^', 1728, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 688, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 766, + 'o', 690, + 't', 769, + 'u', 782, + 'w', 744, + '{', 1495, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); case 39: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, '+', 308, - '-', 1491, + '-', 1488, '.', 309, - '0', 1626, - ':', 1713, - 'N', 533, - '[', 1465, - '_', 342, - '`', 1692, - 'f', 347, - 'n', 442, - 't', 457, - '{', 1498, + '0', 1623, + ':', 1710, + 'N', 530, + '[', 1462, + '_', 341, + '`', 1689, + 'f', 346, + 'n', 440, + 't', 454, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(542); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + lookahead == 'i') ADVANCE(539); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 40: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 1580, - '-', 1491, - '.', 701, - '0', 1628, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 1577, + '-', 1488, + '.', 698, + '0', 1625, + 'I', 806, + 'N', 802, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(40); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); case 41: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1491, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2027, - 't', 2030, - '{', 1498, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 1997, + '-', 1488, + '.', 1995, + '0', 1621, + 'N', 2044, + '[', 1462, + '_', 2009, + '`', 1689, + 'f', 2012, + 'n', 2024, + 't', 2027, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(41); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2048); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2067); END_STATE(); case 42: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ':', 1713, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1989, - 'f', 2015, - 'n', 2043, - 'o', 1990, - 't', 2030, - '{', 1498, - '|', 1452, - '}', 1499, - '\t', 1449, - ' ', 1449, - 'I', 2051, - 'i', 2051, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 1997, + '-', 1485, + '.', 1996, + '0', 1621, + ':', 1710, + ';', 1448, + 'N', 2044, + '[', 1462, + '_', 2009, + '`', 1689, + 'e', 1986, + 'f', 2012, + 'n', 2040, + 'o', 1987, + 't', 2027, + '{', 1495, + '|', 1449, + '}', 1496, + '\t', 1446, + ' ', 1446, + 'I', 2048, + 'i', 2048, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(2070); + lookahead != ']') ADVANCE(2067); END_STATE(); case 43: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1993, - 'f', 2015, - 'n', 2043, - 'o', 1994, - 't', 2030, - '{', 1498, - '\t', 1450, - ' ', 1450, - 'I', 2051, - 'i', 2051, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 1997, + '-', 1485, + '.', 1996, + '0', 1621, + ';', 1448, + 'N', 2044, + '[', 1462, + '_', 2009, + '`', 1689, + 'e', 1990, + 'f', 2012, + 'n', 2040, + 'o', 1991, + 't', 2027, + '{', 1495, + '\t', 1447, + ' ', 1447, + 'I', 2048, + 'i', 2048, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2067); END_STATE(); case 44: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2082, - ',', 1469, - '-', 2081, - '.', 2083, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 2079, + ',', 1466, + '-', 2078, + '.', 2080, + '0', 1622, + 'N', 2097, + '[', 1462, + ']', 1463, + '_', 2084, + '`', 1689, + 'f', 2087, + 'n', 2096, + 't', 2093, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(44); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == 'i') ADVANCE(2103); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2125); END_STATE(); case 45: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2139, - '-', 2138, - '.', 2137, - '0', 1627, - 'N', 2154, - '[', 1465, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, - '{', 1498, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 2136, + '-', 2135, + '.', 2134, + '0', 1624, + 'N', 2151, + '[', 1462, + '_', 2138, + '`', 1689, + 'f', 2141, + 'n', 2150, + 't', 2147, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(45); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2160); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2174); + lookahead == 'i') ADVANCE(2157); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2171); END_STATE(); case 46: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, + '"', 1682, + '#', 2185, + '$', 1467, + '\'', 1685, + '(', 1464, + '+', 1997, '-', 298, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 1501, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '}', 1499, + '.', 1995, + '0', 1621, + 'N', 2044, + '[', 1462, + '_', 1498, + '`', 1689, + 'f', 2012, + 'n', 2040, + 't', 2027, + '{', 1495, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(46); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2048); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2067); END_STATE(); case 47: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2082, - ',', 1469, - '-', 2081, - '.', 2080, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, + '"', 1682, + '#', 2185, + '$', 1467, + '\'', 1685, + '(', 1464, + '+', 2079, + ',', 1466, + '-', 2078, + '.', 2077, + '0', 1622, + 'N', 2097, + '[', 1462, + ']', 1463, + '_', 2084, + '`', 1689, + 'f', 2087, + 'n', 2096, + 't', 2093, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(47); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == 'i') ADVANCE(2103); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2125); END_STATE(); case 48: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '-', 1486, - '`', 1692, - 'f', 1515, - 'n', 1519, - 't', 1520, - '{', 1498, + '"', 1682, + '#', 2185, + '$', 1467, + '\'', 1685, + '(', 1464, + '-', 1483, + '`', 1689, + 'f', 1512, + 'n', 1516, + 't', 1517, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(48); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1522); END_STATE(); case 49: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 2139, - '-', 2138, - '.', 2137, - '>', 1479, - 'N', 2154, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 2136, + '-', 2135, + '.', 2134, + '>', 1476, + 'N', 2151, + '_', 2138, + '`', 1689, + 'f', 2141, + 'n', 2150, + 't', 2147, ); if (lookahead == '\t' || lookahead == ' ') SKIP(49); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2174); + lookahead == 'i') ADVANCE(2157); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2171); END_STATE(); case 50: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 1492, - '.', 849, - '0', 864, - ':', 1713, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 944, - 't', 959, - '{', 1498, + '"', 1682, + '#', 2188, + '$', 1469, + '\'', 1685, + '(', 1464, + '+', 845, + '-', 1489, + '.', 846, + '0', 861, + ':', 1710, + 'N', 1017, + '[', 1462, + '_', 863, + '`', 1689, + 'f', 871, + 'n', 941, + 't', 956, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(869); + lookahead == 'i') ADVANCE(1022); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(866); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1043); END_STATE(); case 51: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '+', 1963, - ',', 1469, - '-', 1489, - '.', 1601, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + '+', 1958, + ',', 1466, + '-', 1486, + '.', 1597, + ':', 1460, + '=', 670, + ']', 1463, + '_', 1342, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(73); @@ -12488,27 +12520,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1607); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1370); END_STATE(); case 52: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '+', 1963, - ',', 1469, - '-', 1489, - '.', 1964, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + '+', 1958, + ',', 1466, + '-', 1486, + '.', 1959, + ':', 1460, + '=', 670, + ']', 1463, + '_', 1342, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(73); @@ -12518,49 +12550,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1607); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1370); END_STATE(); case 53: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1599, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + ',', 1466, + '-', 1484, + '.', 1598, + ':', 1460, + '=', 670, + 'E', 1332, + 'G', 1340, + 'K', 1340, + 'M', 1340, + 'P', 1340, + 'T', 1340, + ']', 1463, + 'd', 1345, + 'e', 1331, + 'g', 1339, + 'h', 1363, + 'k', 1339, + 'm', 1341, + 'n', 1365, + 'p', 1339, + 's', 1350, + 't', 1339, + 'u', 1365, + 'w', 1351, + '|', 1449, + 0xb5, 1365, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1654); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12568,29 +12600,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1983); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1370); END_STATE(); case 54: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1599, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + ',', 1466, + '-', 1484, + '.', 1598, + ':', 1460, + '=', 670, + ']', 1463, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1333); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12598,49 +12630,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1983); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1370); END_STATE(); case 55: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - '_', 1345, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + ',', 1466, + '-', 1484, + '.', 1962, + ':', 1460, + '=', 670, + 'E', 1332, + 'G', 1340, + 'K', 1340, + 'M', 1340, + 'P', 1340, + 'T', 1340, + ']', 1463, + '_', 1342, + 'd', 1345, + 'e', 1331, + 'g', 1339, + 'h', 1363, + 'k', 1339, + 'm', 1341, + 'n', 1365, + 'p', 1339, + 's', 1350, + 't', 1339, + 'u', 1365, + 'w', 1351, + '|', 1449, + 0xb5, 1365, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1654); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12648,49 +12680,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1607); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1370); END_STATE(); case 56: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + ',', 1466, + '-', 1484, + '.', 1962, + ':', 1460, + '=', 670, + 'E', 1332, + 'G', 1340, + 'K', 1340, + 'M', 1340, + 'P', 1340, + 'T', 1340, + ']', 1463, + 'd', 1345, + 'e', 1331, + 'g', 1339, + 'h', 1363, + 'k', 1339, + 'm', 1341, + 'n', 1365, + 'p', 1339, + 's', 1350, + 't', 1339, + 'u', 1365, + 'w', 1351, + '|', 1449, + 0xb5, 1365, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1654); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12698,48 +12730,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1983); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1370); END_STATE(); case 57: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1343, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1342, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + ',', 1466, + '-', 1484, + '.', 1962, + ':', 1460, + '=', 670, + 'E', 1340, + 'G', 1340, + 'K', 1340, + 'M', 1340, + 'P', 1340, + 'T', 1340, + ']', 1463, + 'd', 1345, + 'e', 1339, + 'g', 1339, + 'h', 1363, + 'k', 1339, + 'm', 1341, + 'n', 1365, + 'p', 1339, + 's', 1350, + 't', 1339, + 'u', 1365, + 'w', 1351, + '|', 1449, + 0xb5, 1365, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1654); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12747,30 +12779,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1983); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1370); END_STATE(); case 58: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + ',', 1466, + '-', 1484, + '.', 1962, + ':', 1460, + '=', 670, + ']', 1463, + '_', 1342, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1333); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12778,30 +12810,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1607); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1370); END_STATE(); case 59: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + ',', 1466, + '-', 1484, + '.', 1962, + ':', 1460, + '=', 670, + ']', 1463, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1333); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12809,24 +12841,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1983); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1370); END_STATE(); case 60: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + ',', 1466, + '-', 1484, + '.', 1962, + ':', 1460, + '=', 670, + ']', 1463, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); @@ -12837,29 +12869,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1983); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1370); END_STATE(); case 61: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1600, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + ',', 1466, + '-', 1484, + '.', 1596, + ':', 1460, + '=', 670, + ']', 1463, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1333); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12867,30 +12899,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1983); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1370); END_STATE(); case 62: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + ',', 1466, + '-', 1484, + '.', 1960, + ':', 1460, + '=', 670, + ']', 1463, + '_', 1342, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1333); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12898,30 +12930,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1607); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1370); END_STATE(); case 63: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + ',', 1466, + '-', 1484, + '.', 1960, + ':', 1460, + '=', 670, + ']', 1463, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1333); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12929,24 +12961,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1983); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1370); END_STATE(); case 64: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + ',', 1466, + '-', 1484, + '.', 1960, + ':', 1460, + '=', 670, + ']', 1463, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); @@ -12957,215 +12989,215 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1983); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1370); END_STATE(); case 65: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '#', 2185, + '$', 1467, + '(', 1558, + '.', 1601, + ';', 1448, + '_', 1810, + '\t', 1447, + ' ', 1447, + '+', 1788, + '-', 1788, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); case 66: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, + '#', 2185, + '$', 1467, + '(', 1558, + '.', 1601, + '=', 1793, + '_', 1810, + 'i', 1842, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1788); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); case 67: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - '=', 1796, - '_', 1813, - '|', 1452, + '#', 2185, + '$', 1467, + '(', 1558, + '.', 1601, + '=', 1793, + '_', 1810, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1788); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); case 68: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '#', 2185, + '$', 1467, + '(', 1558, + '.', 1812, + ';', 1448, + '_', 1810, + '\t', 1447, + ' ', 1447, + '+', 1788, + '-', 1788, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); case 69: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, + '#', 2185, + '$', 1467, + '(', 1558, + '.', 1812, + '=', 1793, + '_', 1810, + 'i', 1842, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1788); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); case 70: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - '=', 1796, - '_', 1813, - '|', 1452, + '#', 2185, + '$', 1467, + '(', 1558, + '.', 1812, + '=', 1793, + '_', 1810, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1788); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); case 71: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, + '#', 2185, + '$', 1467, + '(', 1464, + ')', 1465, + ',', 1466, + '-', 1484, '.', 312, - ':', 1463, - '=', 673, - '?', 1483, - '[', 1665, - ']', 1466, - '|', 1452, + ':', 1460, + '=', 670, + '?', 1480, + '[', 1662, + ']', 1463, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1370); END_STATE(); case 72: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, + '#', 2185, + '$', 1467, + '(', 1464, + ')', 1465, + ',', 1466, + '-', 1484, '.', 312, - ':', 1463, - '=', 673, - '[', 1465, - ']', 1466, - '|', 1452, + ':', 1460, + '=', 670, + '[', 1462, + ']', 1463, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1370); END_STATE(); case 73: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, + '#', 2185, + '$', 1467, + ')', 1465, '+', 314, - ',', 1469, - '-', 1490, + ',', 1466, + '-', 1487, '.', 313, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + ':', 1460, + '=', 670, + ']', 1463, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(73); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1370); END_STATE(); case 74: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - ',', 1469, - '-', 1487, + '#', 2185, + '$', 1467, + ')', 1465, + ',', 1466, + '-', 1484, '.', 312, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + ':', 1460, + '=', 670, + ']', 1463, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(74); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1370); END_STATE(); case 75: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '.', 337, + '#', 2185, + '$', 1467, + '.', 336, '=', 323, - 'i', 386, - '|', 1452, + 'i', 384, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(75); @@ -13173,13 +13205,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '-') ADVANCE(314); END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '$') ADVANCE(1467); + if (lookahead == '.') ADVANCE(336); if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(76); if (lookahead == '+' || @@ -13187,990 +13219,990 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 77: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1592, + ';', 1448, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + 0xb5, 1888, + '\t', 1447, + ' ', 1447, + 'B', 1650, + 'b', 1650, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 78: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1595, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2185, + '(', 1558, + '.', 1592, + ';', 1448, + '\t', 1447, + ' ', 1447, + 'E', 1816, + 'e', 1816, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 79: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1787, + ';', 1448, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + '_', 1810, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + 0xb5, 1888, + '\t', 1447, + ' ', 1447, + 'B', 1650, + 'b', 1650, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 80: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1787, + ';', 1448, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + 0xb5, 1888, + '\t', 1447, + ' ', 1447, + 'B', 1650, + 'b', 1650, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 81: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1787, + ';', 1448, + 'E', 1807, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1806, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + 0xb5, 1888, + '\t', 1447, + ' ', 1447, + 'B', 1650, + 'b', 1650, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 82: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2185, + '(', 1558, + '.', 1787, + ';', 1448, + '_', 1810, + '\t', 1447, + ' ', 1447, + 'E', 1816, + 'e', 1816, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 83: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2185, + '(', 1558, + '.', 1787, + ';', 1448, + '\t', 1447, + ' ', 1447, + 'E', 1816, + 'e', 1816, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 84: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '\t', 1450, - ' ', 1450, + '#', 2185, + '(', 1558, + '.', 1787, + ';', 1448, + '\t', 1447, + ' ', 1447, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 85: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - '.', 1594, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2185, + '(', 1558, + '.', 1591, + ';', 1448, + '\t', 1447, + ' ', 1447, + 'E', 1816, + 'e', 1816, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 86: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2185, + '(', 1558, + ';', 1448, + '_', 1810, + '\t', 1447, + ' ', 1447, + 'E', 1816, + 'e', 1816, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 87: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '#', 2185, + '(', 1558, + ';', 1448, + '\t', 1447, + ' ', 1447, + 'E', 1816, + 'e', 1816, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 88: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ';') ADVANCE(1451); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == ';') ADVANCE(1448); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1447); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 89: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - ',', 1469, + '#', 2185, + '(', 1464, + ')', 1465, + ',', 1466, '-', 297, - '.', 1723, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '@', 1481, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '{', 1498, - '}', 1499, + '.', 1720, + ':', 1460, + ';', 1448, + '=', 670, + '>', 1476, + '@', 1478, + '[', 1462, + ']', 1463, + 'c', 1348, + 'f', 1367, + 'i', 1356, + 'o', 1359, + 'v', 1344, + '{', 1495, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(90); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1370); END_STATE(); case 90: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - ',', 1469, + '#', 2185, + '(', 1464, + ')', 1465, + ',', 1466, '-', 297, - '.', 1723, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '{', 1498, - '}', 1499, + '.', 1720, + ':', 1460, + ';', 1448, + '=', 670, + '>', 1476, + '[', 1462, + ']', 1463, + 'c', 1348, + 'f', 1367, + 'i', 1356, + 'o', 1359, + 'v', 1344, + '{', 1495, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(90); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1370); END_STATE(); case 91: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, + '#', 2185, + '(', 1464, + ')', 1465, '-', 297, '.', 310, - ':', 1463, - ';', 1451, - '=', 675, - '>', 1479, - '[', 1465, - 'a', 421, + ':', 1460, + ';', 1448, + '=', 672, + '>', 1476, + '[', 1462, + 'a', 419, 'e', 288, - 'i', 387, + 'i', 385, 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 'x', 429, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(92); END_STATE(); case 92: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, + '#', 2185, + '(', 1464, + ')', 1465, '-', 297, - ':', 1463, - ';', 1451, - '=', 675, - '>', 1479, - '[', 1465, - 'a', 421, + ':', 1460, + ';', 1448, + '=', 672, + '>', 1476, + '[', 1462, + 'a', 419, 'e', 288, - 'i', 387, + 'i', 385, 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 'x', 429, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || lookahead == ' ') SKIP(92); END_STATE(); case 93: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - ',', 1469, - ':', 1463, - '=', 673, - ']', 1466, - 'i', 422, + '#', 2185, + ',', 1466, + ':', 1460, + '=', 670, + ']', 1463, + 'i', 420, ); if (lookahead == '\t' || lookahead == ' ') SKIP(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1666); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1663); END_STATE(); case 94: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '.', 1595, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2185, + '.', 1592, + '=', 1793, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'i', 1842, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '|', 1449, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 95: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '.', 1595, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2185, + '.', 1592, + '=', 1793, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '|', 1449, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(116); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1592); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == 'i') ADVANCE(1842); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 97: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1592); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(116); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 98: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2185, + '.', 1787, + '=', 1793, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + '_', 1810, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'i', 1842, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '|', 1449, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 99: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2185, + '.', 1787, + '=', 1793, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + '_', 1810, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '|', 1449, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(116); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 100: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2185, + '.', 1787, + '=', 1793, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'i', 1842, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '|', 1449, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 101: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2185, + '.', 1787, + '=', 1793, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '|', 1449, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(116); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 102: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2185, + '.', 1787, + '=', 1793, + 'E', 1807, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1806, + 'g', 1806, + 'h', 1875, + 'i', 1842, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '|', 1449, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 103: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '#', 2185, + '.', 1787, + '=', 1793, + 'E', 1807, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1806, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '|', 1449, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(116); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 104: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, + '#', 2185, + '.', 1787, + '=', 1793, + '_', 1810, + 'i', 1842, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1787); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == '_') ADVANCE(1810); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(116); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1787); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == 'i') ADVANCE(1842); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1787); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == 'i') ADVANCE(1842); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1787); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(116); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1787); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(116); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 110: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1591); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == 'i') ADVANCE(1842); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 111: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1591); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(116); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 112: ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - ':', 1713, - ';', 1451, - '=', 1729, + '#', 2185, + ':', 1710, + ';', 1448, + '=', 1726, 'e', 288, 'o', 290, - '|', 1452, - '}', 1499, - '\t', 1449, - ' ', 1449, + '|', 1449, + '}', 1496, + '\t', 1446, + ' ', 1446, ); END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == ':') ADVANCE(1710); + if (lookahead == '{') ADVANCE(1495); if (lookahead == '\t' || lookahead == ' ') SKIP(113); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ';') ADVANCE(1451); - if (lookahead == '=') ADVANCE(1729); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == ';') ADVANCE(1448); + if (lookahead == '=') ADVANCE(1726); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + lookahead == ' ') ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1444); END_STATE(); case 115: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '#') ADVANCE(2185); if (lookahead == '=') ADVANCE(323); - if (lookahead == 'i') ADVANCE(386); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == 'i') ADVANCE(384); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(115); END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '#') ADVANCE(2185); if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(116); END_STATE(); case 117: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == '_') ADVANCE(1810); + if (lookahead == 'i') ADVANCE(1842); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == '_') ADVANCE(1810); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(116); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 119: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == 'i') ADVANCE(1842); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(115); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == 'i') ADVANCE(1842); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(116); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 122: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '=') ADVANCE(1793); + if (lookahead == '|') ADVANCE(1449); if (lookahead == '\t' || lookahead == ' ') SKIP(116); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 123: - if (lookahead == '\n') ADVANCE(1448); + if (lookahead == '\n') ADVANCE(1445); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2191); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2188); + if (lookahead == ':') ADVANCE(1710); + if (lookahead == '{') ADVANCE(1495); if (lookahead == '\t' || lookahead == ' ') SKIP(113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 124: ADVANCE_MAP( - '\n', 1707, - '\r', 1707, - '!', 1719, - '#', 2188, - '(', 1561, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1722, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1481, - '[', 1465, - ']', 1466, - 'a', 421, - 'b', 400, + '\n', 1704, + '\r', 1704, + '!', 1716, + '#', 2185, + '(', 1558, + '*', 1510, + '+', 1575, + '-', 1492, + '.', 1719, + '/', 1565, + ':', 1710, + ';', 1448, + '<', 1547, + '=', 671, + '>', 1477, + '?', 1714, + '@', 1478, + '[', 1462, + ']', 1463, + 'a', 419, + 'b', 398, 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, - '\t', 1708, - ' ', 1708, - 0x0b, 1707, - '\f', 1707, - ',', 1707, + 's', 483, + 'x', 429, + '|', 1449, + '}', 1496, + '\t', 1705, + ' ', 1705, + 0x0b, 1704, + '\f', 1704, + ',', 1704, ); END_STATE(); case 125: ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, + '!', 1715, + '"', 1682, + '#', 2185, '$', 181, - '\'', 1688, - '.', 1720, - ';', 1716, - '?', 1717, - '`', 1692, + '\'', 1685, + '.', 1717, + ';', 1713, + '?', 1714, + '`', 1689, '\t', 125, ' ', 125, ); @@ -14178,15 +14210,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 126: ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, + '!', 1715, + '"', 1682, + '#', 2185, '$', 181, - '\'', 1688, - '.', 1720, - ';', 1716, - '?', 1717, - '`', 1692, + '\'', 1685, + '.', 1717, + ';', 1713, + '?', 1714, + '`', 1689, '\t', 125, ' ', 125, ); @@ -14197,643 +14229,622 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1730); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1727); END_STATE(); case 127: ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, + '!', 1715, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 699, '-', 299, - '.', 1726, - '?', 1717, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '.', 1723, + '?', 1714, + 'I', 806, + 'N', 802, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, ); if (lookahead == '\t' || lookahead == ' ') SKIP(127); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); case 128: ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, + '!', 1715, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 699, '-', 299, - '.', 1726, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '.', 1723, + 'I', 806, + 'N', 802, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, ); if (lookahead == '\t' || lookahead == ' ') SKIP(128); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); case 129: ADVANCE_MAP( - '!', 1718, - '#', 2188, - ',', 1707, - '.', 1723, - ';', 1716, - '?', 1717, - ']', 1466, - '\t', 1710, - ' ', 1710, + '!', 1715, + '#', 2185, + ',', 1704, + '.', 1720, + ';', 1713, + '?', 1714, + ']', 1463, + '\t', 1707, + ' ', 1707, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1708); END_STATE(); case 130: ADVANCE_MAP( - '!', 1718, - '#', 2188, - '.', 1722, - ':', 1713, - '>', 1479, - '?', 1717, - 'E', 333, - 'G', 333, - 'K', 333, - 'M', 333, - 'P', 333, - 'T', 333, - ']', 1466, - 'd', 346, - 'e', 332, - 'g', 332, - 'h', 451, - 'k', 332, - 'm', 335, - 'n', 469, - 'p', 332, - 's', 376, - 't', 332, - 'u', 469, - 'w', 408, - '}', 1499, - 0xb5, 469, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '!', 1715, + '#', 2185, + '.', 1719, + ':', 1710, + '>', 1476, + '?', 1714, + ']', 1463, + '}', 1496, + '\t', 1709, + ' ', 1709, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); END_STATE(); case 131: ADVANCE_MAP( - '!', 1718, - '#', 2188, - '.', 1723, - ':', 1463, - '>', 1479, - '?', 1717, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, + '!', 1715, + '#', 2185, + '.', 1720, + ':', 1460, + '>', 1476, + '?', 1714, + ']', 1463, + '}', 1496, + '\t', 1709, + ' ', 1709, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); END_STATE(); case 132: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1790, + '#', 2185, + '$', 1467, + '(', 1558, + '*', 1509, + '+', 1573, + '-', 1490, + '.', 1601, + '/', 1564, + '<', 1547, + '=', 1791, + '>', 1477, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1863, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); case 133: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1790, + '#', 2185, + '$', 1467, + '(', 1558, + '*', 1509, + '+', 1573, + '-', 1490, + '.', 1812, + '/', 1564, + '<', 1547, + '=', 1791, + '>', 1477, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1863, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); case 134: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1592, + '/', 1564, + '<', 1547, + '=', 1791, + '>', 1477, + 'B', 1650, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1802, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1876, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 135: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1592, + '/', 1564, + '<', 1547, + '=', 1791, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1813, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, ); if (lookahead == '\t' || lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 136: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + '<', 1547, + '=', 1791, + '>', 1477, + 'B', 1650, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + '_', 1810, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1802, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1876, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 137: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + '<', 1547, + '=', 1791, + '>', 1477, + 'B', 1650, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1802, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1876, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 138: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1808, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + '<', 1547, + '=', 1791, + '>', 1477, + 'B', 1650, + 'E', 1807, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1805, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1876, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 139: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + '<', 1547, + '=', 1791, + '>', 1477, + 'E', 1816, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1813, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, ); if (lookahead == '\t' || lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 140: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + '<', 1547, + '=', 1791, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1813, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, ); if (lookahead == '\t' || lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 141: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + '<', 1547, + '=', 1791, + '>', 1477, + 'a', 1862, + 'b', 1849, + 'e', 1863, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, ); if (lookahead == '\t' || lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 142: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1591, + '/', 1564, + '<', 1547, + '=', 1791, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1813, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, ); if (lookahead == '\t' || lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 143: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + '<', 1547, + '=', 1791, + '>', 1477, + 'E', 1816, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1813, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, ); if (lookahead == '\t' || lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 144: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + '<', 1547, + '=', 1791, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1813, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, ); if (lookahead == '\t' || lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 145: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1790, + '#', 2185, + '(', 1558, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + '<', 1547, + '=', 1791, + '>', 1477, + 'a', 1862, + 'b', 1849, + 'e', 1863, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1876, + 's', 1896, + 'x', 1868, ); if (lookahead == '\t' || lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 146: ADVANCE_MAP( '!', 320, - '#', 2188, - '$', 1470, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - '<', 1550, + '#', 2185, + '$', 1467, + '*', 1509, + '+', 1574, + '-', 1491, + '.', 336, + '/', 1564, + '<', 1547, '=', 321, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, + '>', 1477, + 'a', 419, + 'b', 398, + 'e', 423, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, + 'o', 449, + 's', 483, + 'x', 429, ); if (lookahead == '\t' || lookahead == ' ') SKIP(146); @@ -14841,715 +14852,715 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 147: ADVANCE_MAP( '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, + '#', 2185, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + '<', 1547, '=', 321, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, + '>', 1477, + 'a', 419, + 'b', 398, + 'e', 423, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, + 'o', 449, + 's', 483, + 'x', 429, ); if (lookahead == '\t' || lookahead == ' ') SKIP(147); END_STATE(); case 148: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1561, - '+', 2000, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1558, + '+', 1997, '-', 307, - '.', 1998, - '0', 1624, - ';', 1716, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '.', 1995, + '0', 1621, + ';', 1713, + 'N', 2044, + '[', 1462, + '_', 2009, + '`', 1689, + 'f', 2012, + 'n', 2040, + 't', 2027, + '{', 1495, '\t', 151, ' ', 151, - 'I', 2051, - 'i', 2051, + 'I', 2048, + 'i', 2048, ); if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2067); END_STATE(); case 149: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 1580, - '-', 1491, - '.', 701, - '0', 1628, - ':', 1463, - '<', 1141, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - '\t', 1712, - ' ', 1712, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 1577, + '-', 1488, + '.', 698, + '0', 1625, + ':', 1460, + '<', 1138, + '>', 1476, + '@', 1478, + 'I', 806, + 'N', 802, + ']', 1463, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, + '}', 1496, + '\t', 1709, + ' ', 1709, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == ',') ADVANCE(1704); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); case 150: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 1997, '-', 307, - '.', 1998, - '0', 1624, - ':', 1713, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '.', 1995, + '0', 1621, + ':', 1710, + 'N', 2044, + '[', 1462, + '_', 2009, + '`', 1689, + 'f', 2012, + 'n', 2040, + 't', 2027, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(150); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2048); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2067); END_STATE(); case 151: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 1997, '-', 307, - '.', 1998, - '0', 1624, - ';', 1716, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '.', 1995, + '0', 1621, + ';', 1713, + 'N', 2044, + '[', 1462, + '_', 2009, + '`', 1689, + 'f', 2012, + 'n', 2040, + 't', 2027, + '{', 1495, '\t', 151, ' ', 151, - 'I', 2051, - 'i', 2051, + 'I', 2048, + 'i', 2048, ); if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2067); END_STATE(); case 152: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 1997, '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '.', 1995, + '0', 1621, + 'N', 2044, + '[', 1462, + '_', 2009, + '`', 1689, + 'f', 2012, + 'n', 2040, + 't', 2027, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2048); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2067); END_STATE(); case 153: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 1997, '-', 307, - '.', 1998, - ':', 1713, - 'N', 2047, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, + '.', 1995, + ':', 1710, + 'N', 2044, + '_', 2009, + '`', 1689, + 'f', 2012, + 'n', 2040, + 't', 2027, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2048); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2067); END_STATE(); case 154: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 1997, '-', 307, - '.', 1998, - 'N', 2047, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, + '.', 1995, + 'N', 2044, + '_', 2009, + '`', 1689, + 'f', 2012, + 'n', 2040, + 't', 2027, ); if (lookahead == '\t' || lookahead == ' ') SKIP(154); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2048); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2067); END_STATE(); case 155: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2082, - '-', 2081, - '.', 2083, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, - '\t', 1712, - ' ', 1712, - 'I', 2106, - 'i', 2106, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 2079, + '-', 2078, + '.', 2080, + '0', 1622, + 'N', 2097, + '[', 1462, + ']', 1463, + '_', 2084, + '`', 1689, + 'f', 2087, + 'n', 2096, + 't', 2093, + '{', 1495, + '\t', 1709, + ' ', 1709, + 'I', 2103, + 'i', 2103, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == ',') ADVANCE(1704); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2125); END_STATE(); case 156: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1471); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '`') ADVANCE(1692); + if (lookahead == '"') ADVANCE(1682); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '$') ADVANCE(1468); + if (lookahead == '\'') ADVANCE(1685); + if (lookahead == '(') ADVANCE(1464); + if (lookahead == '`') ADVANCE(1689); if (lookahead == '\t' || lookahead == ' ') SKIP(156); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); END_STATE(); case 157: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, - ',', 1707, + '"', 1682, + '#', 2185, + '$', 1467, + '\'', 1685, + '(', 1464, + '+', 1997, + ',', 1704, '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 1501, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '}', 1499, - '\t', 1709, - ' ', 1709, - 'I', 2051, - 'i', 2051, + '.', 1995, + '0', 1621, + 'N', 2044, + '[', 1462, + '_', 1498, + '`', 1689, + 'f', 2012, + 'n', 2040, + 't', 2027, + '{', 1495, + '}', 1496, + '\t', 1706, + ' ', 1706, + 'I', 2048, + 'i', 2048, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1704); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2067); END_STATE(); case 158: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, + '"', 1682, + '#', 2185, + '$', 1467, + '\'', 1685, + '(', 1464, + '+', 1997, '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '.', 1995, + '0', 1621, + 'N', 2044, + '[', 1462, + '_', 2009, + '`', 1689, + 'f', 2012, + 'n', 2040, + 't', 2027, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(158); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2048); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2067); END_STATE(); case 159: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2082, - '-', 2081, - '.', 2080, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, - '\t', 1712, - ' ', 1712, - 'I', 2106, - 'i', 2106, + '"', 1682, + '#', 2185, + '$', 1467, + '\'', 1685, + '(', 1464, + '+', 2079, + '-', 2078, + '.', 2077, + '0', 1622, + 'N', 2097, + '[', 1462, + ']', 1463, + '_', 2084, + '`', 1689, + 'f', 2087, + 'n', 2096, + 't', 2093, + '{', 1495, + '\t', 1709, + ' ', 1709, + 'I', 2103, + 'i', 2103, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == ',') ADVANCE(1704); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1638); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2125); END_STATE(); case 160: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1561, - '+', 702, + '"', 1682, + '#', 2185, + '\'', 1685, + '(', 1558, + '+', 699, '-', 307, - '.', 718, - ':', 1463, - '>', 1479, - 'I', 809, - 'N', 805, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - '\t', 1712, - ' ', 1712, + '.', 715, + ':', 1460, + '>', 1476, + 'I', 806, + 'N', 802, + ']', 1463, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, + '}', 1496, + '\t', 1709, + ' ', 1709, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); case 161: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 699, '-', 307, - '.', 718, - ':', 1713, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '.', 715, + ':', 1710, + 'I', 806, + 'N', 802, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, ); if (lookahead == '\t' || lookahead == ' ') SKIP(161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); case 162: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 699, '-', 299, - '.', 1726, - '?', 1717, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '.', 1723, + '?', 1714, + 'I', 806, + 'N', 802, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, ); if (lookahead == '\t' || lookahead == ' ') SKIP(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); case 163: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 699, '-', 299, - '.', 1726, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '.', 1723, + 'I', 806, + 'N', 802, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, ); if (lookahead == '\t' || lookahead == ' ') SKIP(163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); case 164: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 699, '-', 299, - '.', 718, - ':', 1713, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '.', 715, + ':', 1710, + 'I', 806, + 'N', 802, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); case 165: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 699, '-', 299, - '.', 718, - '=', 1729, - 'I', 1443, - 'N', 1438, - '_', 1379, - '`', 1692, - 'a', 1403, - 'c', 1380, - 'd', 1387, - 'e', 1408, - 'f', 1381, - 'i', 1378, - 'l', 1394, - 'm', 1383, - 'n', 1434, - 't', 1417, - 'u', 1423, - 'w', 1400, + '.', 715, + '=', 1726, + 'I', 1440, + 'N', 1435, + '_', 1376, + '`', 1689, + 'a', 1400, + 'c', 1377, + 'd', 1384, + 'e', 1405, + 'f', 1378, + 'i', 1375, + 'l', 1391, + 'm', 1380, + 'n', 1431, + 't', 1414, + 'u', 1420, + 'w', 1397, ); if (lookahead == '\t' || lookahead == ' ') SKIP(166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1379); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1376); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1444); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); case 166: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 699, '-', 299, - '.', 718, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '.', 715, + 'I', 806, + 'N', 802, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, ); if (lookahead == '\t' || lookahead == ' ') SKIP(166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); case 167: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 1596, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 699, + '-', 1779, + '.', 1593, + 'E', 706, + 'G', 711, + 'I', 806, + 'K', 711, + 'M', 711, + 'N', 802, + 'P', 711, + 'T', 711, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 719, + 'e', 705, + 'f', 720, + 'g', 710, + 'h', 771, + 'i', 712, + 'k', 710, + 'l', 736, + 'm', 707, + 'n', 779, + 'p', 710, + 's', 737, + 't', 709, + 'u', 781, + 'w', 747, + 0xb5, 780, ); if (lookahead == '\t' || lookahead == ' ') SKIP(166); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1650); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); case 168: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 718, - 'I', 809, - 'N', 805, - '[', 1665, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 699, + '-', 1779, + '.', 715, + 'I', 806, + 'N', 802, + '[', 1662, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, ); if (lookahead == '\t' || lookahead == ' ') SKIP(166); @@ -15558,478 +15569,478 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); case 169: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 699, + '-', 1779, + '.', 697, + 'E', 706, + 'G', 711, + 'I', 806, + 'K', 711, + 'M', 711, + 'N', 802, + 'P', 711, + 'T', 711, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 719, + 'e', 705, + 'f', 720, + 'g', 710, + 'h', 771, + 'i', 712, + 'k', 710, + 'l', 736, + 'm', 707, + 'n', 779, + 'p', 710, + 's', 737, + 't', 709, + 'u', 781, + 'w', 747, + 0xb5, 780, ); if (lookahead == '\t' || lookahead == ' ') SKIP(166); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1650); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); case 170: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 720, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 699, + '-', 1779, + '.', 697, + 'E', 706, + 'G', 711, + 'I', 806, + 'K', 711, + 'M', 711, + 'N', 802, + 'P', 711, + 'T', 711, + '_', 717, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 719, + 'e', 705, + 'f', 720, + 'g', 710, + 'h', 771, + 'i', 712, + 'k', 710, + 'l', 736, + 'm', 707, + 'n', 779, + 'p', 710, + 's', 737, + 't', 709, + 'u', 781, + 'w', 747, + 0xb5, 780, ); if (lookahead == '\t' || lookahead == ' ') SKIP(166); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1650); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == '^') ADVANCE(1931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); case 171: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 714, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 711, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 699, + '-', 1779, + '.', 697, + 'E', 711, + 'G', 711, + 'I', 806, + 'K', 711, + 'M', 711, + 'N', 802, + 'P', 711, + 'T', 711, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 719, + 'e', 708, + 'f', 720, + 'g', 710, + 'h', 771, + 'i', 712, + 'k', 710, + 'l', 736, + 'm', 707, + 'n', 779, + 'p', 710, + 's', 737, + 't', 709, + 'u', 781, + 'w', 747, + 0xb5, 780, ); if (lookahead == '\t' || lookahead == ' ') SKIP(166); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1650); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); case 172: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 2139, - '-', 2138, - '.', 2137, - '>', 1479, - 'N', 2154, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, - '\t', 1712, - ' ', 1712, - 'I', 2160, - 'i', 2160, + '"', 1682, + '#', 2185, + '\'', 1685, + '+', 2136, + '-', 2135, + '.', 2134, + '>', 1476, + 'N', 2151, + '_', 2138, + '`', 1689, + 'f', 2141, + 'n', 2150, + 't', 2147, + '\t', 1709, + ' ', 1709, + 'I', 2157, + 'i', 2157, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2174); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2171); END_STATE(); case 173: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '`') ADVANCE(1692); + if (lookahead == '"') ADVANCE(1682); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '\'') ADVANCE(1685); + if (lookahead == '`') ADVANCE(1689); if (lookahead == '\t' || lookahead == ' ') SKIP(173); END_STATE(); case 174: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - '0', 865, - ':', 1713, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, - '{', 1498, + '"', 1682, + '#', 2188, + '$', 1469, + '\'', 1685, + '(', 1464, + '+', 845, + '-', 844, + '.', 846, + '0', 862, + ':', 1710, + 'N', 1017, + '[', 1462, + '_', 863, + '`', 1689, + 'f', 871, + 'n', 1007, + 't', 956, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(150); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1022); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2067); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(869); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1043); END_STATE(); case 175: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - '0', 865, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, - '{', 1498, + '"', 1682, + '#', 2188, + '$', 1469, + '\'', 1685, + '(', 1464, + '+', 845, + '-', 844, + '.', 846, + '0', 862, + 'N', 1017, + '[', 1462, + '_', 863, + '`', 1689, + 'f', 871, + 'n', 1007, + 't', 956, + '{', 1495, ); if (lookahead == '\t' || lookahead == ' ') SKIP(152); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1022); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2067); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(869); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1043); END_STATE(); case 176: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - ':', 1713, - 'N', 1020, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, + '"', 1682, + '#', 2188, + '$', 1469, + '\'', 1685, + '(', 1464, + '+', 845, + '-', 844, + '.', 846, + ':', 1710, + 'N', 1017, + '_', 863, + '`', 1689, + 'f', 871, + 'n', 1007, + 't', 956, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1022); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2067); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1043); END_STATE(); case 177: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - 'N', 1020, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, + '"', 1682, + '#', 2188, + '$', 1469, + '\'', 1685, + '(', 1464, + '+', 845, + '-', 844, + '.', 846, + 'N', 1017, + '_', 863, + '`', 1689, + 'f', 871, + 'n', 1007, + 't', 956, ); if (lookahead == '\t' || lookahead == ' ') SKIP(154); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1022); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2067); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1043); END_STATE(); case 178: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '\'', 1688, - '+', 848, - '-', 847, - '.', 866, - ':', 1713, - 'I', 1025, - 'N', 1020, - '_', 866, - '`', 1692, - 'a', 932, - 'c', 879, - 'd', 895, - 'e', 935, - 'f', 873, - 'i', 861, - 'l', 905, - 'm', 881, - 'n', 1010, - 't', 964, - 'u', 980, - 'w', 916, + '"', 1682, + '#', 2188, + '\'', 1685, + '+', 845, + '-', 844, + '.', 863, + ':', 1710, + 'I', 1022, + 'N', 1017, + '_', 863, + '`', 1689, + 'a', 929, + 'c', 876, + 'd', 892, + 'e', 932, + 'f', 870, + 'i', 858, + 'l', 902, + 'm', 878, + 'n', 1007, + 't', 961, + 'u', 977, + 'w', 913, ); if (lookahead == '\t' || lookahead == ' ') SKIP(161); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '^') ADVANCE(1043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 179: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '\'', 1688, - '+', 848, - '-', 840, - '.', 866, - ':', 1713, - 'I', 1025, - 'N', 1020, - '_', 866, - '`', 1692, - 'a', 932, - 'c', 879, - 'd', 895, - 'e', 935, - 'f', 873, - 'i', 861, - 'l', 905, - 'm', 881, - 'n', 1010, - 't', 964, - 'u', 980, - 'w', 916, + '"', 1682, + '#', 2188, + '\'', 1685, + '+', 845, + '-', 837, + '.', 863, + ':', 1710, + 'I', 1022, + 'N', 1017, + '_', 863, + '`', 1689, + 'a', 929, + 'c', 876, + 'd', 892, + 'e', 932, + 'f', 870, + 'i', 858, + 'l', 902, + 'm', 878, + 'n', 1007, + 't', 961, + 'u', 977, + 'w', 913, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '^') ADVANCE(1043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 180: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(1687); - if (lookahead == '\\') ADVANCE(512); + if (lookahead == '"') ADVANCE(1682); + if (lookahead == '#') ADVANCE(1684); + if (lookahead == '\\') ADVANCE(509); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1686); - if (lookahead != 0) ADVANCE(1687); + lookahead == ' ') ADVANCE(1683); + if (lookahead != 0) ADVANCE(1684); END_STATE(); case 181: - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + if (lookahead == '"') ADVANCE(1699); + if (lookahead == '\'') ADVANCE(1698); END_STATE(); case 182: - if (lookahead == '"') ADVANCE(1703); - if (lookahead == '#') ADVANCE(1698); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '\\') ADVANCE(507); + if (lookahead == '"') ADVANCE(1700); + if (lookahead == '#') ADVANCE(1695); + if (lookahead == '(') ADVANCE(1464); + if (lookahead == '\\') ADVANCE(504); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1697); - if (lookahead != 0) ADVANCE(1698); + lookahead == ' ') ADVANCE(1694); + if (lookahead != 0) ADVANCE(1695); END_STATE(); case 183: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1604); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '$') ADVANCE(1467); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == '.') ADVANCE(1601); + if (lookahead == '_') ADVANCE(1810); + if (lookahead == '{') ADVANCE(1495); if (lookahead == '\t' || lookahead == ' ') SKIP(192); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1788); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); case 184: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1603, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2185, + '$', 1467, + '(', 1558, + '.', 1600, + ']', 1463, + '_', 1941, + '}', 1496, + '\t', 1709, + ' ', 1709, + '+', 1935, + '-', 1935, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16037,42 +16048,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 185: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1972, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1963, - '-', 1963, + '#', 2185, + '$', 1467, + '(', 1558, + '.', 1969, + '_', 1972, + '}', 1496, + '\t', 1709, + ' ', 1709, + '+', 1958, + '-', 1958, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1983); END_STATE(); case 186: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1945, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2185, + '$', 1467, + '(', 1558, + '.', 1942, + ']', 1463, + '_', 1941, + '\t', 1709, + ' ', 1709, + '+', 1935, + '-', 1935, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16080,24 +16091,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 187: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1936, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2185, + '$', 1467, + '(', 1558, + '.', 1933, + ']', 1463, + '_', 1941, + '\t', 1709, + ' ', 1709, + '+', 1935, + '-', 1935, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16105,136 +16116,136 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 188: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1602, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1963, - '-', 1963, + '#', 2185, + '$', 1467, + '(', 1558, + '.', 1599, + '_', 1972, + '}', 1496, + '\t', 1709, + ' ', 1709, + '+', 1958, + '-', 1958, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1983); END_STATE(); case 189: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '$') ADVANCE(1467); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == '.') ADVANCE(1812); + if (lookahead == '_') ADVANCE(1810); + if (lookahead == '{') ADVANCE(1495); if (lookahead == '\t' || lookahead == ' ') SKIP(192); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1788); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); case 190: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1598, - '[', 1665, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2185, + '$', 1467, + '(', 1558, + '.', 1595, + '[', 1662, + ']', 1463, + '_', 1941, + '}', 1496, + '\t', 1709, + ' ', 1709, + '+', 1935, + '-', 1935, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 191: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == ']') ADVANCE(1466); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '$') ADVANCE(1467); + if (lookahead == '.') ADVANCE(336); + if (lookahead == ']') ADVANCE(1463); if (lookahead == '\t' || lookahead == ' ') SKIP(191); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); case 192: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '$') ADVANCE(1467); + if (lookahead == '.') ADVANCE(336); + if (lookahead == '{') ADVANCE(1495); if (lookahead == '\t' || lookahead == ' ') SKIP(192); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); case 193: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '$') ADVANCE(1467); + if (lookahead == '.') ADVANCE(336); if (lookahead == '\t' || lookahead == ' ') SKIP(193); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); case 194: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == ':') ADVANCE(1713); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '$') ADVANCE(1467); + if (lookahead == ':') ADVANCE(1710); if (lookahead == '\t' || lookahead == ' ') SKIP(194); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1370); END_STATE(); case 195: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1592, + 'E', 1937, + 'G', 1939, + 'K', 1939, + 'M', 1939, + 'P', 1939, + 'T', 1939, + ']', 1463, + 'd', 1946, + 'e', 1936, + 'g', 1938, + 'h', 1952, + 'k', 1938, + 'm', 1940, + 'n', 1953, + 'p', 1938, + 's', 1949, + 't', 1938, + 'u', 1953, + 'w', 1950, + '}', 1496, + 0xb5, 1953, + '\t', 1709, + ' ', 1709, + 'B', 1650, + 'b', 1650, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16242,40 +16253,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 196: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1592, + 'E', 1937, + 'G', 1939, + 'K', 1939, + 'M', 1939, + 'P', 1939, + 'T', 1939, + ']', 1463, + 'd', 1946, + 'e', 1936, + 'g', 1938, + 'h', 1952, + 'k', 1938, + 'm', 1940, + 'n', 1953, + 'p', 1938, + 's', 1949, + 't', 1938, + 'u', 1953, + 'w', 1950, + 0xb5, 1953, + '\t', 1709, + ' ', 1709, + 'B', 1650, + 'b', 1650, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16283,56 +16294,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 197: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1592, + 'E', 1964, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + 'd', 1973, + 'e', 1963, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + '}', 1496, + 0xb5, 1980, + '\t', 1709, + ' ', 1709, + 'B', 1650, + 'b', 1650, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1704); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 198: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2185, + '(', 1558, + '.', 1592, + ']', 1463, + '}', 1496, + '\t', 1709, + ' ', 1709, + 'E', 1944, + 'e', 1944, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16340,21 +16351,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 199: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2185, + '(', 1558, + '.', 1592, + ']', 1463, + '\t', 1709, + ' ', 1709, + 'E', 1944, + 'e', 1944, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16362,37 +16373,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 200: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2185, + '(', 1558, + '.', 1592, + '}', 1496, + '\t', 1709, + ' ', 1709, + 'E', 1970, + 'e', 1970, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1704); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 201: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1594, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2185, + '(', 1558, + '.', 1591, + ']', 1463, + '}', 1496, + '\t', 1709, + ' ', 1709, + 'E', 1944, + 'e', 1944, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16400,58 +16411,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 202: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1594, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2185, + '(', 1558, + '.', 1591, + '}', 1496, + '\t', 1709, + ' ', 1709, + 'E', 1970, + 'e', 1970, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1704); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 203: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - '_', 1944, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1932, + 'E', 1937, + 'G', 1939, + 'K', 1939, + 'M', 1939, + 'P', 1939, + 'T', 1939, + ']', 1463, + '_', 1941, + 'd', 1946, + 'e', 1936, + 'g', 1938, + 'h', 1952, + 'k', 1938, + 'm', 1940, + 'n', 1953, + 'p', 1938, + 's', 1949, + 't', 1938, + 'u', 1953, + 'w', 1950, + '}', 1496, + 0xb5, 1953, + '\t', 1709, + ' ', 1709, + 'B', 1650, + 'b', 1650, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16460,42 +16471,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 204: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - '_', 1944, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1932, + 'E', 1937, + 'G', 1939, + 'K', 1939, + 'M', 1939, + 'P', 1939, + 'T', 1939, + ']', 1463, + '_', 1941, + 'd', 1946, + 'e', 1936, + 'g', 1938, + 'h', 1952, + 'k', 1938, + 'm', 1940, + 'n', 1953, + 'p', 1938, + 's', 1949, + 't', 1938, + 'u', 1953, + 'w', 1950, + 0xb5, 1953, + '\t', 1709, + ' ', 1709, + 'B', 1650, + 'b', 1650, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16504,41 +16515,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 205: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1932, + 'E', 1937, + 'G', 1939, + 'K', 1939, + 'M', 1939, + 'P', 1939, + 'T', 1939, + ']', 1463, + 'd', 1946, + 'e', 1936, + 'g', 1938, + 'h', 1952, + 'k', 1938, + 'm', 1940, + 'n', 1953, + 'p', 1938, + 's', 1949, + 't', 1938, + 'u', 1953, + 'w', 1950, + '}', 1496, + 0xb5, 1953, + '\t', 1709, + ' ', 1709, + 'B', 1650, + 'b', 1650, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16546,40 +16557,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 206: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1932, + 'E', 1937, + 'G', 1939, + 'K', 1939, + 'M', 1939, + 'P', 1939, + 'T', 1939, + ']', 1463, + 'd', 1946, + 'e', 1936, + 'g', 1938, + 'h', 1952, + 'k', 1938, + 'm', 1940, + 'n', 1953, + 'p', 1938, + 's', 1949, + 't', 1938, + 'u', 1953, + 'w', 1950, + 0xb5, 1953, + '\t', 1709, + ' ', 1709, + 'B', 1650, + 'b', 1650, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16587,41 +16598,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 207: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1942, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1941, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1932, + 'E', 1939, + 'G', 1939, + 'K', 1939, + 'M', 1939, + 'P', 1939, + 'T', 1939, + ']', 1463, + 'd', 1946, + 'e', 1938, + 'g', 1938, + 'h', 1952, + 'k', 1938, + 'm', 1940, + 'n', 1953, + 'p', 1938, + 's', 1949, + 't', 1938, + 'u', 1953, + 'w', 1950, + '}', 1496, + 0xb5, 1953, + '\t', 1709, + ' ', 1709, + 'B', 1650, + 'b', 1650, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16629,40 +16640,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 208: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1942, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1941, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1932, + 'E', 1939, + 'G', 1939, + 'K', 1939, + 'M', 1939, + 'P', 1939, + 'T', 1939, + ']', 1463, + 'd', 1946, + 'e', 1938, + 'g', 1938, + 'h', 1952, + 'k', 1938, + 'm', 1940, + 'n', 1953, + 'p', 1938, + 's', 1949, + 't', 1938, + 'u', 1953, + 'w', 1950, + 0xb5, 1953, + '\t', 1709, + ' ', 1709, + 'B', 1650, + 'b', 1650, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16670,24 +16681,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 209: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, - ); + '#', 2185, + '(', 1558, + '.', 1932, + ']', 1463, + '_', 1941, + '}', 1496, + '\t', 1709, + ' ', 1709, + 'E', 1944, + 'e', 1944, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16696,23 +16707,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 210: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2185, + '(', 1558, + '.', 1932, + ']', 1463, + '_', 1941, + '\t', 1709, + ' ', 1709, + 'E', 1944, + 'e', 1944, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16721,22 +16732,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 211: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2185, + '(', 1558, + '.', 1932, + ']', 1463, + '}', 1496, + '\t', 1709, + ' ', 1709, + 'E', 1944, + 'e', 1944, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16744,18 +16755,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 212: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1935); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '}') ADVANCE(1499); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == '.') ADVANCE(1932); + if (lookahead == ']') ADVANCE(1463); + if (lookahead == '}') ADVANCE(1496); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1709); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16763,21 +16774,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 213: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2185, + '(', 1558, + '.', 1932, + ']', 1463, + '\t', 1709, + ' ', 1709, + 'E', 1944, + 'e', 1944, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16785,17 +16796,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 214: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1935); - if (lookahead == ']') ADVANCE(1466); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == '.') ADVANCE(1932); + if (lookahead == ']') ADVANCE(1463); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1709); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16803,23 +16814,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 215: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1937, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2185, + '(', 1558, + '.', 1934, + ']', 1463, + '_', 1941, + '\t', 1709, + ' ', 1709, + 'E', 1944, + 'e', 1944, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16828,21 +16839,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 216: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1937, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2185, + '(', 1558, + '.', 1934, + ']', 1463, + '\t', 1709, + ' ', 1709, + 'E', 1944, + 'e', 1944, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16850,17 +16861,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 217: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1937); - if (lookahead == ']') ADVANCE(1466); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == '.') ADVANCE(1934); + if (lookahead == ']') ADVANCE(1463); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1709); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16868,21 +16879,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 218: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1597, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2185, + '(', 1558, + '.', 1594, + ']', 1463, + '\t', 1709, + ' ', 1709, + 'E', 1944, + 'e', 1944, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16890,169 +16901,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 219: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - '_', 1975, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1957, + 'E', 1964, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + '_', 1972, + 'd', 1973, + 'e', 1963, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + '}', 1496, + 0xb5, 1980, + '\t', 1709, + ' ', 1709, + 'B', 1650, + 'b', 1650, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 220: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1957, + 'E', 1964, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + 'd', 1973, + 'e', 1963, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + '}', 1496, + 0xb5, 1980, + '\t', 1709, + ' ', 1709, + 'B', 1650, + 'b', 1650, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1704); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 221: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1968, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + '.', 1957, + 'E', 1966, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + 'd', 1973, + 'e', 1965, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + '}', 1496, + 0xb5, 1980, + '\t', 1709, + ' ', 1709, + 'B', 1650, + 'b', 1650, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1704); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 222: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2185, + '(', 1558, + '.', 1957, + '_', 1972, + '}', 1496, + '\t', 1709, + ' ', 1709, + 'E', 1970, + 'e', 1970, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 223: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2185, + '(', 1558, + '.', 1957, + '}', 1496, + '\t', 1709, + ' ', 1709, + 'E', 1970, + 'e', 1970, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1704); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 224: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1960); - if (lookahead == '}') ADVANCE(1499); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == '.') ADVANCE(1957); + if (lookahead == '}') ADVANCE(1496); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1709); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1704); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 225: ADVANCE_MAP( - '#', 2188, - '(', 1561, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2185, + '(', 1558, + ']', 1463, + '_', 1941, + '\t', 1709, + ' ', 1709, + 'E', 1944, + 'e', 1944, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17061,17 +17072,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 226: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '}') ADVANCE(1499); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == ']') ADVANCE(1463); + if (lookahead == '}') ADVANCE(1496); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1709); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17079,18 +17090,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 227: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ']') ADVANCE(1466); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == ']') ADVANCE(1463); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1709); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1947); + lookahead == 'e') ADVANCE(1944); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17098,668 +17109,668 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1956); END_STATE(); case 228: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2185, + '(', 1558, + '_', 1972, + '}', 1496, + '\t', 1709, + ' ', 1709, + 'E', 1970, + 'e', 1970, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 229: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == '{') ADVANCE(1495); if (lookahead == '\t' || lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 230: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '}') ADVANCE(1499); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == '}') ADVANCE(1496); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1709); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); + lookahead == 'e') ADVANCE(1970); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1704); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 231: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '}') ADVANCE(1499); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == '}') ADVANCE(1496); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1709); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1704); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 232: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1558); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 233: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1558); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 234: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1595, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2185, + '(', 1464, + '-', 1780, + '.', 1592, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + '[', 1462, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(240); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 235: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2185, + '(', 1464, + '-', 1780, + '.', 1787, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + '[', 1462, + '_', 1810, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(240); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 236: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2185, + '(', 1464, + '-', 1780, + '.', 1787, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + '[', 1462, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(240); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 237: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2185, + '(', 1464, + '-', 1780, + '.', 1787, + 'E', 1807, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + '[', 1462, + 'd', 1821, + 'e', 1806, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(240); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 238: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(1783); - if (lookahead == '[') ADVANCE(1465); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1464); + if (lookahead == '-') ADVANCE(1780); + if (lookahead == '[') ADVANCE(1462); if (lookahead == '\t' || lookahead == ' ') SKIP(240); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 239: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1464); if (lookahead == '-') ADVANCE(297); - if (lookahead == '=') ADVANCE(1729); - if (lookahead == '[') ADVANCE(1465); + if (lookahead == '=') ADVANCE(1726); + if (lookahead == '[') ADVANCE(1462); if (lookahead == '\t' || lookahead == ' ') SKIP(240); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1444); END_STATE(); case 240: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '(') ADVANCE(1464); if (lookahead == '-') ADVANCE(297); - if (lookahead == '[') ADVANCE(1465); + if (lookahead == '[') ADVANCE(1462); if (lookahead == '\t' || lookahead == ' ') SKIP(240); END_STATE(); case 241: ADVANCE_MAP( - '#', 2188, - '.', 1595, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2185, + '.', 1592, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '{', 1495, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 242: ADVANCE_MAP( - '#', 2188, - '.', 1595, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2185, + '.', 1592, + 'E', 1964, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + 'd', 1973, + 'e', 1963, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + 0xb5, 1980, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 243: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1592); + if (lookahead == '{') ADVANCE(1495); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 244: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1592); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1970); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 245: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1720); - if (lookahead == 'i') ADVANCE(1361); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1717); + if (lookahead == 'i') ADVANCE(1358); if (lookahead == '\t' || lookahead == ' ') SKIP(245); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1370); END_STATE(); case 246: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1604); - if (lookahead == '_') ADVANCE(1813); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1601); + if (lookahead == '_') ADVANCE(1810); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1788); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 247: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2185, + '.', 1787, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + '_', 1810, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '{', 1495, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 248: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2185, + '.', 1787, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1803, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '{', 1495, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 249: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2185, + '.', 1787, + 'E', 1807, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1806, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '{', 1495, + 0xb5, 1888, ); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 250: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1787); + if (lookahead == '_') ADVANCE(1810); + if (lookahead == '{') ADVANCE(1495); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 251: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1787); + if (lookahead == '{') ADVANCE(1495); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 252: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1787); + if (lookahead == '{') ADVANCE(1495); if (lookahead == '\t' || lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 253: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1591); + if (lookahead == '{') ADVANCE(1495); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 254: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1591); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1970); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 255: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(337); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(336); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); case 256: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1972); - if (lookahead == '_') ADVANCE(1975); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1969); + if (lookahead == '_') ADVANCE(1972); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '-') ADVANCE(1958); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 257: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1602); - if (lookahead == '_') ADVANCE(1975); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1599); + if (lookahead == '_') ADVANCE(1972); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '-') ADVANCE(1958); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 258: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '_') ADVANCE(1813); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1812); + if (lookahead == '_') ADVANCE(1810); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1788); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 259: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - '_', 1975, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2185, + '.', 1957, + 'E', 1964, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + '_', 1972, + 'd', 1973, + 'e', 1963, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + 0xb5, 1980, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 260: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2185, + '.', 1957, + 'E', 1964, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + 'd', 1973, + 'e', 1963, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + 0xb5, 1980, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 261: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1968, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2185, + '.', 1957, + 'E', 1966, + 'G', 1966, + 'K', 1966, + 'M', 1966, + 'P', 1966, + 'T', 1966, + 'd', 1973, + 'e', 1965, + 'g', 1965, + 'h', 1979, + 'k', 1965, + 'm', 1967, + 'n', 1980, + 'p', 1965, + 's', 1976, + 't', 1965, + 'u', 1980, + 'w', 1977, + 0xb5, 1980, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 262: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); - if (lookahead == '_') ADVANCE(1975); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1957); + if (lookahead == '_') ADVANCE(1972); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1970); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 263: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1957); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1970); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 264: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(1957); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 265: ADVANCE_MAP( - '#', 2188, - ':', 1713, - 'a', 413, - 'c', 439, - 'd', 374, - 'e', 518, - 'm', 437, - 'u', 475, + '#', 2185, + ':', 1710, + 'a', 411, + 'c', 437, + 'd', 373, + 'e', 515, + 'm', 435, + 'u', 472, ); if (lookahead == '\t' || lookahead == ' ') SKIP(265); END_STATE(); case 266: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ':') ADVANCE(1713); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == ':') ADVANCE(1710); if (lookahead == '\t' || lookahead == ' ') SKIP(266); END_STATE(); case 267: ADVANCE_MAP( - '#', 2188, - '>', 1479, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '\t', 1712, - ' ', 1712, + '#', 2185, + '>', 1476, + '[', 1462, + ']', 1463, + 'c', 1348, + 'f', 1367, + 'i', 1356, + 'o', 1359, + 'v', 1344, + '\t', 1709, + ' ', 1709, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -17767,73 +17778,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1373); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1370); END_STATE(); case 268: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '_') ADVANCE(1810); + if (lookahead == '{') ADVANCE(1495); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 269: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '_') ADVANCE(1975); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '_') ADVANCE(1972); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1970); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 270: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '{') ADVANCE(1495); if (lookahead == '\t' || lookahead == ' ') SKIP(270); END_STATE(); case 271: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '{') ADVANCE(1495); if (lookahead == '\t' || lookahead == ' ') SKIP(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1816); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 272: - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '#') ADVANCE(2185); if (lookahead == '\t' || lookahead == ' ') SKIP(272); END_STATE(); case 273: - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '#') ADVANCE(2185); if (lookahead == '\t' || lookahead == ' ') SKIP(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1970); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 274: - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '#') ADVANCE(2185); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1461); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1458); END_STATE(); case 275: - if (lookahead == '#') ADVANCE(2188); + if (lookahead == '#') ADVANCE(2185); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1497); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1494); END_STATE(); case 276: - if (lookahead == '#') ADVANCE(2191); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == ':') ADVANCE(1713); + if (lookahead == '#') ADVANCE(2188); + if (lookahead == '$') ADVANCE(1470); + if (lookahead == ':') ADVANCE(1710); if (lookahead == '\t' || lookahead == ' ') SKIP(194); if (lookahead == '!' || @@ -17844,3498 +17855,3485 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1030); + lookahead == '^') ADVANCE(1043); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1027); END_STATE(); case 277: ADVANCE_MAP( - '#', 2191, - ':', 1713, - 'a', 932, - 'c', 951, - 'd', 895, - 'e', 1019, - 'm', 952, - 'u', 980, + '#', 2188, + ':', 1710, + 'a', 929, + 'c', 948, + 'd', 892, + 'e', 1016, + 'm', 949, + 'u', 977, ); if (lookahead == '\t' || lookahead == ' ') SKIP(265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 278: - if (lookahead == '#') ADVANCE(1700); - if (lookahead == '\'') ADVANCE(1691); - if (lookahead == '(') ADVANCE(1467); + if (lookahead == '#') ADVANCE(1697); + if (lookahead == '\'') ADVANCE(1688); + if (lookahead == '(') ADVANCE(1464); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1699); - if (lookahead != 0) ADVANCE(1700); + lookahead == ' ') ADVANCE(1696); + if (lookahead != 0) ADVANCE(1697); END_STATE(); case 279: - if (lookahead == '+') ADVANCE(378); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(488); + if (lookahead == '+') ADVANCE(376); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == 'r') ADVANCE(1528); + if (lookahead == 'u') ADVANCE(485); END_STATE(); case 280: - if (lookahead == '+') ADVANCE(339); - if (lookahead == '-') ADVANCE(341); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == '_') ADVANCE(341); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '+') ADVANCE(338); + if (lookahead == '-') ADVANCE(340); + if (lookahead == '>') ADVANCE(1734); + if (lookahead == '_') ADVANCE(340); + if (lookahead == 'l') ADVANCE(470); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 281: - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(1735); + if (lookahead == '+') ADVANCE(377); + if (lookahead == '>') ADVANCE(1732); END_STATE(); case 282: ADVANCE_MAP( - '+', 430, - '>', 1737, - 'I', 534, - 'i', 534, - 'n', 364, - 'r', 453, - 'B', 1653, - 'b', 1653, + '+', 428, + '>', 1734, + 'I', 531, + 'i', 531, + 'n', 363, + 'r', 450, + 'B', 1650, + 'b', 1650, ); END_STATE(); case 283: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); + if (lookahead == '+') ADVANCE(428); + if (lookahead == '>') ADVANCE(1734); + if (lookahead == 'l') ADVANCE(470); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(450); END_STATE(); case 284: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); - if (lookahead == 'x') ADVANCE(445); + if (lookahead == '+') ADVANCE(428); + if (lookahead == '>') ADVANCE(1734); + if (lookahead == 'l') ADVANCE(470); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(450); + if (lookahead == 'x') ADVANCE(443); END_STATE(); case 285: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); + if (lookahead == '+') ADVANCE(428); + if (lookahead == '>') ADVANCE(1734); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(450); END_STATE(); case 286: - if (lookahead == '+') ADVANCE(429); - if (lookahead == '>') ADVANCE(1733); + if (lookahead == '+') ADVANCE(427); + if (lookahead == '>') ADVANCE(1730); END_STATE(); case 287: - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(458); + if (lookahead == '+') ADVANCE(436); + if (lookahead == '>') ADVANCE(520); + if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'r') ADVANCE(455); END_STATE(); case 288: - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(458); + if (lookahead == '+') ADVANCE(436); + if (lookahead == '>') ADVANCE(520); + if (lookahead == 'r') ADVANCE(455); END_STATE(); case 289: - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(493); + if (lookahead == '+') ADVANCE(378); + if (lookahead == '>') ADVANCE(521); + if (lookahead == 'r') ADVANCE(1528); + if (lookahead == 'u') ADVANCE(490); END_STATE(); case 290: - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(493); + if (lookahead == '+') ADVANCE(378); + if (lookahead == '>') ADVANCE(521); + if (lookahead == 'u') ADVANCE(490); END_STATE(); case 291: - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '+') ADVANCE(441); + if (lookahead == '>') ADVANCE(523); END_STATE(); case 292: - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '+') ADVANCE(382); + if (lookahead == '>') ADVANCE(525); END_STATE(); case 293: - if (lookahead == '-') ADVANCE(355); + if (lookahead == '-') ADVANCE(354); END_STATE(); case 294: - if (lookahead == '-') ADVANCE(385); + if (lookahead == '-') ADVANCE(383); END_STATE(); case 295: - if (lookahead == '-') ADVANCE(385); + if (lookahead == '-') ADVANCE(383); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); + lookahead == ' ') ADVANCE(1557); END_STATE(); case 296: - if (lookahead == '-') ADVANCE(513); + if (lookahead == '-') ADVANCE(510); END_STATE(); case 297: - if (lookahead == '-') ADVANCE(1484); + if (lookahead == '-') ADVANCE(1481); END_STATE(); case 298: - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '>') ADVANCE(1464); + if (lookahead == '-') ADVANCE(1481); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '>') ADVANCE(1461); if (lookahead == '_') ADVANCE(308); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + lookahead == 'i') ADVANCE(536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); case 299: - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); + if (lookahead == '-') ADVANCE(1481); + if (lookahead == '.') ADVANCE(335); if (lookahead == '_') ADVANCE(308); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + lookahead == 'i') ADVANCE(536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); case 300: - if (lookahead == '-') ADVANCE(433); + if (lookahead == '-') ADVANCE(431); END_STATE(); case 301: - if (lookahead == '-') ADVANCE(490); + if (lookahead == '-') ADVANCE(487); END_STATE(); case 302: - if (lookahead == '-') ADVANCE(560); + if (lookahead == '-') ADVANCE(557); END_STATE(); case 303: - if (lookahead == '-') ADVANCE(514); + if (lookahead == '-') ADVANCE(511); END_STATE(); case 304: - if (lookahead == '-') ADVANCE(515); + if (lookahead == '-') ADVANCE(512); END_STATE(); case 305: - if (lookahead == '-') ADVANCE(450); + if (lookahead == '-') ADVANCE(448); END_STATE(); case 306: - if (lookahead == '-') ADVANCE(516); + if (lookahead == '-') ADVANCE(513); END_STATE(); case 307: - if (lookahead == '.') ADVANCE(336); + if (lookahead == '.') ADVANCE(335); if (lookahead == '_') ADVANCE(308); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + lookahead == 'i') ADVANCE(536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); case 308: - if (lookahead == '.') ADVANCE(336); + if (lookahead == '.') ADVANCE(335); if (lookahead == '_') ADVANCE(308); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); case 309: - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '.') ADVANCE(1504); + if (lookahead == '_') ADVANCE(342); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 310: - if (lookahead == '.') ADVANCE(1593); + if (lookahead == '.') ADVANCE(1590); END_STATE(); case 311: - if (lookahead == '.') ADVANCE(1482); + if (lookahead == '.') ADVANCE(1479); END_STATE(); case 312: if (lookahead == '.') ADVANCE(311); END_STATE(); case 313: if (lookahead == '.') ADVANCE(311); - if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '_') ADVANCE(336); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); END_STATE(); case 314: - if (lookahead == '.') ADVANCE(338); + if (lookahead == '.') ADVANCE(337); if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); END_STATE(); case 315: - if (lookahead == '2') ADVANCE(548); + if (lookahead == '2') ADVANCE(545); if (lookahead == '0' || - lookahead == '1') ADVANCE(554); + lookahead == '1') ADVANCE(551); END_STATE(); case 316: - if (lookahead == ':') ADVANCE(555); + if (lookahead == ':') ADVANCE(552); END_STATE(); case 317: - if (lookahead == ':') ADVANCE(556); + if (lookahead == ':') ADVANCE(553); END_STATE(); case 318: - if (lookahead == ';') ADVANCE(1716); + if (lookahead == ';') ADVANCE(1713); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(318); END_STATE(); case 319: - if (lookahead == '=') ADVANCE(1139); - if (lookahead == '~') ADVANCE(1121); + if (lookahead == '=') ADVANCE(1136); + if (lookahead == '~') ADVANCE(1118); END_STATE(); case 320: - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); + if (lookahead == '=') ADVANCE(1545); + if (lookahead == '~') ADVANCE(1551); END_STATE(); case 321: - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '>') ADVANCE(1500); - if (lookahead == '~') ADVANCE(1553); + if (lookahead == '=') ADVANCE(1544); + if (lookahead == '>') ADVANCE(1497); + if (lookahead == '~') ADVANCE(1550); END_STATE(); case 322: - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); + if (lookahead == '=') ADVANCE(1544); + if (lookahead == '~') ADVANCE(1550); END_STATE(); case 323: - if (lookahead == '>') ADVANCE(1500); + if (lookahead == '>') ADVANCE(1497); END_STATE(); case 324: - if (lookahead == '>') ADVANCE(1747); + if (lookahead == '>') ADVANCE(1744); END_STATE(); case 325: - if (lookahead == '>') ADVANCE(1745); + if (lookahead == '>') ADVANCE(1742); END_STATE(); case 326: - if (lookahead == '>') ADVANCE(1741); + if (lookahead == '>') ADVANCE(1738); END_STATE(); case 327: - if (lookahead == '>') ADVANCE(1743); + if (lookahead == '>') ADVANCE(1740); END_STATE(); case 328: - if (lookahead == '>') ADVANCE(525); + if (lookahead == '>') ADVANCE(522); END_STATE(); case 329: - if (lookahead == '>') ADVANCE(527); + if (lookahead == '>') ADVANCE(524); END_STATE(); case 330: - if (lookahead == '>') ADVANCE(529); + if (lookahead == '>') ADVANCE(526); END_STATE(); case 331: - if (lookahead == '>') ADVANCE(530); + if (lookahead == '>') ADVANCE(527); END_STATE(); case 332: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(534); + if (lookahead == 'I') ADVANCE(531); + if (lookahead == 'i') ADVANCE(531); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1650); END_STATE(); case 333: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(357); + if (lookahead == 'I') ADVANCE(531); + if (lookahead == 'i') ADVANCE(356); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1650); END_STATE(); case 334: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(420); - if (lookahead == 'o') ADVANCE(362); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(531); + if (lookahead == 'i') ADVANCE(418); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == 's') ADVANCE(1655); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1650); END_STATE(); case 335: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(420); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '_') ADVANCE(335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 336: if (lookahead == '_') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); END_STATE(); case 337: if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); END_STATE(); case 338: - if (lookahead == '_') ADVANCE(338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (lookahead == '_') ADVANCE(340); + if (lookahead == 'o') ADVANCE(324); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 339: - if (lookahead == '_') ADVANCE(341); - if (lookahead == 'o') ADVANCE(324); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '_') ADVANCE(340); + if (lookahead == '+' || + lookahead == '-') ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 340: - if (lookahead == '_') ADVANCE(341); - if (lookahead == '+' || - lookahead == '-') ADVANCE(341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '_') ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 341: if (lookahead == '_') ADVANCE(341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 342: if (lookahead == '_') ADVANCE(342); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 343: - if (lookahead == '_') ADVANCE(343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == 'a') ADVANCE(467); END_STATE(); case 344: - if (lookahead == 'a') ADVANCE(470); + if (lookahead == 'a') ADVANCE(467); + if (lookahead == 'r') ADVANCE(1655); END_STATE(); case 345: - if (lookahead == 'a') ADVANCE(470); - if (lookahead == 'r') ADVANCE(1658); + if (lookahead == 'a') ADVANCE(516); END_STATE(); case 346: - if (lookahead == 'a') ADVANCE(519); + if (lookahead == 'a') ADVANCE(416); END_STATE(); case 347: - if (lookahead == 'a') ADVANCE(418); + if (lookahead == 'a') ADVANCE(459); END_STATE(); case 348: - if (lookahead == 'a') ADVANCE(462); + if (lookahead == 'a') ADVANCE(468); END_STATE(); case 349: - if (lookahead == 'a') ADVANCE(471); + if (lookahead == 'a') ADVANCE(465); END_STATE(); case 350: - if (lookahead == 'a') ADVANCE(468); + if (lookahead == 'a') ADVANCE(479); END_STATE(); case 351: - if (lookahead == 'a') ADVANCE(482); + if (lookahead == 'a') ADVANCE(496); END_STATE(); case 352: - if (lookahead == 'a') ADVANCE(499); + if (lookahead == 'a') ADVANCE(498); END_STATE(); case 353: - if (lookahead == 'a') ADVANCE(501); + if (lookahead == 'a') ADVANCE(497); END_STATE(); case 354: - if (lookahead == 'a') ADVANCE(500); + if (lookahead == 'a') ADVANCE(424); + if (lookahead == 'o') ADVANCE(452); + if (lookahead == 's') ADVANCE(389); + if (lookahead == 'x') ADVANCE(438); END_STATE(); case 355: - if (lookahead == 'a') ADVANCE(426); - if (lookahead == 'o') ADVANCE(455); - if (lookahead == 's') ADVANCE(391); - if (lookahead == 'x') ADVANCE(440); + if (lookahead == 'a') ADVANCE(464); END_STATE(); case 356: - if (lookahead == 'a') ADVANCE(467); + if (lookahead == 'b') ADVANCE(1650); END_STATE(); case 357: - if (lookahead == 'b') ADVANCE(1653); + if (lookahead == 'c') ADVANCE(1655); END_STATE(); case 358: - if (lookahead == 'c') ADVANCE(1658); + if (lookahead == 'c') ADVANCE(388); END_STATE(); case 359: - if (lookahead == 'c') ADVANCE(390); + if (lookahead == 'c') ADVANCE(381); END_STATE(); case 360: - if (lookahead == 'c') ADVANCE(383); + if (lookahead == 'd') ADVANCE(1524); END_STATE(); case 361: - if (lookahead == 'd') ADVANCE(1527); + if (lookahead == 'd') ADVANCE(1568); END_STATE(); case 362: - if (lookahead == 'd') ADVANCE(1571); + if (lookahead == 'd') ADVANCE(1582); END_STATE(); case 363: - if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'd') ADVANCE(469); END_STATE(); case 364: - if (lookahead == 'd') ADVANCE(472); + if (lookahead == 'd') ADVANCE(506); END_STATE(); case 365: - if (lookahead == 'd') ADVANCE(509); + if (lookahead == 'd') ADVANCE(475); END_STATE(); case 366: - if (lookahead == 'd') ADVANCE(478); + if (lookahead == 'e') ADVANCE(1044); END_STATE(); case 367: - if (lookahead == 'e') ADVANCE(1047); + if (lookahead == 'e') ADVANCE(1068); END_STATE(); case 368: - if (lookahead == 'e') ADVANCE(1071); + if (lookahead == 'e') ADVANCE(1086); END_STATE(); case 369: if (lookahead == 'e') ADVANCE(1089); END_STATE(); case 370: - if (lookahead == 'e') ADVANCE(1092); + if (lookahead == 'e') ADVANCE(1053); END_STATE(); case 371: - if (lookahead == 'e') ADVANCE(1056); + if (lookahead == 'e') ADVANCE(1553); END_STATE(); case 372: - if (lookahead == 'e') ADVANCE(1556); + if (lookahead == 'e') ADVANCE(1555); END_STATE(); case 373: - if (lookahead == 'e') ADVANCE(1558); + if (lookahead == 'e') ADVANCE(386); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(388); + if (lookahead == 'e') ADVANCE(1475); END_STATE(); case 375: - if (lookahead == 'e') ADVANCE(1478); + if (lookahead == 'e') ADVANCE(357); + if (lookahead == 't') ADVANCE(347); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(358); + if (lookahead == 'e') ADVANCE(325); END_STATE(); case 377: - if (lookahead == 'e') ADVANCE(358); - if (lookahead == 't') ADVANCE(348); + if (lookahead == 'e') ADVANCE(460); END_STATE(); case 378: - if (lookahead == 'e') ADVANCE(325); + if (lookahead == 'e') ADVANCE(329); END_STATE(); case 379: - if (lookahead == 'e') ADVANCE(463); + if (lookahead == 'e') ADVANCE(456); END_STATE(); case 380: - if (lookahead == 'e') ADVANCE(329); + if (lookahead == 'e') ADVANCE(458); END_STATE(); case 381: - if (lookahead == 'e') ADVANCE(459); + if (lookahead == 'e') ADVANCE(413); END_STATE(); case 382: if (lookahead == 'e') ADVANCE(461); END_STATE(); case 383: - if (lookahead == 'e') ADVANCE(415); + if (lookahead == 'e') ADVANCE(426); + if (lookahead == 'h') ADVANCE(348); + if (lookahead == 'i') ADVANCE(421); + if (lookahead == 'l') ADVANCE(404); + if (lookahead == 's') ADVANCE(503); END_STATE(); case 384: - if (lookahead == 'e') ADVANCE(464); + if (lookahead == 'f') ADVANCE(1065); END_STATE(); case 385: - if (lookahead == 'e') ADVANCE(428); - if (lookahead == 'h') ADVANCE(349); - if (lookahead == 'i') ADVANCE(423); - if (lookahead == 'l') ADVANCE(406); - if (lookahead == 's') ADVANCE(506); + if (lookahead == 'f') ADVANCE(1065); + if (lookahead == 'n') ADVANCE(1080); END_STATE(); case 386: - if (lookahead == 'f') ADVANCE(1068); + if (lookahead == 'f') ADVANCE(822); END_STATE(); case 387: - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'n') ADVANCE(1083); + if (lookahead == 'f') ADVANCE(1474); END_STATE(); case 388: - if (lookahead == 'f') ADVANCE(825); + if (lookahead == 'h') ADVANCE(1074); END_STATE(); case 389: - if (lookahead == 'f') ADVANCE(1477); + if (lookahead == 'h') ADVANCE(410); END_STATE(); case 390: - if (lookahead == 'h') ADVANCE(1077); + if (lookahead == 'h') ADVANCE(1540); END_STATE(); case 391: - if (lookahead == 'h') ADVANCE(412); + if (lookahead == 'h') ADVANCE(1536); END_STATE(); case 392: - if (lookahead == 'h') ADVANCE(1543); + if (lookahead == 'h') ADVANCE(1542); END_STATE(); case 393: - if (lookahead == 'h') ADVANCE(1539); + if (lookahead == 'h') ADVANCE(1538); END_STATE(); case 394: - if (lookahead == 'h') ADVANCE(1545); + if (lookahead == 'h') ADVANCE(1471); END_STATE(); case 395: - if (lookahead == 'h') ADVANCE(1541); + if (lookahead == 'h') ADVANCE(1472); END_STATE(); case 396: - if (lookahead == 'h') ADVANCE(1474); + if (lookahead == 'h') ADVANCE(300); END_STATE(); case 397: - if (lookahead == 'h') ADVANCE(1475); + if (lookahead == 'i') ADVANCE(407); END_STATE(); case 398: - if (lookahead == 'h') ADVANCE(300); + if (lookahead == 'i') ADVANCE(478); END_STATE(); case 399: - if (lookahead == 'i') ADVANCE(409); + if (lookahead == 'i') ADVANCE(486); END_STATE(); case 400: - if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'i') ADVANCE(488); END_STATE(); case 401: - if (lookahead == 'i') ADVANCE(489); + if (lookahead == 'i') ADVANCE(491); END_STATE(); case 402: - if (lookahead == 'i') ADVANCE(491); + if (lookahead == 'i') ADVANCE(492); END_STATE(); case 403: - if (lookahead == 'i') ADVANCE(494); + if (lookahead == 'i') ADVANCE(493); END_STATE(); case 404: - if (lookahead == 'i') ADVANCE(495); + if (lookahead == 'i') ADVANCE(408); END_STATE(); case 405: - if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'i') ADVANCE(349); END_STATE(); case 406: - if (lookahead == 'i') ADVANCE(410); + if (lookahead == 'k') ADVANCE(1655); END_STATE(); case 407: - if (lookahead == 'i') ADVANCE(350); + if (lookahead == 'k') ADVANCE(371); END_STATE(); case 408: - if (lookahead == 'k') ADVANCE(1658); + if (lookahead == 'k') ADVANCE(372); END_STATE(); case 409: - if (lookahead == 'k') ADVANCE(372); + if (lookahead == 'l') ADVANCE(1092); END_STATE(); case 410: - if (lookahead == 'k') ADVANCE(373); + if (lookahead == 'l') ADVANCE(1578); + if (lookahead == 'r') ADVANCE(1580); END_STATE(); case 411: - if (lookahead == 'l') ADVANCE(1095); + if (lookahead == 'l') ADVANCE(405); END_STATE(); case 412: - if (lookahead == 'l') ADVANCE(1581); - if (lookahead == 'r') ADVANCE(1583); + if (lookahead == 'l') ADVANCE(409); END_STATE(); case 413: - if (lookahead == 'l') ADVANCE(407); + if (lookahead == 'l') ADVANCE(414); END_STATE(); case 414: - if (lookahead == 'l') ADVANCE(411); + if (lookahead == 'l') ADVANCE(305); END_STATE(); case 415: - if (lookahead == 'l') ADVANCE(416); + if (lookahead == 'l') ADVANCE(370); END_STATE(); case 416: - if (lookahead == 'l') ADVANCE(305); + if (lookahead == 'l') ADVANCE(471); END_STATE(); case 417: - if (lookahead == 'l') ADVANCE(371); + if (lookahead == 'n') ADVANCE(1050); END_STATE(); case 418: - if (lookahead == 'l') ADVANCE(474); + if (lookahead == 'n') ADVANCE(1655); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); END_STATE(); case 419: - if (lookahead == 'n') ADVANCE(1053); + if (lookahead == 'n') ADVANCE(360); END_STATE(); case 420: - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == 'n') ADVANCE(1080); END_STATE(); case 421: - if (lookahead == 'n') ADVANCE(361); + if (lookahead == 'n') ADVANCE(1530); END_STATE(); case 422: - if (lookahead == 'n') ADVANCE(1083); + if (lookahead == 'n') ADVANCE(1473); END_STATE(); case 423: - if (lookahead == 'n') ADVANCE(1533); + if (lookahead == 'n') ADVANCE(363); END_STATE(); case 424: - if (lookahead == 'n') ADVANCE(1476); + if (lookahead == 'n') ADVANCE(362); END_STATE(); case 425: - if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'n') ADVANCE(473); END_STATE(); case 426: - if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'n') ADVANCE(365); END_STATE(); case 427: - if (lookahead == 'n') ADVANCE(476); + if (lookahead == 'o') ADVANCE(505); END_STATE(); case 428: - if (lookahead == 'n') ADVANCE(366); + if (lookahead == 'o') ADVANCE(324); END_STATE(); case 429: - if (lookahead == 'o') ADVANCE(508); + if (lookahead == 'o') ADVANCE(451); END_STATE(); case 430: - if (lookahead == 'o') ADVANCE(324); + if (lookahead == 'o') ADVANCE(387); END_STATE(); case 431: - if (lookahead == 'o') ADVANCE(454); + if (lookahead == 'o') ADVANCE(445); END_STATE(); case 432: - if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'o') ADVANCE(484); END_STATE(); case 433: - if (lookahead == 'o') ADVANCE(447); + if (lookahead == 'o') ADVANCE(484); + if (lookahead == 's') ADVANCE(1655); END_STATE(); case 434: - if (lookahead == 'o') ADVANCE(487); + if (lookahead == 'o') ADVANCE(361); END_STATE(); case 435: - if (lookahead == 'o') ADVANCE(487); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'o') ADVANCE(364); END_STATE(); case 436: - if (lookahead == 'o') ADVANCE(362); + if (lookahead == 'o') ADVANCE(328); END_STATE(); case 437: - if (lookahead == 'o') ADVANCE(365); + if (lookahead == 'o') ADVANCE(425); END_STATE(); case 438: - if (lookahead == 'o') ADVANCE(328); + if (lookahead == 'o') ADVANCE(453); END_STATE(); case 439: - if (lookahead == 'o') ADVANCE(427); + if (lookahead == 'o') ADVANCE(481); END_STATE(); case 440: - if (lookahead == 'o') ADVANCE(456); + if (lookahead == 'o') ADVANCE(482); + if (lookahead == 'u') ADVANCE(412); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(537); END_STATE(); case 441: - if (lookahead == 'o') ADVANCE(484); + if (lookahead == 'o') ADVANCE(508); END_STATE(); case 442: - if (lookahead == 'o') ADVANCE(485); - if (lookahead == 'u') ADVANCE(414); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(540); + if (lookahead == 'o') ADVANCE(463); END_STATE(); case 443: - if (lookahead == 'o') ADVANCE(511); + if (lookahead == 'p') ADVANCE(442); + if (lookahead == 't') ADVANCE(379); END_STATE(); case 444: - if (lookahead == 'o') ADVANCE(466); + if (lookahead == 'p') ADVANCE(374); END_STATE(); case 445: - if (lookahead == 'p') ADVANCE(444); - if (lookahead == 't') ADVANCE(381); + if (lookahead == 'p') ADVANCE(495); END_STATE(); case 446: - if (lookahead == 'p') ADVANCE(375); + if (lookahead == 'p') ADVANCE(351); END_STATE(); case 447: - if (lookahead == 'p') ADVANCE(498); + if (lookahead == 'p') ADVANCE(352); END_STATE(); case 448: - if (lookahead == 'p') ADVANCE(352); + if (lookahead == 'p') ADVANCE(353); END_STATE(); case 449: - if (lookahead == 'p') ADVANCE(353); + if (lookahead == 'r') ADVANCE(1528); END_STATE(); case 450: - if (lookahead == 'p') ADVANCE(354); + if (lookahead == 'r') ADVANCE(286); END_STATE(); case 451: - if (lookahead == 'r') ADVANCE(1658); + if (lookahead == 'r') ADVANCE(1526); END_STATE(); case 452: - if (lookahead == 'r') ADVANCE(1531); + if (lookahead == 'r') ADVANCE(1586); END_STATE(); case 453: - if (lookahead == 'r') ADVANCE(286); + if (lookahead == 'r') ADVANCE(1584); END_STATE(); case 454: - if (lookahead == 'r') ADVANCE(1529); + if (lookahead == 'r') ADVANCE(507); END_STATE(); case 455: - if (lookahead == 'r') ADVANCE(1589); + if (lookahead == 'r') ADVANCE(291); END_STATE(); case 456: - if (lookahead == 'r') ADVANCE(1587); + if (lookahead == 'r') ADVANCE(417); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(510); + if (lookahead == 'r') ADVANCE(327); END_STATE(); case 458: - if (lookahead == 'r') ADVANCE(291); + if (lookahead == 'r') ADVANCE(422); END_STATE(); case 459: - if (lookahead == 'r') ADVANCE(419); + if (lookahead == 'r') ADVANCE(501); END_STATE(); case 460: - if (lookahead == 'r') ADVANCE(327); + if (lookahead == 'r') ADVANCE(457); END_STATE(); case 461: - if (lookahead == 'r') ADVANCE(424); + if (lookahead == 'r') ADVANCE(462); END_STATE(); case 462: - if (lookahead == 'r') ADVANCE(504); + if (lookahead == 'r') ADVANCE(331); END_STATE(); case 463: - if (lookahead == 'r') ADVANCE(460); + if (lookahead == 'r') ADVANCE(480); END_STATE(); case 464: - if (lookahead == 'r') ADVANCE(465); + if (lookahead == 'r') ADVANCE(502); END_STATE(); case 465: - if (lookahead == 'r') ADVANCE(331); + if (lookahead == 's') ADVANCE(667); END_STATE(); case 466: - if (lookahead == 'r') ADVANCE(483); + if (lookahead == 's') ADVANCE(1655); END_STATE(); case 467: - if (lookahead == 'r') ADVANCE(505); + if (lookahead == 's') ADVANCE(1532); END_STATE(); case 468: - if (lookahead == 's') ADVANCE(670); + if (lookahead == 's') ADVANCE(1534); END_STATE(); case 469: - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 's') ADVANCE(296); END_STATE(); case 470: - if (lookahead == 's') ADVANCE(1535); + if (lookahead == 's') ADVANCE(367); END_STATE(); case 471: - if (lookahead == 's') ADVANCE(1537); + if (lookahead == 's') ADVANCE(369); END_STATE(); case 472: - if (lookahead == 's') ADVANCE(296); + if (lookahead == 's') ADVANCE(366); END_STATE(); case 473: - if (lookahead == 's') ADVANCE(368); + if (lookahead == 's') ADVANCE(477); END_STATE(); case 474: - if (lookahead == 's') ADVANCE(370); + if (lookahead == 's') ADVANCE(303); END_STATE(); case 475: - if (lookahead == 's') ADVANCE(367); + if (lookahead == 's') ADVANCE(304); END_STATE(); case 476: - if (lookahead == 's') ADVANCE(480); + if (lookahead == 's') ADVANCE(306); END_STATE(); case 477: - if (lookahead == 's') ADVANCE(303); + if (lookahead == 't') ADVANCE(679); END_STATE(); case 478: - if (lookahead == 's') ADVANCE(304); + if (lookahead == 't') ADVANCE(293); END_STATE(); case 479: - if (lookahead == 's') ADVANCE(306); + if (lookahead == 't') ADVANCE(358); END_STATE(); case 480: - if (lookahead == 't') ADVANCE(682); + if (lookahead == 't') ADVANCE(663); END_STATE(); case 481: - if (lookahead == 't') ADVANCE(293); + if (lookahead == 't') ADVANCE(295); END_STATE(); case 482: - if (lookahead == 't') ADVANCE(359); + if (lookahead == 't') ADVANCE(546); END_STATE(); case 483: - if (lookahead == 't') ADVANCE(666); + if (lookahead == 't') ADVANCE(347); END_STATE(); case 484: - if (lookahead == 't') ADVANCE(295); + if (lookahead == 't') ADVANCE(294); END_STATE(); case 485: - if (lookahead == 't') ADVANCE(549); + if (lookahead == 't') ADVANCE(281); END_STATE(); case 486: - if (lookahead == 't') ADVANCE(348); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 487: - if (lookahead == 't') ADVANCE(294); + if (lookahead == 't') ADVANCE(517); END_STATE(); case 488: - if (lookahead == 't') ADVANCE(281); + if (lookahead == 't') ADVANCE(391); END_STATE(); case 489: - if (lookahead == 't') ADVANCE(392); + if (lookahead == 't') ADVANCE(326); END_STATE(); case 490: - if (lookahead == 't') ADVANCE(520); + if (lookahead == 't') ADVANCE(292); END_STATE(); case 491: - if (lookahead == 't') ADVANCE(393); + if (lookahead == 't') ADVANCE(392); END_STATE(); case 492: - if (lookahead == 't') ADVANCE(326); + if (lookahead == 't') ADVANCE(393); END_STATE(); case 493: - if (lookahead == 't') ADVANCE(292); + if (lookahead == 't') ADVANCE(396); END_STATE(); case 494: - if (lookahead == 't') ADVANCE(394); + if (lookahead == 't') ADVANCE(330); END_STATE(); case 495: - if (lookahead == 't') ADVANCE(395); + if (lookahead == 't') ADVANCE(301); END_STATE(); case 496: - if (lookahead == 't') ADVANCE(398); + if (lookahead == 't') ADVANCE(394); END_STATE(); case 497: - if (lookahead == 't') ADVANCE(330); + if (lookahead == 't') ADVANCE(395); END_STATE(); case 498: - if (lookahead == 't') ADVANCE(301); + if (lookahead == 't') ADVANCE(500); END_STATE(); case 499: - if (lookahead == 't') ADVANCE(396); + if (lookahead == 't') ADVANCE(379); END_STATE(); case 500: - if (lookahead == 't') ADVANCE(397); + if (lookahead == 't') ADVANCE(380); END_STATE(); case 501: - if (lookahead == 't') ADVANCE(503); + if (lookahead == 't') ADVANCE(474); END_STATE(); case 502: - if (lookahead == 't') ADVANCE(381); + if (lookahead == 't') ADVANCE(476); END_STATE(); case 503: - if (lookahead == 't') ADVANCE(382); + if (lookahead == 't') ADVANCE(355); END_STATE(); case 504: - if (lookahead == 't') ADVANCE(477); + if (lookahead == 'u') ADVANCE(518); + if (lookahead == 'x') ADVANCE(565); + if (lookahead != 0) ADVANCE(1701); END_STATE(); case 505: - if (lookahead == 't') ADVANCE(479); + if (lookahead == 'u') ADVANCE(489); END_STATE(); case 506: - if (lookahead == 't') ADVANCE(356); + if (lookahead == 'u') ADVANCE(415); END_STATE(); case 507: - if (lookahead == 'u') ADVANCE(521); - if (lookahead == 'x') ADVANCE(568); - if (lookahead != 0) ADVANCE(1704); + if (lookahead == 'u') ADVANCE(368); END_STATE(); case 508: - if (lookahead == 'u') ADVANCE(492); + if (lookahead == 'u') ADVANCE(494); END_STATE(); case 509: - if (lookahead == 'u') ADVANCE(417); + if (lookahead == 'u') ADVANCE(519); + if (lookahead == 'x') ADVANCE(566); + if (lookahead != 0) ADVANCE(1693); END_STATE(); case 510: - if (lookahead == 'u') ADVANCE(369); + if (lookahead == 'w') ADVANCE(399); END_STATE(); case 511: - if (lookahead == 'u') ADVANCE(497); + if (lookahead == 'w') ADVANCE(400); END_STATE(); case 512: - if (lookahead == 'u') ADVANCE(522); - if (lookahead == 'x') ADVANCE(569); - if (lookahead != 0) ADVANCE(1696); + if (lookahead == 'w') ADVANCE(401); END_STATE(); case 513: - if (lookahead == 'w') ADVANCE(401); + if (lookahead == 'w') ADVANCE(402); END_STATE(); case 514: - if (lookahead == 'w') ADVANCE(402); + if (lookahead == 'w') ADVANCE(403); END_STATE(); case 515: - if (lookahead == 'w') ADVANCE(403); + if (lookahead == 'x') ADVANCE(499); END_STATE(); case 516: - if (lookahead == 'w') ADVANCE(404); + if (lookahead == 'y') ADVANCE(1655); END_STATE(); case 517: - if (lookahead == 'w') ADVANCE(405); + if (lookahead == 'y') ADVANCE(444); END_STATE(); case 518: - if (lookahead == 'x') ADVANCE(502); + if (lookahead == '{') ADVANCE(562); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(560); END_STATE(); case 519: - if (lookahead == 'y') ADVANCE(1658); + if (lookahead == '{') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(567); END_STATE(); case 520: - if (lookahead == 'y') ADVANCE(446); + if (lookahead == '|') ADVANCE(1452); END_STATE(); case 521: - if (lookahead == '{') ADVANCE(565); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); + if (lookahead == '|') ADVANCE(1453); END_STATE(); case 522: - if (lookahead == '{') ADVANCE(567); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(570); + if (lookahead == '|') ADVANCE(1457); END_STATE(); case 523: - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '|') ADVANCE(1450); END_STATE(); case 524: if (lookahead == '|') ADVANCE(1456); END_STATE(); case 525: - if (lookahead == '|') ADVANCE(1460); + if (lookahead == '|') ADVANCE(1451); END_STATE(); case 526: - if (lookahead == '|') ADVANCE(1453); + if (lookahead == '|') ADVANCE(1454); END_STATE(); case 527: - if (lookahead == '|') ADVANCE(1459); + if (lookahead == '|') ADVANCE(1455); END_STATE(); case 528: - if (lookahead == '|') ADVANCE(1454); + if (lookahead == '}') ADVANCE(1701); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(528); END_STATE(); case 529: - if (lookahead == '|') ADVANCE(1457); + if (lookahead == '}') ADVANCE(1693); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(529); END_STATE(); case 530: - if (lookahead == '|') ADVANCE(1458); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(537); END_STATE(); case 531: - if (lookahead == '}') ADVANCE(1704); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); END_STATE(); case 532: - if (lookahead == '}') ADVANCE(1696); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1102); END_STATE(); case 533: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(540); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1100); END_STATE(); case 534: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(541); END_STATE(); case 535: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1105); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(542); END_STATE(); case 536: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1103); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(532); END_STATE(); case 537: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(544); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1106); END_STATE(); case 538: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(545); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(534); END_STATE(); case 539: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(535); + lookahead == 'n') ADVANCE(533); END_STATE(); case 540: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); + lookahead == 'n') ADVANCE(535); END_STATE(); case 541: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(537); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(544); END_STATE(); case 542: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(536); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(543); END_STATE(); case 543: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(538); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1095); END_STATE(); case 544: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(547); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1101); END_STATE(); case 545: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(546); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1668); END_STATE(); case 546: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1557); END_STATE(); case 547: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); END_STATE(); case 548: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1665); END_STATE(); case 549: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1664); END_STATE(); case 550: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1676); END_STATE(); case 551: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); END_STATE(); case 552: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(547); END_STATE(); case 553: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(548); END_STATE(); case 554: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); END_STATE(); case 555: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); END_STATE(); case 556: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(551); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(555); END_STATE(); case 557: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(554); END_STATE(); case 558: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); case 559: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(558); END_STATE(); case 560: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(557); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(565); END_STATE(); case 561: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1701); END_STATE(); case 562: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(561); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(528); END_STATE(); case 563: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1693); END_STATE(); case 564: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1704); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(529); END_STATE(); case 565: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(561); END_STATE(); case 566: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1696); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); END_STATE(); case 567: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); - END_STATE(); - case 568: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(564); - END_STATE(); - case 569: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(566); END_STATE(); - case 570: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); - END_STATE(); - case 571: - if (eof) ADVANCE(661); + case 568: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '$', 1471, - '&', 824, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - ',', 1469, - '-', 1486, - '.', 1721, - '/', 1570, - ':', 1713, - ';', 1451, - '<', 1549, - '=', 673, - '>', 1480, - '?', 1717, - '@', 1462, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 1502, - '`', 1692, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1715, + '"', 1682, + '#', 2185, + '$', 1468, + '&', 821, + '\'', 1685, + '(', 1464, + ')', 1465, + '*', 1509, + '+', 1572, + ',', 1466, + '-', 1483, + '.', 1718, + '/', 1567, + ':', 1710, + ';', 1448, + '<', 1546, + '=', 670, + '>', 1477, + '?', 1714, + '@', 1459, + '[', 1462, + ']', 1463, + '^', 1728, + '_', 1499, + '`', 1689, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(571); + lookahead == ' ') SKIP(568); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1373); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1370); END_STATE(); - case 572: - if (eof) ADVANCE(661); + case 569: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, + '!', 1715, + '"', 1682, + '#', 2185, + '\'', 1685, + ')', 1465, + '*', 1508, + '+', 699, '-', 307, - '.', 1726, - ';', 1451, - '?', 1717, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '.', 1723, + ';', 1448, + '?', 1714, + 'I', 806, + 'N', 802, + '[', 1462, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(572); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == ' ') SKIP(569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); - case 573: - if (eof) ADVANCE(661); + case 570: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, + '!', 1715, + '"', 1682, + '#', 2185, + '\'', 1685, + ')', 1465, + '*', 1508, + '+', 699, '-', 307, - '.', 1726, - ';', 1451, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '.', 1723, + ';', 1448, + 'I', 806, + 'N', 802, + '[', 1462, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(570); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); - case 574: - if (eof) ADVANCE(661); + case 571: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1718, - '#', 2188, - '(', 1467, - ')', 1468, + '!', 1715, + '#', 2185, + '(', 1464, + ')', 1465, '-', 297, - '.', 1720, - ':', 1713, - ';', 1451, - '=', 675, - '>', 1479, - '?', 1717, - '[', 1465, - 'a', 421, + '.', 1717, + ':', 1710, + ';', 1448, + '=', 672, + '>', 1476, + '?', 1714, + '[', 1462, + 'a', 419, 'e', 288, - 'i', 387, + 'i', 385, 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 'x', 429, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(574); + lookahead == ' ') SKIP(571); END_STATE(); - case 575: - if (eof) ADVANCE(661); + case 572: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1718, - '#', 2188, - '(', 1467, - ')', 1468, + '!', 1715, + '#', 2185, + '(', 1464, + ')', 1465, '-', 297, - '.', 1722, - ':', 1713, - ';', 1451, - '=', 675, - '>', 1479, - '?', 1717, - '[', 1465, - 'a', 421, + '.', 1719, + ':', 1710, + ';', 1448, + '=', 672, + '>', 1476, + '?', 1714, + '[', 1462, + 'a', 419, 'e', 288, - 'i', 387, + 'i', 385, 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 'x', 429, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(574); + lookahead == ' ') SKIP(571); END_STATE(); - case 576: - if (eof) ADVANCE(661); + case 573: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1722, - ';', 1451, - '=', 1729, - '?', 1717, - 'e', 1374, - 'o', 1375, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '!', 1715, + '#', 2185, + ')', 1465, + '.', 1719, + ';', 1448, + '=', 1726, + '?', 1714, + 'e', 1371, + 'o', 1372, + '|', 1449, + '}', 1496, + '\t', 1447, + ' ', 1447, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1444); END_STATE(); - case 577: - if (eof) ADVANCE(661); + case 574: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1719, - '#', 2188, - '$', 1509, - '\'', 1691, - '(', 1561, - ')', 1468, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1722, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1462, - ']', 1466, - '`', 1695, - 'a', 421, - 'b', 400, - 'c', 351, - 'd', 374, + '!', 1716, + '#', 2185, + '$', 1506, + '\'', 1688, + '(', 1558, + ')', 1465, + '*', 1510, + '+', 1575, + '-', 1492, + '.', 1719, + '/', 1565, + ':', 1710, + ';', 1448, + '<', 1547, + '=', 671, + '>', 1477, + '?', 1714, + '@', 1459, + ']', 1463, + '`', 1692, + 'a', 419, + 'b', 398, + 'c', 350, + 'd', 373, 'e', 284, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 's', 483, + 'x', 429, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(580); + lookahead == ' ') SKIP(577); END_STATE(); - case 578: - if (eof) ADVANCE(661); + case 575: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1719, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1722, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, + '!', 1716, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1719, + '/', 1564, + ':', 1710, + ';', 1448, + '<', 1547, '=', 321, - '>', 1480, - '?', 1717, - 'B', 1653, + '>', 1477, + '?', 1714, + 'B', 1650, 'E', 333, 'G', 333, 'K', 333, 'M', 333, 'P', 333, 'T', 333, - '[', 1665, - 'a', 421, - 'b', 1655, - 'd', 346, + '[', 1662, + 'a', 419, + 'b', 1652, + 'd', 345, 'e', 282, 'g', 332, - 'h', 345, - 'i', 387, + 'h', 344, + 'i', 385, 'k', 332, - 'l', 399, + 'l', 397, 'm', 334, - 'n', 435, + 'n', 433, 'o', 279, 'p', 332, - 's', 377, + 's', 375, 't', 332, - 'u', 469, - 'w', 408, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - 0xb5, 469, + 'u', 466, + 'w', 406, + 'x', 429, + '{', 1495, + '|', 1449, + '}', 1496, + 0xb5, 466, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(579); + lookahead == ' ') SKIP(576); END_STATE(); - case 579: - if (eof) ADVANCE(661); + case 576: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1719, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1720, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, + '!', 1716, + '#', 2185, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1717, + '/', 1564, + ':', 1710, + ';', 1448, + '<', 1547, '=', 321, - '>', 1480, - '?', 1717, - 'a', 421, - 'b', 400, + '>', 1477, + '?', 1714, + 'a', 419, + 'b', 398, 'e', 285, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 385, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 's', 483, + 'x', 429, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(579); + lookahead == ' ') SKIP(576); END_STATE(); - case 580: - if (eof) ADVANCE(661); + case 577: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1719, - '#', 2188, - ')', 1468, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1720, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1462, - ']', 1466, - 'a', 421, - 'b', 400, - 'c', 351, - 'd', 374, + '!', 1716, + '#', 2185, + ')', 1465, + '*', 1510, + '+', 1575, + '-', 1492, + '.', 1717, + '/', 1565, + ':', 1710, + ';', 1448, + '<', 1547, + '=', 671, + '>', 1477, + '?', 1714, + '@', 1459, + ']', 1463, + 'a', 419, + 'b', 398, + 'c', 350, + 'd', 373, 'e', 284, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 's', 483, + 'x', 429, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(580); + lookahead == ' ') SKIP(577); END_STATE(); - case 581: - if (eof) ADVANCE(661); + case 578: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1573, + '-', 1490, + '.', 1601, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1769, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1760, + 's', 1896, + 'x', 1868, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ' ') SKIP(610); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1931); END_STATE(); - case 582: - if (eof) ADVANCE(661); + case 579: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1573, + '-', 1490, + '.', 1601, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1773, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1775, + 's', 1896, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(612); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); - case 583: - if (eof) ADVANCE(661); + case 580: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1573, + '-', 1490, + '.', 1812, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1769, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1760, + 's', 1896, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(611); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); - case 584: - if (eof) ADVANCE(661); + case 581: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1573, + '-', 1490, + '.', 1812, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1773, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1775, + 's', 1896, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(612); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); - case 585: - if (eof) ADVANCE(661); + case 582: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1592, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'B', 1650, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1761, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1760, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '|', 1449, + '}', 1496, + 0xb5, 1888, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 586: - if (eof) ADVANCE(661); + case 583: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1592, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'B', 1650, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1763, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1775, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '|', 1449, + '}', 1496, + 0xb5, 1888, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 587: - if (eof) ADVANCE(661); + case 584: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1592, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1762, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1760, + 's', 1896, + 'x', 1868, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(614); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1931); END_STATE(); - case 588: - if (eof) ADVANCE(661); + case 585: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1592, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1765, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1775, + 's', 1896, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 589: - if (eof) ADVANCE(661); + case 586: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'B', 1650, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + '_', 1810, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1761, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1760, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '|', 1449, + '}', 1496, + 0xb5, 1888, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 590: - if (eof) ADVANCE(661); + case 587: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'B', 1650, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + '_', 1810, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1763, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1775, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '|', 1449, + '}', 1496, + 0xb5, 1888, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 591: - if (eof) ADVANCE(661); + case 588: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'B', 1650, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1761, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1760, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '|', 1449, + '}', 1496, + 0xb5, 1888, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 592: - if (eof) ADVANCE(661); + case 589: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'B', 1650, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1763, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1775, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '|', 1449, + '}', 1496, + 0xb5, 1888, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 593: - if (eof) ADVANCE(661); + case 590: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1771, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'B', 1650, + 'E', 1807, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1768, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1760, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '|', 1449, + '}', 1496, + 0xb5, 1888, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 594: - if (eof) ADVANCE(661); + case 591: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1774, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'B', 1650, + 'E', 1807, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'b', 1653, + 'd', 1821, + 'e', 1771, + 'g', 1806, + 'h', 1819, + 'i', 1860, + 'k', 1806, + 'l', 1848, + 'm', 1808, + 'n', 1869, + 'o', 1775, + 'p', 1806, + 's', 1835, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '|', 1449, + '}', 1496, + 0xb5, 1888, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 595: - if (eof) ADVANCE(661); + case 592: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1762, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1760, + 's', 1896, + 'x', 1868, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ' ') SKIP(614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1931); END_STATE(); - case 596: - if (eof) ADVANCE(661); + case 593: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1765, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1775, + 's', 1896, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 597: - if (eof) ADVANCE(661); + case 594: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1762, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1760, + 's', 1896, + 'x', 1868, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(614); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1931); END_STATE(); - case 598: - if (eof) ADVANCE(661); + case 595: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1765, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1775, + 's', 1896, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 599: - if (eof) ADVANCE(661); + case 596: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'a', 1862, + 'b', 1849, + 'e', 1769, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1760, + 's', 1896, + 'x', 1868, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(614); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1931); END_STATE(); - case 600: - if (eof) ADVANCE(661); + case 597: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1787, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'a', 1862, + 'b', 1849, + 'e', 1773, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1775, + 's', 1896, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 601: - if (eof) ADVANCE(661); + case 598: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1591, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1762, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1760, + 's', 1896, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 602: - if (eof) ADVANCE(661); + case 599: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1591, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1765, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1775, + 's', 1896, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 603: - if (eof) ADVANCE(661); + case 600: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1762, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1760, + 's', 1896, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 604: - if (eof) ADVANCE(661); + case 601: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + '_', 1810, + 'a', 1862, + 'b', 1849, + 'e', 1765, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1775, + 's', 1896, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 605: - if (eof) ADVANCE(661); + case 602: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1762, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1760, + 's', 1896, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 606: - if (eof) ADVANCE(661); + case 603: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'E', 1816, + 'a', 1862, + 'b', 1849, + 'e', 1765, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1775, + 's', 1896, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 607: - if (eof) ADVANCE(661); + case 604: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'a', 1862, + 'b', 1849, + 'e', 1769, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1760, + 's', 1896, + 'x', 1868, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(614); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1931); END_STATE(); - case 608: - if (eof) ADVANCE(661); + case 605: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '!', 1790, + '#', 2185, + '(', 1558, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, + '=', 1792, + '>', 1477, + 'a', 1862, + 'b', 1849, + 'e', 1773, + 'h', 1820, + 'i', 1860, + 'l', 1848, + 'm', 1871, + 'n', 1870, + 'o', 1775, + 's', 1896, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); - case 609: - if (eof) ADVANCE(661); + case 606: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 852, - '#', 2191, - ')', 1468, - '*', 1514, - '+', 1579, - '-', 1496, - '/', 1569, - ':', 1713, - ';', 1451, - '<', 1550, + '!', 849, + '#', 2188, + ')', 1465, + '*', 1511, + '+', 1576, + '-', 1493, + '/', 1566, + ':', 1710, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 936, - 'b', 918, - 'e', 829, - 'h', 875, - 'i', 937, - 'l', 917, - 'm', 949, - 'n', 950, - 'o', 828, - 's', 995, - 'x', 948, - '|', 1452, - '}', 1499, + '>', 1477, + 'a', 933, + 'b', 915, + 'e', 826, + 'h', 872, + 'i', 934, + 'l', 914, + 'm', 946, + 'n', 947, + 'o', 825, + 's', 992, + 'x', 945, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(616); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + lookahead == ' ') SKIP(613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1043); END_STATE(); - case 610: - if (eof) ADVANCE(661); + case 607: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 852, - '#', 2191, - ')', 1468, - '*', 1514, - '+', 1579, - '-', 1496, - '/', 1569, - ';', 1451, - '<', 1550, + '!', 849, + '#', 2188, + ')', 1465, + '*', 1511, + '+', 1576, + '-', 1493, + '/', 1566, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 936, - 'b', 918, - 'e', 833, - 'h', 875, - 'i', 937, - 'l', 917, - 'm', 949, - 'n', 950, - 'o', 832, - 's', 995, - 'x', 948, - '|', 1452, - '}', 1499, + '>', 1477, + 'a', 933, + 'b', 915, + 'e', 830, + 'h', 872, + 'i', 934, + 'l', 914, + 'm', 946, + 'n', 947, + 'o', 829, + 's', 992, + 'x', 945, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + lookahead == ' ') SKIP(616); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1043); END_STATE(); - case 611: - if (eof) ADVANCE(661); + case 608: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ':', 1463, - ';', 1451, - '<', 1550, + '#', 2185, + '$', 1467, + '(', 1464, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '.', 1591, + '/', 1564, + ':', 1460, + ';', 1448, + '<', 1547, '=', 321, - '>', 1480, - 'E', 340, - '[', 1465, - 'a', 421, - 'b', 400, - 'c', 351, + '>', 1477, + 'E', 339, + '[', 1462, + 'a', 419, + 'b', 398, + 'c', 350, 'e', 280, - 'f', 347, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 441, + 'f', 346, + 'h', 343, + 'i', 385, + 'l', 397, + 'm', 434, + 'n', 439, 'o', 279, - 's', 486, - 't', 457, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 's', 483, + 't', 454, + 'x', 429, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(612); + lookahead == ' ') SKIP(609); END_STATE(); - case 612: - if (eof) ADVANCE(661); + case 609: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1463, - ';', 1451, - '<', 1550, + '#', 2185, + '$', 1467, + '(', 1464, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ':', 1460, + ';', 1448, + '<', 1547, '=', 321, - '>', 1480, - '[', 1465, - 'a', 421, - 'b', 400, - 'c', 351, + '>', 1477, + '[', 1462, + 'a', 419, + 'b', 398, + 'c', 350, 'e', 283, - 'f', 347, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 441, + 'f', 346, + 'h', 343, + 'i', 385, + 'l', 397, + 'm', 434, + 'n', 439, 'o', 279, - 's', 486, - 't', 457, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 's', 483, + 't', 454, + 'x', 429, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(612); + lookahead == ' ') SKIP(609); END_STATE(); - case 613: - if (eof) ADVANCE(661); + case 610: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2185, + '$', 1467, + ')', 1465, + '*', 1509, + '+', 1574, + '-', 1491, + '.', 336, + '/', 1564, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 's', 483, + 'x', 429, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); + lookahead == ' ') SKIP(610); END_STATE(); - case 614: - if (eof) ADVANCE(661); + case 611: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2185, + '$', 1467, + ')', 1465, + '*', 1509, + '+', 1574, + '-', 1491, + '.', 336, + '/', 1564, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + 's', 483, + 'x', 429, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(614); + lookahead == ' ') SKIP(611); END_STATE(); - case 615: - if (eof) ADVANCE(661); + case 612: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2185, + '$', 1467, + ')', 1465, + '*', 1509, + '+', 1574, + '-', 1491, + '.', 336, + '/', 1564, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + 's', 483, + 'x', 429, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); + lookahead == ' ') SKIP(612); END_STATE(); - case 616: - if (eof) ADVANCE(661); + case 613: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, + '#', 2185, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ':', 1710, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + 's', 483, + 'x', 429, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(616); + lookahead == ' ') SKIP(613); END_STATE(); - case 617: - if (eof) ADVANCE(661); + case 614: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2185, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + 's', 483, + 'x', 429, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(614); END_STATE(); - case 618: - if (eof) ADVANCE(661); + case 615: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2185, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + 's', 483, + 'x', 429, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); + lookahead == ' ') SKIP(615); END_STATE(); - case 619: - if (eof) ADVANCE(661); + case 616: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2185, + ')', 1465, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + 's', 483, + 'x', 429, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); + lookahead == ' ') SKIP(616); END_STATE(); - case 620: - if (eof) ADVANCE(661); + case 617: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2185, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + 's', 483, + 'x', 429, + '|', 1449, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); + lookahead == ' ') SKIP(617); END_STATE(); - case 621: - if (eof) ADVANCE(661); + case 618: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, + '#', 2185, + '*', 1509, + '+', 1572, + '-', 1483, + '/', 1564, + ';', 1448, + '<', 1547, '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, + '>', 1477, + 'a', 419, + 'b', 398, 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, + 'h', 343, + 'i', 420, + 'l', 397, + 'm', 434, + 'n', 432, 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + 's', 483, + 'x', 429, + '|', 1449, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); + lookahead == ' ') SKIP(618); END_STATE(); - case 622: - if (eof) ADVANCE(661); + case 619: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1616, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1463, - ';', 1451, - '=', 673, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + ')', 1613, + '+', 699, + '-', 1488, + '.', 694, + '0', 1620, + ':', 1460, + ';', 1448, + '=', 670, + '@', 1459, + 'I', 806, + 'N', 802, + '[', 1462, + '^', 1728, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 766, + 't', 769, + 'u', 782, + 'w', 744, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == ' ') SKIP(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(824); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(821); END_STATE(); - case 623: - if (eof) ADVANCE(661); + case 620: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1463, - ';', 1451, - '=', 673, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + ')', 1465, + '+', 699, + '-', 1488, + '.', 694, + '0', 1620, + ':', 1460, + ';', 1448, + '=', 670, + '@', 1459, + 'I', 806, + 'N', 802, + '[', 1462, + '^', 1728, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 766, + 't', 769, + 'u', 782, + 'w', 744, + '{', 1495, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == ' ') SKIP(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(824); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(821); END_STATE(); - case 624: - if (eof) ADVANCE(661); + case 621: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1989, - 'f', 2015, - 'n', 2043, - 'o', 1990, - 't', 2030, - '{', 1498, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - 'I', 2051, - 'i', 2051, + '"', 1682, + '#', 2185, + '$', 1468, + '\'', 1685, + '(', 1464, + ')', 1465, + '+', 1997, + '-', 1485, + '.', 1996, + '0', 1621, + ';', 1448, + 'N', 2044, + '[', 1462, + '_', 2009, + '`', 1689, + 'e', 1986, + 'f', 2012, + 'n', 2040, + 'o', 1987, + 't', 2027, + '{', 1495, + '|', 1449, + '}', 1496, + '\t', 1447, + ' ', 1447, + 'I', 2048, + 'i', 2048, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1637); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2070); + lookahead != ']') ADVANCE(2067); END_STATE(); - case 625: - if (eof) ADVANCE(661); + case 622: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1511, - '+', 702, + '"', 1682, + '#', 2185, + '\'', 1685, + '(', 1464, + ')', 1465, + '*', 1508, + '+', 699, '-', 298, - '.', 718, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, - '}', 1499, + '.', 715, + ';', 1448, + '<', 1138, + '=', 670, + '>', 1476, + '@', 1478, + 'I', 806, + 'N', 802, + '[', 1462, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, + '{', 1495, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == ' ') SKIP(623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); - case 626: - if (eof) ADVANCE(661); + case 623: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1511, - '+', 702, + '"', 1682, + '#', 2185, + '\'', 1685, + '(', 1464, + ')', 1465, + '*', 1508, + '+', 699, '-', 298, - '.', 718, - ';', 1451, - '=', 673, - '>', 1479, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, - '}', 1499, + '.', 715, + ';', 1448, + '=', 670, + '>', 1476, + 'I', 806, + 'N', 802, + '[', 1462, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, + '{', 1495, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); - case 627: - if (eof) ADVANCE(661); + case 624: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, + '"', 1682, + '#', 2185, + '\'', 1685, + ')', 1465, + '*', 1508, + '+', 699, '-', 307, - '.', 1726, - ';', 1451, - '?', 1717, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '.', 1723, + ';', 1448, + '?', 1714, + 'I', 806, + 'N', 802, + '[', 1462, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == ' ') SKIP(624); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); - case 628: - if (eof) ADVANCE(661); + case 625: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, + '"', 1682, + '#', 2185, + '\'', 1685, + ')', 1465, + '*', 1508, + '+', 699, '-', 307, - '.', 1726, - ';', 1451, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '.', 1723, + ';', 1448, + 'I', 806, + 'N', 802, + '[', 1462, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 795, + 't', 769, + 'u', 782, + 'w', 748, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(628); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(625); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(821); END_STATE(); - case 629: - if (eof) ADVANCE(661); + case 626: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '"', 1685, - '#', 2190, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ';', 1451, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, + '"', 1682, + '#', 2187, + '$', 1468, + '\'', 1685, + '(', 1464, + '+', 699, + '-', 1488, + '.', 694, + '0', 1620, + ';', 1448, + '@', 1459, + 'I', 806, + 'N', 802, + '[', 1462, + '^', 1728, + '_', 713, + '`', 1689, + 'a', 751, + 'c', 718, + 'd', 728, + 'e', 756, + 'f', 720, + 'i', 712, + 'l', 736, + 'm', 722, + 'n', 766, + 't', 769, + 'u', 782, + 'w', 744, + '{', 1495, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(629); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == ' ') SKIP(626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1636); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(821); END_STATE(); - case 630: - if (eof) ADVANCE(661); + case 627: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1604, - ';', 1451, - '[', 1665, - '_', 1813, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + '.', 1601, + ';', 1448, + '[', 1662, + '_', 1810, + 'e', 1774, + 'o', 1776, + '|', 1449, + '}', 1496, + '\t', 1447, + ' ', 1447, + '+', 1788, + '-', 1788, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -21343,9880 +21341,9880 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1934); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1931); END_STATE(); - case 631: - if (eof) ADVANCE(661); + case 628: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1604, - ';', 1451, - '_', 1813, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + '.', 1601, + ';', 1448, + '_', 1810, + 'a', 1862, + 'e', 1774, + 'o', 1775, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); + lookahead == ' ') SKIP(631); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1788); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); - case 632: - if (eof) ADVANCE(661); + case 629: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1815, - ';', 1451, - '_', 1813, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + '.', 1812, + ';', 1448, + '_', 1810, + 'a', 1862, + 'e', 1774, + 'o', 1775, + 'x', 1868, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); + lookahead == ' ') SKIP(631); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1788); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); - case 633: - if (eof) ADVANCE(661); + case 630: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1815, - ';', 1451, - '_', 1813, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '#', 2185, + '$', 1467, + '(', 1558, + ')', 1465, + '.', 1812, + ';', 1448, + '_', 1810, + 'e', 1774, + 'o', 1776, + '|', 1449, + '}', 1496, + '\t', 1447, + ' ', 1447, + '+', 1788, + '-', 1788, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1931); END_STATE(); - case 634: - if (eof) ADVANCE(661); + case 631: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - '.', 337, - ';', 1451, - 'a', 421, + '#', 2185, + '$', 1467, + ')', 1465, + '.', 336, + ';', 1448, + 'a', 419, 'e', 288, 'o', 289, - 'x', 431, - '|', 1452, - '}', 1499, + 'x', 429, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); + lookahead == ' ') SKIP(631); if (lookahead == '+' || lookahead == '-') ADVANCE(314); END_STATE(); - case 635: - if (eof) ADVANCE(661); + case 632: + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1592, + ';', 1448, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'd', 1821, + 'e', 1764, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'o', 1775, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '|', 1449, + '}', 1496, + 0xb5, 1888, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); + lookahead == ' ') SKIP(657); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); + END_STATE(); + case 633: + if (eof) ADVANCE(658); + ADVANCE_MAP( + '\n', 1445, + '\r', 1, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1592, + ';', 1448, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1764, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'o', 1776, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '|', 1449, + '}', 1496, + 0xb5, 1888, + '\t', 1447, + ' ', 1447, + 'B', 1650, + 'b', 1650, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); + END_STATE(); + case 634: + if (eof) ADVANCE(658); + ADVANCE_MAP( + '\n', 1445, + '\r', 1, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1592, + ';', 1448, + 'E', 1816, + 'a', 1862, + 'e', 1766, + 'o', 1775, + 'x', 1868, + '|', 1449, + '}', 1496, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); + END_STATE(); + case 635: + if (eof) ADVANCE(658); + ADVANCE_MAP( + '\n', 1445, + '\r', 1, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1592, + ';', 1448, + 'E', 1816, + 'e', 1766, + 'o', 1776, + '|', 1449, + '}', 1496, + '\t', 1447, + ' ', 1447, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 636: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1787, + ';', 1448, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + '_', 1810, + 'a', 1862, + 'd', 1821, + 'e', 1764, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'o', 1775, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '|', 1449, + '}', 1496, + 0xb5, 1888, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(657); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 637: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1787, + ';', 1448, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + '_', 1810, + 'd', 1821, + 'e', 1764, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'o', 1776, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '|', 1449, + '}', 1496, + 0xb5, 1888, + '\t', 1447, + ' ', 1447, + 'B', 1650, + 'b', 1650, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 638: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1787, + ';', 1448, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'd', 1821, + 'e', 1764, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'o', 1775, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '|', 1449, + '}', 1496, + 0xb5, 1888, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(657); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 639: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1787, + ';', 1448, + 'E', 1804, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1764, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'o', 1776, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '|', 1449, + '}', 1496, + 0xb5, 1888, + '\t', 1447, + ' ', 1447, + 'B', 1650, + 'b', 1650, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 640: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1787, + ';', 1448, 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'a', 1862, + 'd', 1821, + 'e', 1772, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'o', 1775, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + 'x', 1868, + '|', 1449, + '}', 1496, + 0xb5, 1888, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(657); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 641: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1787, + ';', 1448, 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + 'G', 1807, + 'K', 1807, + 'M', 1807, + 'P', 1807, + 'T', 1807, + 'd', 1821, + 'e', 1772, + 'g', 1806, + 'h', 1875, + 'k', 1806, + 'm', 1809, + 'n', 1888, + 'o', 1776, + 'p', 1806, + 's', 1836, + 't', 1806, + 'u', 1888, + 'w', 1855, + '|', 1449, + '}', 1496, + 0xb5, 1888, + '\t', 1447, + ' ', 1447, + 'B', 1650, + 'b', 1650, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 642: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1787, + ';', 1448, + 'E', 1816, + '_', 1810, + 'a', 1862, + 'e', 1766, + 'o', 1775, + 'x', 1868, + '|', 1449, + '}', 1496, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 643: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1775, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1787, + ';', 1448, + 'E', 1816, + '_', 1810, + 'e', 1766, + 'o', 1776, + '|', 1449, + '}', 1496, + '\t', 1447, + ' ', 1447, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 644: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1775, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1787, + ';', 1448, + 'E', 1816, + 'a', 1862, + 'e', 1766, + 'o', 1775, + 'x', 1868, + '|', 1449, + '}', 1496, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 645: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1787, + ';', 1448, + 'E', 1816, + 'e', 1766, + 'o', 1776, + '|', 1449, + '}', 1496, + '\t', 1447, + ' ', 1447, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 646: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - '_', 1813, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1787, + ';', 1448, + 'a', 1862, + 'e', 1774, + 'o', 1775, + 'x', 1868, + '|', 1449, + '}', 1496, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 647: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1787, + ';', 1448, + 'e', 1774, + 'o', 1776, + '|', 1449, + '}', 1496, + '\t', 1447, + ' ', 1447, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 648: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1591, + ';', 1448, + 'E', 1816, + 'a', 1862, + 'e', 1766, + 'o', 1775, + 'x', 1868, + '|', 1449, + '}', 1496, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 649: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2185, + '(', 1558, + ')', 1465, + '.', 1591, + ';', 1448, + 'E', 1816, + 'e', 1766, + 'o', 1776, + '|', 1449, + '}', 1496, + '\t', 1447, + ' ', 1447, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 650: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2185, + '(', 1558, + ')', 1465, + ';', 1448, + 'E', 1816, + '_', 1810, + 'a', 1862, + 'e', 1766, + 'o', 1775, + 'x', 1868, + '|', 1449, + '}', 1496, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 651: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1594, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2185, + '(', 1558, + ')', 1465, + ';', 1448, + 'E', 1816, + '_', 1810, + 'e', 1766, + 'o', 1776, + '|', 1449, + '}', 1496, + '\t', 1447, + ' ', 1447, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 652: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1594, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2185, + '(', 1558, + ')', 1465, + ';', 1448, + 'E', 1816, + 'a', 1862, + 'e', 1766, + 'o', 1775, + 'x', 1868, + '|', 1449, + '}', 1496, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 653: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2185, + '(', 1558, + ')', 1465, + ';', 1448, + 'E', 1816, + 'e', 1766, + 'o', 1776, + '|', 1449, + '}', 1496, + '\t', 1447, + ' ', 1447, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 654: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - '_', 1813, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2185, + '(', 1558, + ')', 1465, + ';', 1448, + 'a', 1862, + 'e', 1774, + 'o', 1775, + 'x', 1868, + '|', 1449, + '}', 1496, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 655: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2185, + '(', 1558, + ')', 1465, + ';', 1448, + 'e', 1774, + 'o', 1776, + '|', 1449, + '}', 1496, + '\t', 1447, + ' ', 1447, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 656: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '#', 2185, + ')', 1465, + ';', 1448, + '=', 1726, + 'e', 1753, + 'o', 1754, + '|', 1449, + '}', 1496, + '\t', 1447, + ' ', 1447, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1759); END_STATE(); case 657: - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '#', 2185, + ')', 1465, + ';', 1448, + 'a', 419, + 'e', 288, + 'o', 289, + 'x', 429, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(657); END_STATE(); case 658: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 659: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ')', 1468, - ';', 1451, - '=', 1729, - 'e', 1756, - 'o', 1757, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - ); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); case 660: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ')', 1468, - ';', 1451, - 'a', 421, - 'e', 288, - 'o', 289, - 'x', 431, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); + ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); case 661: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(660); + if (lookahead == '\r') ADVANCE(662); + if (lookahead == '#') ADVANCE(2186); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(661); + if (lookahead != 0) ADVANCE(662); END_STATE(); case 662: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(660); + if (lookahead == '\r') ADVANCE(662); + if (lookahead != 0) ADVANCE(662); END_STATE(); case 663: - ACCEPT_TOKEN(aux_sym_shebang_token1); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 664: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead == '#') ADVANCE(2189); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(664); - if (lookahead != 0) ADVANCE(665); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(1392); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 665: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead != 0) ADVANCE(665); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(739); END_STATE(); case 666: ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 667: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1395); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 668: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(742); + ACCEPT_TOKEN(anon_sym_alias); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 669: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_alias); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 670: - ACCEPT_TOKEN(anon_sym_alias); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 671: - ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1544); + if (lookahead == '~') ADVANCE(1550); END_STATE(); case 672: - ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(1497); END_STATE(); case 673: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 674: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); + ACCEPT_TOKEN(anon_sym_let); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 675: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(1500); + ACCEPT_TOKEN(anon_sym_let); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 676: - ACCEPT_TOKEN(anon_sym_let); + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); case 677: - ACCEPT_TOKEN(anon_sym_let); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_mut); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 678: - ACCEPT_TOKEN(anon_sym_let); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_mut); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 679: - ACCEPT_TOKEN(anon_sym_mut); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 680: - ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_const); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 681: - ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_const); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 682: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 683: - ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 684: - ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 686: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 687: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '$') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '{') ADVANCE(1703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(763); + if (lookahead == '>') ADVANCE(520); + if (lookahead == 'l') ADVANCE(783); + if (lookahead == 'r') ADVANCE(772); + if (lookahead == 'x') ADVANCE(768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 689: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '+') ADVANCE(764); + if (lookahead == '>') ADVANCE(523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 690: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '{') ADVANCE(1706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(742); + if (lookahead == '>') ADVANCE(521); + if (lookahead == 'u') ADVANCE(792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 691: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(766); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'r') ADVANCE(775); - if (lookahead == 'x') ADVANCE(771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(741); + if (lookahead == '>') ADVANCE(525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 692: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(767); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '-') ADVANCE(818); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 693: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(745); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(795); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 694: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(744); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1504); + if (lookahead == '_') ADVANCE(715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1501); + if (lookahead == '_') ADVANCE(715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1590); + if (lookahead == '_') ADVANCE(715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1504); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(696); + if (lookahead == '_') ADVANCE(715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '_') ADVANCE(699); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1593); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == ':') ADVANCE(552); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(699); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(522); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(717); - if (lookahead == '_') ADVANCE(702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ADVANCE_MAP( + 'I', 803, + '_', 716, + 'i', 803, + 'l', 783, + 'x', 768, + '+', 716, + '-', 716, + 'B', 1650, + 'b', 1650, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(803); + if (lookahead == '_') ADVANCE(716); + if (lookahead == 'i') ADVANCE(723); + if (lookahead == '+' || + lookahead == '-') ADVANCE(716); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ADVANCE_MAP( + 'I', 803, + 'a', 793, + 'i', 760, + 'o', 727, + 's', 1655, + 'u', 788, + 'B', 1650, + 'b', 1650, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 806, - '_', 719, - 'i', 806, - 'l', 786, - 'x', 771, - '+', 719, - '-', 719, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(803); + if (lookahead == 'i') ADVANCE(803); + if (lookahead == 'l') ADVANCE(783); + if (lookahead == 'x') ADVANCE(768); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == '_') ADVANCE(719); - if (lookahead == 'i') ADVANCE(726); - if (lookahead == '+' || - lookahead == '-') ADVANCE(719); + if (lookahead == 'I') ADVANCE(803); + if (lookahead == 'i') ADVANCE(803); + if (lookahead == 'r') ADVANCE(796); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 806, - 'a', 796, - 'i', 763, - 'o', 730, - 's', 1658, - 'u', 791, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(803); + if (lookahead == 'i') ADVANCE(803); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'x') ADVANCE(771); + if (lookahead == 'I') ADVANCE(803); + if (lookahead == 'i') ADVANCE(723); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); - if (lookahead == 'r') ADVANCE(799); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N') ADVANCE(804); + if (lookahead == 'f') ADVANCE(1065); + if (lookahead == 'n') ADVANCE(1081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(713); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(726); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(714); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(807); - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'n') ADVANCE(1084); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(716); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(717); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(786); + if (lookahead == 'o') ADVANCE(761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(719); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(800); + if (lookahead == 'e') ADVANCE(743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(757); + if (lookahead == 'o') ADVANCE(770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(789); - if (lookahead == 'o') ADVANCE(764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(778); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(803); - if (lookahead == 'e') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'o') ADVANCE(727); + if (lookahead == 'u') ADVANCE(788); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'o') ADVANCE(773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(781); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(796); - if (lookahead == 'o') ADVANCE(730); - if (lookahead == 'u') ADVANCE(791); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'd') ADVANCE(798); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1089); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(787); + if (lookahead == 'o') ADVANCE(762); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(724); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(775); + if (lookahead == 'i') ADVANCE(754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(790); - if (lookahead == 'o') ADVANCE(765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(727); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(773); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(778); - if (lookahead == 'i') ADVANCE(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(776); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(762); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(702); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(776); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'f') ADVANCE(822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(1074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(1077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(750); + if (lookahead == 'k') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(750); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'i') ADVANCE(721); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(753); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'i') ADVANCE(754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(724); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(1092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(752); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(783); + if (lookahead == 'x') ADVANCE(768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(785); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(1050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'x') ADVANCE(771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(1655); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1053); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(767); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(797); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(789); + if (lookahead == 'u') ADVANCE(753); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'p') ADVANCE(1059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(777); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'p') ADVANCE(765); + if (lookahead == 't') ADVANCE(740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(792); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(796); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(1056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(768); - if (lookahead == 't') ADVANCE(743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1059); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(791); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(780); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1655); + if (lookahead == 'u') ADVANCE(753); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(730); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1659); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 's') ADVANCE(732); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(725); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(793); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(812); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(679); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(679); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(691); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(694); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(753); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(731); + if (lookahead == 'y') ADVANCE(1071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(794); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(755); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(734); - if (lookahead == 'y') ADVANCE(1074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'v') ADVANCE(1047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'y') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '{') ADVANCE(1703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '{') ADVANCE(1706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(809); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1099); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1106); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(812); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(805); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(810); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1095); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(808); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1557); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(692); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(815); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(821); END_STATE(); case 822: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 823: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_def); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 824: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_def); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 825: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '+') ADVANCE(897); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == 'r') ADVANCE(1529); + if (lookahead == 'u') ADVANCE(990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 826: - ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '+') ADVANCE(942); + if (lookahead == '>') ADVANCE(1734); + if (lookahead == 'n') ADVANCE(886); + if (lookahead == 'r') ADVANCE(957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 827: - ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == '+') ADVANCE(898); + if (lookahead == '>') ADVANCE(1732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(900); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1532); - if (lookahead == 'u') ADVANCE(993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(944); + if (lookahead == '>') ADVANCE(1730); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(945); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(889); - if (lookahead == 'r') ADVANCE(960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(900); + if (lookahead == '>') ADVANCE(521); + if (lookahead == 'r') ADVANCE(1529); + if (lookahead == 'u') ADVANCE(996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(901); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(950); + if (lookahead == '>') ADVANCE(520); + if (lookahead == 'n') ADVANCE(886); + if (lookahead == 'r') ADVANCE(963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(947); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(952); + if (lookahead == '>') ADVANCE(523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '+') ADVANCE(903); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1532); - if (lookahead == 'u') ADVANCE(999); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(953); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(889); - if (lookahead == 'r') ADVANCE(966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1033); + if (lookahead == '_') ADVANCE(863); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(955); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(877); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(906); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1036); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); - END_STATE(); + if (lookahead == '-') ADVANCE(1482); + if (lookahead == '.') ADVANCE(863); + if (lookahead == '_') ADVANCE(845); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); + END_STATE(); case 838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1485); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1038); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1041); + if (lookahead == '_') ADVANCE(863); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(863); + if (lookahead == '_') ADVANCE(845); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(863); + if (lookahead == '_') ADVANCE(845); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1044); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(1505); + if (lookahead == '_') ADVANCE(863); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == ':') ADVANCE(552); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == ':') ADVANCE(2066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(1508); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '=') ADVANCE(1545); + if (lookahead == '~') ADVANCE(1552); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(2069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(522); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N') ADVANCE(1018); + if (lookahead == 'f') ADVANCE(1067); + if (lookahead == 'n') ADVANCE(1082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'T') ADVANCE(1036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'T') ADVANCE(1037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N') ADVANCE(1021); - if (lookahead == 'f') ADVANCE(1070); - if (lookahead == 'n') ADVANCE(1085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(863); + if (lookahead == 'b') ADVANCE(1649); + if (lookahead == 'o') ADVANCE(1659); + if (lookahead == 'x') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(863); + if (lookahead == 'b') ADVANCE(1649); + if (lookahead == 'o') ADVANCE(1659); + if (lookahead == 'x') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(863); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'o') ADVANCE(1662); - if (lookahead == 'x') ADVANCE(1664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(863); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'o') ADVANCE(1662); - if (lookahead == 'x') ADVANCE(1664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(863); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(863); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(863); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); + if (lookahead == '_') ADVANCE(863); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); + if (lookahead == '_') ADVANCE(863); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(925); + if (lookahead == 'o') ADVANCE(962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(928); - if (lookahead == 'o') ADVANCE(965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(984); + if (lookahead == 'o') ADVANCE(939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(938); + if (lookahead == 'o') ADVANCE(959); + if (lookahead == 's') ADVANCE(906); + if (lookahead == 'x') ADVANCE(951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(1000); + if (lookahead == 'o') ADVANCE(885); + if (lookahead == 'u') ADVANCE(986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(987); - if (lookahead == 'o') ADVANCE(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(941); - if (lookahead == 'o') ADVANCE(962); - if (lookahead == 's') ADVANCE(909); - if (lookahead == 'x') ADVANCE(954); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'c') ADVANCE(911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(1003); - if (lookahead == 'o') ADVANCE(888); - if (lookahead == 'u') ADVANCE(989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'c') ADVANCE(912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1569); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1088); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1556); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1070); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(985); + if (lookahead == 'o') ADVANCE(943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(940); + if (lookahead == 'h') ADVANCE(874); + if (lookahead == 'i') ADVANCE(935); + if (lookahead == 'l') ADVANCE(921); + if (lookahead == 's') ADVANCE(1004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(988); - if (lookahead == 'o') ADVANCE(946); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'f') ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(943); - if (lookahead == 'h') ADVANCE(877); - if (lookahead == 'i') ADVANCE(938); - if (lookahead == 'l') ADVANCE(924); - if (lookahead == 's') ADVANCE(1007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1541); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'f') ADVANCE(827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1537); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1543); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1544); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1539); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1076); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1546); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'k') ADVANCE(890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'k') ADVANCE(891); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(1094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(1579); + if (lookahead == 'r') ADVANCE(1581); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1582); - if (lookahead == 'r') ADVANCE(1584); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(978); + if (lookahead == 'x') ADVANCE(955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1085); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(981); - if (lookahead == 'x') ADVANCE(958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(983); + if (lookahead == 'u') ADVANCE(928); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(954); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(986); - if (lookahead == 'u') ADVANCE(931); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(885); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'p') ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'p') ADVANCE(953); + if (lookahead == 't') ADVANCE(901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(1064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(956); - if (lookahead == 't') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1587); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1585); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1590); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1058); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(964); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1005); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(967); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(1533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(1535); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(980); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(884); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(879); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(888); + if (lookahead == 'y') ADVANCE(1073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(888); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(928); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(891); - if (lookahead == 'y') ADVANCE(1076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'u') ADVANCE(931); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'v') ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(1002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(917); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(934); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'v') ADVANCE(1052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'w') ADVANCE(920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'x') ADVANCE(1001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'x') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1043); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1027); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1557); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '0' || - lookahead == '1' || + if (('0' <= lookahead && lookahead <= '7') || lookahead == '_') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1030); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1044: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 1045: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_use); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1046: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_use); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1047: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(anon_sym_export_DASHenv); END_STATE(); case 1048: - ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1049: - ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1050: - ACCEPT_TOKEN(anon_sym_export_DASHenv); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 1051: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_extern); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1052: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_extern); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1053: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 1054: - ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_module); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1055: - ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_module); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1056: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 1057: - ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_for); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1058: - ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_for); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1059: - ACCEPT_TOKEN(anon_sym_for); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 1060: - ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_loop); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1061: - ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_loop); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1062: - ACCEPT_TOKEN(anon_sym_loop); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 1063: - ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_while); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1064: - ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_while); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1065: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 1066: - ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_if); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1067: - ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1068: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 1069: - ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_else); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1070: - ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_else); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1071: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 1072: - ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_try); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1073: - ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_try); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1074: - ACCEPT_TOKEN(anon_sym_try); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 1075: - ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_catch); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1076: - ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_catch); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1077: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 1078: - ACCEPT_TOKEN(anon_sym_catch); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_match); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1079: - ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_match); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1080: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 1081: - ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1096); END_STATE(); case 1082: - ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1083: ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1438); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1084: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1099); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1085: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1086: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 1087: - ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1088: - ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1089: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 1090: - ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1091: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1092: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 1093: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1094: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1095: - ACCEPT_TOKEN(anon_sym_null); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); END_STATE(); case 1096: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(808); END_STATE(); case 1097: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2049); END_STATE(); case 1098: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2104); END_STATE(); case 1099: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(811); + lookahead == 'i') ADVANCE(2158); END_STATE(); case 1100: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2052); + lookahead == 'i') ADVANCE(540); END_STATE(); case 1101: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2107); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); END_STATE(); case 1102: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2161); + lookahead == 'i') ADVANCE(538); END_STATE(); case 1103: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(543); + lookahead == 'i') ADVANCE(1928); END_STATE(); case 1104: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2106); END_STATE(); case 1105: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(541); + lookahead == 'i') ADVANCE(2160); END_STATE(); case 1106: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1931); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); END_STATE(); case 1107: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2109); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 1108: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2163); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 1109: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(1107); END_STATE(); case 1110: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(1113); END_STATE(); case 1111: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_SLASH); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1112: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1110); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 1113: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1116); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 1114: - ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1108); END_STATE(); case 1115: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 1116: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); case 1117: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1111); + ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); case 1118: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 1119: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 1120: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(anon_sym_like); END_STATE(); case 1121: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_not_DASHlike); END_STATE(); case 1122: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); case 1123: - ACCEPT_TOKEN(anon_sym_like); + ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); case 1124: - ACCEPT_TOKEN(anon_sym_not_DASHlike); + ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); case 1125: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 1126: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 1127: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 1128: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_in2); END_STATE(); case 1129: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); case 1130: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_has); END_STATE(); case 1131: - ACCEPT_TOKEN(anon_sym_in2); + ACCEPT_TOKEN(anon_sym_not_DASHhas); END_STATE(); case 1132: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); case 1133: - ACCEPT_TOKEN(anon_sym_has); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); END_STATE(); case 1134: - ACCEPT_TOKEN(anon_sym_not_DASHhas); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); case 1135: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); END_STATE(); case 1136: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 1137: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 1138: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 1139: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(1140); END_STATE(); case 1140: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 1141: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1142); END_STATE(); case 1142: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1143); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 1143: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + ADVANCE_MAP( + '\n', 1445, + '\r', 1, + '!', 1206, + '#', 2185, + ')', 1465, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, + '=', 319, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + '_', 1221, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(21); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1144: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1145); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + ADVANCE_MAP( + '\n', 1445, + '\r', 1, + '!', 1206, + '#', 2185, + ')', 1465, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, + '=', 319, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + '_', 1221, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1195, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1145: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 1146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + ')', 1465, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1147: + case 1146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + ')', 1465, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1195, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1148: + case 1147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + ')', 1465, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, + '>', 1141, + 'B', 1650, 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1149: + case 1148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + ')', 1465, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, + '>', 1141, + 'B', 1650, 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1193, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1150: + case 1149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + ')', 1465, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1592, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1151: + case 1150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + ')', 1465, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1592, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1195, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1152: + case 1151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + ')', 1465, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'a', 1263, + 'b', 1252, + 'e', 1191, + 'h', 1227, + 'i', 1265, + 'l', 1253, + 'm', 1273, + 'n', 1277, + 'o', 1188, + 's', 1299, + 'x', 1272, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1153: + case 1152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + ')', 1465, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'a', 1263, + 'b', 1252, + 'e', 1194, + 'h', 1227, + 'i', 1265, + 'l', 1253, + 'm', 1273, + 'n', 1277, + 'o', 1196, + 's', 1299, + 'x', 1272, + '|', 1449, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1154: + case 1153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ':', 1710, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + '_', 1221, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + '}', 1496, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1155: + case 1154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ':', 1710, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + '}', 1496, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1156: + case 1155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ':', 1710, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, + '>', 1141, + 'B', 1650, 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + '}', 1496, + 0xb5, 1291, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1157: + case 1156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + '_', 1221, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + '}', 1496, + 0xb5, 1291, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1158: + case 1157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + '_', 1221, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1195, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + '}', 1496, + 0xb5, 1291, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); + END_STATE(); + case 1158: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + ADVANCE_MAP( + '\n', 1445, + '\r', 1, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, + '=', 319, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + '}', 1496, + 0xb5, 1291, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1195, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + '}', 1496, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, + '>', 1141, + 'B', 1650, 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1190, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + '}', 1496, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, + '>', 1141, + 'B', 1650, 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1193, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + '}', 1496, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + '_', 1221, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + '_', 1221, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1195, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1195, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, + '>', 1141, + 'B', 1650, 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, + '>', 1141, + 'B', 1650, 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1193, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1592, + '/', 1110, + ':', 1710, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + '}', 1496, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1592, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + '}', 1496, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1592, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1195, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + '}', 1496, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1592, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1592, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1195, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'a', 1263, + 'b', 1252, + 'e', 1191, + 'h', 1227, + 'i', 1265, + 'l', 1253, + 'm', 1273, + 'n', 1277, + 'o', 1188, + 's', 1299, + 'x', 1272, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'a', 1263, + 'b', 1252, + 'e', 1194, + 'h', 1227, + 'i', 1265, + 'l', 1253, + 'm', 1273, + 'n', 1277, + 'o', 1196, + 's', 1299, + 'x', 1272, + '|', 1449, + '}', 1496, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'a', 1263, + 'b', 1252, + 'e', 1191, + 'h', 1227, + 'i', 1265, + 'l', 1253, + 'm', 1273, + 'n', 1277, + 'o', 1188, + 's', 1299, + 'x', 1272, + '|', 1449, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, + '>', 1141, + 'a', 1263, + 'b', 1252, 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, - '}', 1499, + 'h', 1227, + 'i', 1265, + 'l', 1253, + 'm', 1273, + 'n', 1277, + 'o', 1196, + 's', 1299, + 'x', 1272, + '|', 1449, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1591, + '/', 1110, + ':', 1710, + '<', 1139, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, - '}', 1499, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1215, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1279, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(266); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1591, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1215, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1279, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(272); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + ':', 1710, + '<', 1139, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + '_', 1221, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1215, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1279, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(266); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1594, - '/', 1113, - ':', 1713, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + ':', 1710, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1215, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1279, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + 0xb5, 1291, ); if (lookahead == '\t' || lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1594, - '/', 1113, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + ':', 1710, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, + '>', 1141, + 'B', 1650, 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1217, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1279, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(266); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + '_', 1221, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1215, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1279, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1215, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1279, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(272); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1220, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1219, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1217, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1279, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(272); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '>', 1141, + 'a', 1263, + 'b', 1252, + 'e', 1267, + 'h', 1227, + 'i', 1265, + 'l', 1253, + 'm', 1273, + 'n', 1277, + 'o', 1279, + 's', 1299, + 'x', 1272, ); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, - ); + if (lookahead == '#') ADVANCE(2185); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1220, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '+', 1222, + '-', 1224, + '>', 1734, + 'I', 1319, + '_', 1224, + 'i', 1319, + 'n', 1237, + 'r', 1280, + 'B', 1650, + 'b', 1650, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1270, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1282, - 's', 1302, - 'x', 1275, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1242); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == 'r') ADVANCE(1127); + if (lookahead == 'u') ADVANCE(1301); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1271); + if (lookahead == '>') ADVANCE(1730); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1224, - '-', 1226, - '>', 1737, - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - 'r', 1283, - 'B', 1653, - 'b', 1653, + '+', 1270, + '>', 1734, + 'I', 1319, + 'i', 1319, + 'n', 1237, + 'r', 1280, + 'B', 1650, + 'b', 1650, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1245); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1130); - if (lookahead == 'u') ADVANCE(1304); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1270); + if (lookahead == '>') ADVANCE(1734); + if (lookahead == 'n') ADVANCE(1237); + if (lookahead == 'r') ADVANCE(1280); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1274); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1243); + if (lookahead == '>') ADVANCE(1732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1273, - '>', 1737, - 'I', 1322, - 'i', 1322, - 'n', 1240, - 'r', 1283, - 'B', 1653, - 'b', 1653, + '+', 1274, + '>', 520, + 'I', 1319, + 'i', 1319, + 'n', 1237, + 'r', 1285, + 'B', 1650, + 'b', 1650, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1273); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1274); + if (lookahead == '>') ADVANCE(520); + if (lookahead == 'n') ADVANCE(1237); + if (lookahead == 'r') ADVANCE(1285); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1246); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '+', 1223, + '-', 1224, + '>', 520, + 'I', 1319, + '_', 1224, + 'i', 1319, + 'n', 1237, + 'r', 1285, + 'B', 1650, + 'b', 1650, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1277, - '>', 523, - 'I', 1322, - 'i', 1322, - 'n', 1240, - 'r', 1288, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1244); + if (lookahead == '>') ADVANCE(521); + if (lookahead == 'r') ADVANCE(1127); + if (lookahead == 'u') ADVANCE(1305); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1277); + if (lookahead == '+') ADVANCE(1278); if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1288); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1225, - '-', 1226, - '>', 523, - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - 'r', 1288, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1245); + if (lookahead == '>') ADVANCE(525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1247); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1130); - if (lookahead == 'u') ADVANCE(1308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1281); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1246); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1248); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1314); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '.') ADVANCE(1590); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '=') ADVANCE(1137); + if (lookahead == '~') ADVANCE(1119); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '=') ADVANCE(1140); - if (lookahead == '~') ADVANCE(1122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(522); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + 'I', 1319, + '_', 1224, + 'i', 1319, + 'n', 1237, + '+', 1224, + '-', 1224, + 'B', 1650, + 'b', 1650, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1319); + if (lookahead == '_') ADVANCE(1224); + if (lookahead == 'i') ADVANCE(1232); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1224); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1319); + if (lookahead == 'i') ADVANCE(1319); + if (lookahead == 'n') ADVANCE(1237); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - '+', 1226, - '-', 1226, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1319); + if (lookahead == 'i') ADVANCE(1319); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'i') ADVANCE(1235); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1226); + if (lookahead == 'I') ADVANCE(1319); + if (lookahead == 'i') ADVANCE(1232); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1322); - if (lookahead == 'n') ADVANCE(1240); + if (lookahead == 'I') ADVANCE(1319); + if (lookahead == 'i') ADVANCE(1264); + if (lookahead == 'o') ADVANCE(1235); + if (lookahead == 's') ADVANCE(1655); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1322); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1235); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1224); + if (lookahead == 'o') ADVANCE(1207); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1267); - if (lookahead == 'o') ADVANCE(1238); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1224); + if (lookahead == 'o') ADVANCE(1211); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'o') ADVANCE(1210); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1224); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'o') ADVANCE(1214); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1292); + if (lookahead == 'r') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1227); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1292); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1284); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1295); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1293); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1295); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1268); + if (lookahead == 'o') ADVANCE(1282); + if (lookahead == 's') ADVANCE(1247); + if (lookahead == 'x') ADVANCE(1275); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1287); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1296); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1271); - if (lookahead == 'o') ADVANCE(1285); - if (lookahead == 's') ADVANCE(1250); - if (lookahead == 'x') ADVANCE(1278); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'c') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1125); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1122); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1294); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1296); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1125); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1233); + if (lookahead == 't') ADVANCE(1228); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1297); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1120); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1121); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1236); - if (lookahead == 't') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1208); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1123); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1287); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1124); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1212); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1211); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1288); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1290); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1269); + if (lookahead == 'h') ADVANCE(1229); + if (lookahead == 'i') ADVANCE(1266); + if (lookahead == 'l') ADVANCE(1258); + if (lookahead == 's') ADVANCE(1311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1215); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1291); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1272); - if (lookahead == 'h') ADVANCE(1232); - if (lookahead == 'i') ADVANCE(1269); - if (lookahead == 'l') ADVANCE(1261); - if (lookahead == 's') ADVANCE(1314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1135); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1137); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1133); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1135); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1298); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1260); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1136); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1302); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1305); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1307); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1307); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1261); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1240); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'l') ADVANCE(1116); + if (lookahead == 'r') ADVANCE(1117); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1655); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'l') ADVANCE(1119); - if (lookahead == 'r') ADVANCE(1120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1207); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1281); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1210); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1211); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1284); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1283); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1300); + if (lookahead == 's') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1286); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1303); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1303); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1189); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1316); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1124); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1192); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1123); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1129); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1197); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1210); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1312); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1286); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1200); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1289); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1214); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1289); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1217); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1130); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1131); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1201); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1133); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1202); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1203); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1205); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1199); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1206); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1228); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1200); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1202); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1192); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1203); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1209); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1198); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1252); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1201); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1213); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1295); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1297); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1216); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1231); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1298); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'u') ADVANCE(1303); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1300); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'u') ADVANCE(1308); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'w') ADVANCE(1254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'w') ADVANCE(1255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'w') ADVANCE(1256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'w') ADVANCE(1257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'y') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1320); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); - END_STATE(); - case 1322: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); - END_STATE(); - case 1323: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); - END_STATE(); - case 1324: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + '_', 1221, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1325: + case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + '_', 1221, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1195, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(618); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1326: + case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1327: + case 1324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1195, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1328: + case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, + '>', 1141, + 'B', 1650, 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1329: + case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1205, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, + '>', 1141, + 'B', 1650, 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1193, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1330: + case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1592, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1187, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1188, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1331: + case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '.', 1592, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '>', 1141, + 'B', 1650, + 'E', 1216, + 'G', 1219, + 'K', 1219, + 'M', 1219, + 'P', 1219, + 'T', 1219, + 'a', 1263, + 'b', 1651, + 'd', 1225, + 'e', 1195, + 'g', 1218, + 'h', 1226, + 'i', 1265, + 'k', 1218, + 'l', 1253, + 'm', 1220, + 'n', 1276, + 'o', 1196, + 'p', 1218, + 's', 1239, + 't', 1218, + 'u', 1291, + 'w', 1259, + 'x', 1272, + '|', 1449, + 0xb5, 1291, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1332: + case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + '>', 1141, + 'a', 1263, + 'b', 1252, + 'e', 1191, + 'h', 1227, + 'i', 1265, + 'l', 1253, + 'm', 1273, + 'n', 1277, + 'o', 1188, + 's', 1299, + 'x', 1272, + '|', 1449, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1333: + case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(658); ADVANCE_MAP( - '\n', 1448, + '\n', 1445, '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, + '!', 1206, + '#', 2185, + '*', 1109, + '+', 1114, + '-', 1115, + '/', 1110, + ';', 1448, + '<', 1139, '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, + '>', 1141, + 'a', 1263, + 'b', 1252, + 'e', 1194, + 'h', 1227, + 'i', 1265, + 'l', 1253, + 'm', 1273, + 'n', 1277, + 'o', 1196, + 's', 1299, + 'x', 1272, + '|', 1449, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1320); END_STATE(); - case 1334: + case 1331: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == '_') ADVANCE(1346); - if (lookahead == 'i') ADVANCE(1372); + if (lookahead == '+') ADVANCE(1343); + if (lookahead == '-') ADVANCE(1971); + if (lookahead == 'I') ADVANCE(1369); + if (lookahead == '_') ADVANCE(1343); + if (lookahead == 'i') ADVANCE(1369); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + lookahead == 'b') ADVANCE(1654); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); - case 1335: + case 1332: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == '_') ADVANCE(1346); - if (lookahead == 'i') ADVANCE(1349); + if (lookahead == '+') ADVANCE(1343); + if (lookahead == '-') ADVANCE(1971); + if (lookahead == 'I') ADVANCE(1369); + if (lookahead == '_') ADVANCE(1343); + if (lookahead == 'i') ADVANCE(1346); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + lookahead == 'b') ADVANCE(1654); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); + END_STATE(); + case 1333: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+') ADVANCE(1343); + if (lookahead == '-') ADVANCE(1971); + if (lookahead == '_') ADVANCE(1343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); + END_STATE(); + case 1334: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(446); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); + END_STATE(); + case 1335: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(359); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1336: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == '_') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(430); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1337: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(448); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(447); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1338: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(360); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(514); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1339: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(432); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'I') ADVANCE(1369); + if (lookahead == 'i') ADVANCE(1369); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1654); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1340: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(449); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'I') ADVANCE(1369); + if (lookahead == 'i') ADVANCE(1346); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1654); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1341: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(517); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'I') ADVANCE(1369); + if (lookahead == 'i') ADVANCE(1357); + if (lookahead == 's') ADVANCE(1657); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1654); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1342: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1372); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '_') ADVANCE(1342); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1607); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1343: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1349); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '_') ADVANCE(1343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1344: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1360); - if (lookahead == 's') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'a') ADVANCE(1364); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1345: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'a') ADVANCE(1368); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1346: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'b') ADVANCE(1654); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1347: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1367); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'c') ADVANCE(1657); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1348: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1371); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'e') ADVANCE(1352); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1349: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'e') ADVANCE(1336); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1350: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'e') ADVANCE(1347); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1351: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1355); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'k') ADVANCE(1657); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1352: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1339); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1353); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1353: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1350); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1334); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1354: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1335); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1355: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1356); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1354); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1356: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1337); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'm') ADVANCE(1361); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1338); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'n') ADVANCE(1657); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1654); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1357); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'n') ADVANCE(1084); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1364); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'n') ADVANCE(1349); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'o') ADVANCE(1362); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1087); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'p') ADVANCE(1360); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1352); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'r') ADVANCE(1366); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1365); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'r') ADVANCE(1657); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(1363); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'r') ADVANCE(1338); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1369); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 's') ADVANCE(1657); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 't') ADVANCE(1337); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1341); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'u') ADVANCE(1355); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'y') ADVANCE(1657); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1654); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1358); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1371: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(436); + if (lookahead == '>') ADVANCE(520); + if (lookahead == 'r') ADVANCE(1416); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1372: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(378); + if (lookahead == '>') ADVANCE(521); + if (lookahead == 'u') ADVANCE(1429); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1373: - ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(441); + if (lookahead == '>') ADVANCE(523); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1374: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1419); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(382); + if (lookahead == '>') ADVANCE(525); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1375: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(1432); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N') ADVANCE(1436); + if (lookahead == 'f') ADVANCE(1066); + if (lookahead == 'n') ADVANCE(1083); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1376: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '_') ADVANCE(1376); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1376); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1377: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1424); + if (lookahead == 'o') ADVANCE(1409); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1378: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(1439); - if (lookahead == 'f') ADVANCE(1069); - if (lookahead == 'n') ADVANCE(1086); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1406); + if (lookahead == 'o') ADVANCE(1415); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1379: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1379); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1419); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1380: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1427); - if (lookahead == 'o') ADVANCE(1412); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1430); + if (lookahead == 'o') ADVANCE(1383); + if (lookahead == 'u') ADVANCE(1426); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1381: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1409); - if (lookahead == 'o') ADVANCE(1418); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'c') ADVANCE(1395); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1382: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1422); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'c') ADVANCE(1396); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1383: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1433); - if (lookahead == 'o') ADVANCE(1386); - if (lookahead == 'u') ADVANCE(1429); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'd') ADVANCE(1433); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1384: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1398); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1394); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1385: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1399); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1045); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1386: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1436); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1069); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1387: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1397); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1087); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1388: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1048); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1090); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1389: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1072); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1063); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1390: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1090); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1054); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1391: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1093); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1425); + if (lookahead == 'o') ADVANCE(1410); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1392: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1066); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1408); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1393: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1057); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1417); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1394: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1428); - if (lookahead == 'o') ADVANCE(1413); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'f') ADVANCE(823); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1395: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1411); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1075); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1396: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1420); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1078); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1397: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(826); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1399); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1398: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1078); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'i') ADVANCE(1379); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1399: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1081); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'i') ADVANCE(1403); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1400: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1402); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1398); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1401: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1382); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1093); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1402: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1406); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1401); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1403: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1401); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1389); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1404: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1096); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1390); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1405: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1404); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1421); + if (lookahead == 'x') ADVANCE(1413); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1406: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1392); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1423); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1407: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1393); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'n') ADVANCE(1051); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1408: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1424); - if (lookahead == 'x') ADVANCE(1416); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'n') ADVANCE(1434); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1409: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1426); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'n') ADVANCE(1422); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1410: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1054); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'o') ADVANCE(1412); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1411: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1437); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'o') ADVANCE(1418); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1412: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1425); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'p') ADVANCE(1060); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1413: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1415); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'p') ADVANCE(1411); + if (lookahead == 't') ADVANCE(1393); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1414: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1421); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1432); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1415: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1063); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1057); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1416: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1414); - if (lookahead == 't') ADVANCE(1396); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1373); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1417: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1435); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1407); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1418: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1060); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1428); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1419: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1376); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(668); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1410); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1385); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1431); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1386); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(671); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1427); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1423: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 's') ADVANCE(1388); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1389); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(1381); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1425: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1430); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(674); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1426: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1391); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(677); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1427: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1384); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(680); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(677); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(664); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(680); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(1374); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1430: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(683); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(1382); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(667); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'u') ADVANCE(1402); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1439); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1432: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1377); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'u') ADVANCE(1387); + if (lookahead == 'y') ADVANCE(1072); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1385); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'u') ADVANCE(1404); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1405); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'v') ADVANCE(1048); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1390); - if (lookahead == 'y') ADVANCE(1075); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1439); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1407); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1438); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1051); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1442); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1438: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1441); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1439: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1444); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1445); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1436); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1444); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1437); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1443); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1443: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1439); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1444); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1444: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1440); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1444); END_STATE(); case 1445: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1446); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 1446: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym__space); + if (lookahead == ':') ADVANCE(1710); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1446); END_STATE(); case 1447: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym__space); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1447); END_STATE(); case 1448: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 1449: - ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1449); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 1450: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 1451: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 1452: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 1453: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 1454: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 1455: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 1456: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 1457: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 1458: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); + ACCEPT_TOKEN(sym_attribute_identifier); + if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1458); END_STATE(); case 1459: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 1460: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 1461: - ACCEPT_TOKEN(sym_attribute_identifier); - if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1461); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 1462: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 1463: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 1464: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 1465: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 1466: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 1467: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 1468: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1699); + if (lookahead == '\'') ADVANCE(1698); END_STATE(); case 1469: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1699); + if (lookahead == '\'') ADVANCE(1698); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1470: ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1471: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 1472: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 1473: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 1474: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 1475: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 1476: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); case 1477: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(1549); END_STATE(); case 1478: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); case 1479: - ACCEPT_TOKEN(anon_sym_GT2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 1480: - ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(1552); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 1481: - ACCEPT_TOKEN(anon_sym_AT2); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 1482: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1483: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); case 1484: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1481); END_STATE(); case 1485: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1481); + if (lookahead == '.') ADVANCE(335); + if (lookahead == '_') ADVANCE(308); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); case 1486: ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(1481); + if (lookahead == '.') ADVANCE(1968); + if (lookahead == '_') ADVANCE(1958); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); END_STATE(); case 1487: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); + if (lookahead == '-') ADVANCE(1481); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '_') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); END_STATE(); case 1488: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); + if (lookahead == '.') ADVANCE(335); if (lookahead == '_') ADVANCE(308); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + lookahead == 'i') ADVANCE(536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); case 1489: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(1971); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '.') ADVANCE(863); + if (lookahead == '_') ADVANCE(845); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1490: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '.') ADVANCE(1811); + if (lookahead == '_') ADVANCE(1788); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); END_STATE(); case 1491: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '_') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); END_STATE(); case 1492: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '=') ADVANCE(683); END_STATE(); case 1493: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1494: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 1495: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(686); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 1496: - ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 1497: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 1498: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(2009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 1499: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym__); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1500: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 1501: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(687); + if (lookahead == '<') ADVANCE(1603); + if (lookahead == '=') ADVANCE(1602); END_STATE(); case 1502: - ACCEPT_TOKEN(anon_sym__); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(1985); + if (lookahead == '<') ADVANCE(1603); + if (lookahead == '=') ADVANCE(1602); END_STATE(); case 1503: ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(2075); + if (lookahead == '<') ADVANCE(1603); + if (lookahead == '=') ADVANCE(1602); END_STATE(); case 1504: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(690); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + if (lookahead == '<') ADVANCE(1603); + if (lookahead == '=') ADVANCE(1602); END_STATE(); case 1505: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1988); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + if (lookahead == '<') ADVANCE(1603); + if (lookahead == '=') ADVANCE(1602); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1043); END_STATE(); case 1506: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2078); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); case 1507: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + ACCEPT_TOKEN(anon_sym_DOLLAR2); + if (lookahead == '"') ADVANCE(1699); + if (lookahead == '\'') ADVANCE(1698); END_STATE(); case 1508: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); case 1509: - ACCEPT_TOKEN(anon_sym_DOLLAR2); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1559); END_STATE(); case 1510: - ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1559); + if (lookahead == '=') ADVANCE(684); END_STATE(); case 1511: ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1512: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1562); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'a') ADVANCE(1515); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1522); END_STATE(); case 1513: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1562); - if (lookahead == '=') ADVANCE(687); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'e') ADVANCE(1086); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1522); END_STATE(); case 1514: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1563); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'e') ADVANCE(1089); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1522); END_STATE(); case 1515: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'a') ADVANCE(1518); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'l') ADVANCE(1518); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1522); END_STATE(); case 1516: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'o') ADVANCE(1519); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1522); END_STATE(); case 1517: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'r') ADVANCE(1520); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1522); END_STATE(); case 1518: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'l') ADVANCE(1521); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 's') ADVANCE(1514); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1522); END_STATE(); case 1519: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'o') ADVANCE(1522); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 't') ADVANCE(1521); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1522); END_STATE(); case 1520: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'r') ADVANCE(1523); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'u') ADVANCE(1513); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1522); END_STATE(); case 1521: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 's') ADVANCE(1517); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1557); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1522); END_STATE(); case 1522: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 't') ADVANCE(1524); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1522); END_STATE(); case 1523: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'u') ADVANCE(1516); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 1524: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_and2); END_STATE(); case 1525: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_and2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1526: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); case 1527: - ACCEPT_TOKEN(anon_sym_and2); + ACCEPT_TOKEN(anon_sym_xor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1528: - ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_or2); END_STATE(); case 1529: - ACCEPT_TOKEN(anon_sym_xor2); + ACCEPT_TOKEN(anon_sym_or2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1530: - ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); case 1531: - ACCEPT_TOKEN(anon_sym_or2); + ACCEPT_TOKEN(anon_sym_not_DASHin2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1532: - ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_has2); END_STATE(); case 1533: - ACCEPT_TOKEN(anon_sym_not_DASHin2); + ACCEPT_TOKEN(anon_sym_has2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1534: - ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); END_STATE(); case 1535: - ACCEPT_TOKEN(anon_sym_has2); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1536: - ACCEPT_TOKEN(anon_sym_has2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); case 1537: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1538: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); END_STATE(); case 1539: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1540: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); case 1541: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1542: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); END_STATE(); case 1543: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1544: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); case 1545: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); case 1546: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 1547: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(1548); END_STATE(); case 1548: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); + ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); case 1549: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); case 1550: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1551); + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); case 1551: - ACCEPT_TOKEN(anon_sym_LT_EQ2); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); case 1552: - ACCEPT_TOKEN(anon_sym_GT_EQ2); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1553: - ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + ACCEPT_TOKEN(anon_sym_like2); END_STATE(); case 1554: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + ACCEPT_TOKEN(anon_sym_like2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1555: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); END_STATE(); case 1556: - ACCEPT_TOKEN(anon_sym_like2); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1557: - ACCEPT_TOKEN(anon_sym_like2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); case 1558: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 1559: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); case 1560: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1561: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); case 1562: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if (lookahead == '=') ADVANCE(686); END_STATE(); case 1563: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1564: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1570); END_STATE(); case 1565: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(689); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1570); + if (lookahead == '=') ADVANCE(685); END_STATE(); case 1566: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1571); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1567: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1573); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1568: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1573); - if (lookahead == '=') ADVANCE(688); + ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); case 1569: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1574); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_mod2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1570: - ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); case 1571: - ACCEPT_TOKEN(anon_sym_mod2); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1572: - ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1561); END_STATE(); case 1573: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1561); + if (lookahead == '.') ADVANCE(1811); + if (lookahead == '_') ADVANCE(1788); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); END_STATE(); case 1574: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1561); + if (lookahead == '.') ADVANCE(337); + if (lookahead == '_') ADVANCE(314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); END_STATE(); case 1575: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); + if (lookahead == '+') ADVANCE(1562); + if (lookahead == '=') ADVANCE(682); END_STATE(); case 1576: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '+') ADVANCE(1563); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1577: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '_') ADVANCE(699); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); case 1578: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1565); - if (lookahead == '=') ADVANCE(685); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); case 1579: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1580: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(717); - if (lookahead == '_') ADVANCE(702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); case 1581: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1582: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); case 1583: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1584: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); case 1585: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1586: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); case 1587: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); case 1588: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 1589: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1479); + if (lookahead == '<') ADVANCE(1605); + if (lookahead == '=') ADVANCE(1604); END_STATE(); case 1590: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '<') ADVANCE(1605); + if (lookahead == '=') ADVANCE(1604); END_STATE(); case 1591: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 1592: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1482); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1590); END_STATE(); case 1593: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1590); + if (lookahead == '_') ADVANCE(715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1594: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(1500); END_STATE(); case 1595: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1593); + if (lookahead == '.') ADVANCE(1500); + if (lookahead == '_') ADVANCE(1942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); END_STATE(); case 1596: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1593); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '.') ADVANCE(1961); END_STATE(); case 1597: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1503); + if (lookahead == '.') ADVANCE(1961); + if (lookahead == '_') ADVANCE(1969); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); END_STATE(); case 1598: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1503); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1589); END_STATE(); case 1599: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1592); + if (lookahead == '_') ADVANCE(1969); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); END_STATE(); case 1600: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1962); + if (lookahead == '_') ADVANCE(1942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); END_STATE(); case 1601: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '_') ADVANCE(1812); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); END_STATE(); case 1602: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 1603: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 1604: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 1605: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 1606: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1606); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); END_STATE(); case 1607: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(1607); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1607); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1608: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + if (lookahead == '_') ADVANCE(1608); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); END_STATE(); case 1609: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); if (lookahead == '_') ADVANCE(1609); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); END_STATE(); case 1610: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(1610); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); END_STATE(); case 1611: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); if (lookahead == '_') ADVANCE(1611); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 1612: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); if (lookahead == '_') ADVANCE(1612); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); case 1613: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(1613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 1614: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(1614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); case 1615: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(1615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(817); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 1616: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(2061); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 1617: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(2115); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 1618: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(820); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '-') ADVANCE(2167); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 1619: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2064); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '-') ADVANCE(556); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 1620: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2118); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '_') ADVANCE(1641); + if (lookahead == 'b') ADVANCE(1648); + if (lookahead == 'o') ADVANCE(1658); + if (lookahead == 'x') ADVANCE(1660); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1627); END_STATE(); case 1621: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2170); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '_') ADVANCE(1641); + if (lookahead == 'b') ADVANCE(1648); + if (lookahead == 'o') ADVANCE(1658); + if (lookahead == 'x') ADVANCE(1660); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1629); END_STATE(); case 1622: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(559); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '_') ADVANCE(1641); + if (lookahead == 'b') ADVANCE(1648); + if (lookahead == 'o') ADVANCE(1658); + if (lookahead == 'x') ADVANCE(1660); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); END_STATE(); case 1623: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1630); + if (lookahead == '_') ADVANCE(1641); + if (lookahead == 'b') ADVANCE(1648); + if (lookahead == 'o') ADVANCE(1658); + if (lookahead == 'x') ADVANCE(1660); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1624: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if (lookahead == '_') ADVANCE(1641); + if (lookahead == 'b') ADVANCE(1648); + if (lookahead == 'o') ADVANCE(1658); + if (lookahead == 'x') ADVANCE(1660); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1625: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '_') ADVANCE(1641); + if (lookahead == 'b') ADVANCE(811); + if (lookahead == 'o') ADVANCE(813); + if (lookahead == 'x') ADVANCE(820); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 1626: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1627: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1626); END_STATE(); case 1628: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(814); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'x') ADVANCE(823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1629: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1628); END_STATE(); case 1630: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1629); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); END_STATE(); case 1631: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1630); END_STATE(); case 1632: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); END_STATE(); case 1633: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1620); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); END_STATE(); case 1634: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); END_STATE(); case 1635: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1622); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1636: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1627); END_STATE(); case 1637: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1621); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1629); END_STATE(); case 1638: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); END_STATE(); case 1639: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1630); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1640: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1641: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '_') ADVANCE(1641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 1642: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); + if (lookahead == '_') ADVANCE(1642); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); case 1643: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(1643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1644: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); if (lookahead == '_') ADVANCE(1644); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); END_STATE(); case 1645: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(1645); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - END_STATE(); - case 1646: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - END_STATE(); - case 1647: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - END_STATE(); - case 1648: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1645); END_STATE(); - case 1649: + case 1646: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1649); + lookahead == '_') ADVANCE(1646); END_STATE(); - case 1650: + case 1647: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); + lookahead == '_') ADVANCE(1647); END_STATE(); - case 1651: + case 1648: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1649); + lookahead == '_') ADVANCE(1646); END_STATE(); - case 1652: + case 1649: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '_') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); - case 1653: + case 1650: ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); - case 1654: + case 1651: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1301); + if (lookahead == 'i') ADVANCE(1298); END_STATE(); - case 1655: + case 1652: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'i') ADVANCE(478); END_STATE(); - case 1656: + case 1653: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1898); + if (lookahead == 'i') ADVANCE(1895); END_STATE(); - case 1657: + case 1654: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); - case 1658: + case 1655: ACCEPT_TOKEN(sym_duration_unit); END_STATE(); - case 1659: + case 1656: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1047); + if (lookahead == 'e') ADVANCE(1044); END_STATE(); - case 1660: + case 1657: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1370); END_STATE(); - case 1661: + case 1658: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); + lookahead == '_') ADVANCE(1647); END_STATE(); - case 1662: + case 1659: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '_') ADVANCE(1029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); - case 1663: + case 1660: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1645); END_STATE(); - case 1664: + case 1661: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); - case 1665: + case 1662: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 1666: + case 1663: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1666); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1663); END_STATE(); - case 1667: + case 1664: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 1668: + case 1665: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(553); + if (lookahead == '.') ADVANCE(550); if (lookahead == '+' || lookahead == '-') ADVANCE(315); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + lookahead == 'z') ADVANCE(1664); END_STATE(); - case 1669: + case 1666: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2062); + if (lookahead == '.') ADVANCE(2059); if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); + lookahead == '-') ADVANCE(1998); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + lookahead == 'z') ADVANCE(1664); END_STATE(); - case 1670: + case 1667: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2121); + if (lookahead == '.') ADVANCE(2118); if (lookahead == '+' || - lookahead == '-') ADVANCE(2084); + lookahead == '-') ADVANCE(2081); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + lookahead == 'z') ADVANCE(1664); END_STATE(); - case 1671: + case 1668: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1682); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); + if (lookahead == ':') ADVANCE(1679); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(549); END_STATE(); - case 1672: + case 1669: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1683); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2057); + if (lookahead == ':') ADVANCE(1680); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2054); END_STATE(); - case 1673: + case 1670: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1684); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2115); + if (lookahead == ':') ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2112); END_STATE(); - case 1674: + case 1671: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(822); + if (lookahead == 'T') ADVANCE(819); END_STATE(); - case 1675: + case 1672: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2066); + if (lookahead == 'T') ADVANCE(2063); END_STATE(); - case 1676: + case 1673: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2124); + if (lookahead == 'T') ADVANCE(2121); END_STATE(); - case 1677: + case 1674: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2172); + if (lookahead == 'T') ADVANCE(2169); END_STATE(); - case 1678: + case 1675: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(562); + if (lookahead == 'T') ADVANCE(559); END_STATE(); - case 1679: + case 1676: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || lookahead == '-') ADVANCE(315); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + lookahead == 'z') ADVANCE(1664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1676); END_STATE(); - case 1680: + case 1677: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); + lookahead == '-') ADVANCE(1998); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); + lookahead == 'z') ADVANCE(1664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); END_STATE(); - case 1681: + case 1678: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2084); + lookahead == '-') ADVANCE(2081); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); + lookahead == 'z') ADVANCE(1664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); END_STATE(); - case 1682: + case 1679: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(549); END_STATE(); - case 1683: + case 1680: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2057); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2054); END_STATE(); - case 1684: + case 1681: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2115); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2112); END_STATE(); - case 1685: + case 1682: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1686: + case 1683: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(1687); + if (lookahead == '#') ADVANCE(1684); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1686); + lookahead == ' ') ADVANCE(1683); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(1687); + lookahead != '\\') ADVANCE(1684); END_STATE(); - case 1687: + case 1684: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1687); + lookahead != '\\') ADVANCE(1684); END_STATE(); - case 1688: + case 1685: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1689: + case 1686: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); - if (lookahead == '#') ADVANCE(1690); + if (lookahead == '#') ADVANCE(1687); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1689); + lookahead == ' ') ADVANCE(1686); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1690); + lookahead != '\'') ADVANCE(1687); END_STATE(); - case 1690: + case 1687: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1690); + lookahead != '\'') ADVANCE(1687); END_STATE(); - case 1691: + case 1688: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 1692: + case 1689: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 1693: + case 1690: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); - if (lookahead == '#') ADVANCE(1694); + if (lookahead == '#') ADVANCE(1691); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1693); + lookahead == ' ') ADVANCE(1690); if (lookahead != 0 && - lookahead != '`') ADVANCE(1694); + lookahead != '`') ADVANCE(1691); END_STATE(); - case 1694: + case 1691: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); if (lookahead != 0 && - lookahead != '`') ADVANCE(1694); + lookahead != '`') ADVANCE(1691); END_STATE(); - case 1695: + case 1692: ACCEPT_TOKEN(anon_sym_BQUOTE2); END_STATE(); - case 1696: + case 1693: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 1697: + case 1694: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(1698); + if (lookahead == '#') ADVANCE(1695); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1697); + lookahead == ' ') ADVANCE(1694); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(1698); + lookahead != '\\') ADVANCE(1695); END_STATE(); - case 1698: + case 1695: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(1698); + lookahead != '\\') ADVANCE(1695); END_STATE(); - case 1699: + case 1696: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(1700); + if (lookahead == '#') ADVANCE(1697); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1699); + lookahead == ' ') ADVANCE(1696); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1700); + lookahead != '(') ADVANCE(1697); END_STATE(); - case 1700: + case 1697: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1700); + lookahead != '(') ADVANCE(1697); END_STATE(); - case 1701: + case 1698: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 1702: + case 1699: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 1703: + case 1700: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 1704: + case 1701: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 1705: + case 1702: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 1706: + case 1703: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); - case 1707: + case 1704: ACCEPT_TOKEN(sym__entry_separator); END_STATE(); - case 1708: + case 1705: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\n') ADVANCE(1707); - if (lookahead == '\r') ADVANCE(1707); + if (lookahead == '\n') ADVANCE(1704); + if (lookahead == '\r') ADVANCE(1704); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1708); + lookahead == ' ') ADVANCE(1705); if (lookahead == 0x0b || lookahead == '\f' || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); END_STATE(); - case 1709: + case 1706: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1707); + if (lookahead == ',') ADVANCE(1704); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1709); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1707); + lookahead == ' ') ADVANCE(1706); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1704); END_STATE(); - case 1710: + case 1707: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1707); + if (lookahead == ',') ADVANCE(1704); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1710); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); + lookahead == ' ') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1708); END_STATE(); - case 1711: + case 1708: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(1716); + if (lookahead == ';') ADVANCE(1713); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(318); END_STATE(); - case 1712: + case 1709: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1709); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1704); END_STATE(); - case 1713: + case 1710: ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); - case 1714: + case 1711: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(2192); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); + if (lookahead == '#') ADVANCE(2189); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1712); END_STATE(); - case 1715: + case 1712: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1712); END_STATE(); - case 1716: + case 1713: ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); - case 1717: + case 1714: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 1718: + case 1715: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 1719: + case 1716: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); + if (lookahead == '=') ADVANCE(1545); + if (lookahead == '~') ADVANCE(1551); + END_STATE(); + case 1717: + ACCEPT_TOKEN(anon_sym_DOT2); + END_STATE(); + case 1718: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(693); + END_STATE(); + case 1719: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(1590); END_STATE(); case 1720: ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(1500); END_STATE(); case 1721: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(696); + if (lookahead == '.') ADVANCE(1589); END_STATE(); case 1722: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1593); + if (lookahead == '.') ADVANCE(311); END_STATE(); case 1723: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1503); + if (lookahead == '_') ADVANCE(715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); END_STATE(); case 1724: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1592); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '"') ADVANCE(1682); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '\'') ADVANCE(1685); + if (lookahead == '`') ADVANCE(1689); + if (lookahead == '\t' || + lookahead == ' ') SKIP(173); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1725); END_STATE(); case 1725: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(311); + ACCEPT_TOKEN(aux_sym_path_token1); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1725); END_STATE(); case 1726: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 1727: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '`') ADVANCE(1692); - if (lookahead == '\t' || - lookahead == ' ') SKIP(173); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1728); + ACCEPT_TOKEN(aux_sym_env_var_token1); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1727); END_STATE(); case 1728: - ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1728); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 1729: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(1745); END_STATE(); case 1730: - ACCEPT_TOKEN(aux_sym_env_var_token1); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1730); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(1745); + if (lookahead == '|') ADVANCE(1450); END_STATE(); case 1731: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(1746); END_STATE(); case 1732: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1748); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(1746); + if (lookahead == '|') ADVANCE(1451); END_STATE(); case 1733: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1748); - if (lookahead == '|') ADVANCE(1453); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(1747); END_STATE(); case 1734: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1749); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(1747); + if (lookahead == '|') ADVANCE(1452); END_STATE(); case 1735: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1749); - if (lookahead == '|') ADVANCE(1454); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(1748); END_STATE(); case 1736: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1750); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(1748); + if (lookahead == '|') ADVANCE(1453); END_STATE(); case 1737: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1750); - if (lookahead == '|') ADVANCE(1455); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(1749); END_STATE(); case 1738: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1751); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(1749); + if (lookahead == '|') ADVANCE(1454); END_STATE(); case 1739: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1751); - if (lookahead == '|') ADVANCE(1456); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(1750); END_STATE(); case 1740: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1752); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(1750); + if (lookahead == '|') ADVANCE(1455); END_STATE(); case 1741: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1752); - if (lookahead == '|') ADVANCE(1457); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(1751); END_STATE(); case 1742: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1753); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(1751); + if (lookahead == '|') ADVANCE(1456); END_STATE(); case 1743: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1753); - if (lookahead == '|') ADVANCE(1458); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(1752); END_STATE(); case 1744: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1754); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(1752); + if (lookahead == '|') ADVANCE(1457); END_STATE(); case 1745: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1754); - if (lookahead == '|') ADVANCE(1459); + ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); case 1746: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1755); + ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); case 1747: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1755); - if (lookahead == '|') ADVANCE(1460); + ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); case 1748: - ACCEPT_TOKEN(anon_sym_err_GT_GT); + ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); case 1749: - ACCEPT_TOKEN(anon_sym_out_GT_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); case 1750: - ACCEPT_TOKEN(anon_sym_e_GT_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); case 1751: - ACCEPT_TOKEN(anon_sym_o_GT_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); case 1752: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); case 1753: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(436); + if (lookahead == '>') ADVANCE(520); + if (lookahead == 'r') ADVANCE(1757); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1759); END_STATE(); case 1754: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(378); + if (lookahead == '>') ADVANCE(521); + if (lookahead == 'u') ADVANCE(1758); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1759); END_STATE(); case 1755: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(441); + if (lookahead == '>') ADVANCE(523); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1759); END_STATE(); case 1756: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1760); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == '+') ADVANCE(382); + if (lookahead == '>') ADVANCE(525); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1759); END_STATE(); case 1757: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(1761); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == 'r') ADVANCE(1755); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1759); END_STATE(); case 1758: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == 't') ADVANCE(1756); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1759); END_STATE(); case 1759: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1759); END_STATE(); case 1760: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(1758); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(1837); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == 'r') ADVANCE(1528); + if (lookahead == 'u') ADVANCE(1898); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1761: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(1759); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(sym__unquoted_pattern); + ADVANCE_MAP( + '+', 1814, + '-', 1817, + '>', 1734, + 'I', 1924, + '_', 1817, + 'i', 1924, + 'n', 1831, + 'r', 1880, + 'B', 1650, + 'b', 1650, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1762: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(1814); + if (lookahead == '-') ADVANCE(1817); + if (lookahead == '>') ADVANCE(1734); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == 'n') ADVANCE(1831); + if (lookahead == 'r') ADVANCE(1880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1763: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1840); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(1901); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1815, + '-', 1817, + '>', 1916, + 'I', 1924, + '_', 1817, + 'i', 1924, + 'n', 1831, + 'r', 1881, + 'B', 1650, + 'b', 1650, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1764: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( - '+', 1817, - '-', 1820, - '>', 1737, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - 'r', 1883, - 'B', 1653, - 'b', 1653, + '+', 1815, + '-', 1817, + '>', 1916, + 'I', 1924, + '_', 1817, + 'i', 1924, + 'r', 1881, + 'B', 1650, + 'b', 1650, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1765: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1817); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1815); + if (lookahead == '-') ADVANCE(1817); + if (lookahead == '>') ADVANCE(1916); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == 'n') ADVANCE(1831); + if (lookahead == 'r') ADVANCE(1881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1766: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1818, - '-', 1820, - '>', 1919, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - 'r', 1884, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1815); + if (lookahead == '-') ADVANCE(1817); + if (lookahead == '>') ADVANCE(1916); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == 'r') ADVANCE(1881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1767: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1818, - '-', 1820, - '>', 1919, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'r', 1884, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1838); + if (lookahead == '>') ADVANCE(1732); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1768: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1818); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1866, + '>', 1734, + 'I', 1924, + 'i', 1924, + 'n', 1831, + 'r', 1880, + 'B', 1650, + 'b', 1650, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1769: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1818); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'r') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1866); + if (lookahead == '>') ADVANCE(1734); + if (lookahead == 'n') ADVANCE(1831); + if (lookahead == 'r') ADVANCE(1880); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1770: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1841); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1867); + if (lookahead == '>') ADVANCE(1730); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1771: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( - '+', 1869, - '>', 1737, - 'I', 1927, - 'i', 1927, - 'n', 1834, - 'r', 1883, - 'B', 1653, - 'b', 1653, + '+', 1872, + '>', 1916, + 'I', 1924, + 'i', 1924, + 'n', 1831, + 'r', 1881, + 'B', 1650, + 'b', 1650, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1772: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1869); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1883); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1872); + if (lookahead == '>') ADVANCE(1916); + if (lookahead == 'I') ADVANCE(1924); + if (lookahead == 'i') ADVANCE(1924); + if (lookahead == 'r') ADVANCE(1881); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1773: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1870); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1872); + if (lookahead == '>') ADVANCE(1916); + if (lookahead == 'n') ADVANCE(1831); + if (lookahead == 'r') ADVANCE(1881); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1774: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1875, - '>', 1919, - 'I', 1927, - 'i', 1927, - 'n', 1834, - 'r', 1884, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1872); + if (lookahead == '>') ADVANCE(1916); + if (lookahead == 'r') ADVANCE(1881); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1775: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == 'r') ADVANCE(1884); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1839); + if (lookahead == '>') ADVANCE(1917); + if (lookahead == 'r') ADVANCE(1528); + if (lookahead == 'u') ADVANCE(1902); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1776: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1839); + if (lookahead == '>') ADVANCE(1917); + if (lookahead == 'u') ADVANCE(1902); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1777: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); + if (lookahead == '+') ADVANCE(1874); if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'r') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1778: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1842); - if (lookahead == '>') ADVANCE(1920); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(1905); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1840); + if (lookahead == '>') ADVANCE(1921); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1779: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1842); - if (lookahead == '>') ADVANCE(1920); - if (lookahead == 'u') ADVANCE(1905); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1481); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == '_') ADVANCE(1789); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1927); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1780: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1877); - if (lookahead == '>') ADVANCE(1922); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1481); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1781: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1843); - if (lookahead == '>') ADVANCE(1924); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1782: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(1821); - if (lookahead == '_') ADVANCE(1792); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1930); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1841); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1783: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1484); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1911); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1784: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1827); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1912); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1785: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1913); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1786: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1914); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1787: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1915); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '.') ADVANCE(1590); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1788: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1916); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '.') ADVANCE(1811); + if (lookahead == '_') ADVANCE(1788); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1789: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1917); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == '_') ADVANCE(1789); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1790: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '=') ADVANCE(1545); + if (lookahead == '~') ADVANCE(1551); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1791: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '=') ADVANCE(1544); + if (lookahead == '>') ADVANCE(1497); + if (lookahead == '~') ADVANCE(1550); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1792: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1821); - if (lookahead == '_') ADVANCE(1792); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '=') ADVANCE(1544); + if (lookahead == '~') ADVANCE(1550); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1793: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1497); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1794: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '>') ADVANCE(1500); - if (lookahead == '~') ADVANCE(1553); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1744); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1795: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1796: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1500); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1738); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1797: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1798: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1918); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1799: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1920); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1800: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1922); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1801: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1921); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1923); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1802: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1923); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + 'I', 1924, + '_', 1817, + 'i', 1924, + 'n', 1831, + '+', 1817, + '-', 1817, + 'B', 1650, + 'b', 1650, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1803: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1925); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1924); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == 'i') ADVANCE(1924); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1817); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1804: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1926); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1924); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == 'i') ADVANCE(1826); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1817); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1805: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - '+', 1820, - '-', 1820, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1924); + if (lookahead == 'i') ADVANCE(1924); + if (lookahead == 'n') ADVANCE(1831); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1806: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); + if (lookahead == 'I') ADVANCE(1924); + if (lookahead == 'i') ADVANCE(1924); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1807: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'i') ADVANCE(1829); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); + if (lookahead == 'I') ADVANCE(1924); + if (lookahead == 'i') ADVANCE(1826); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1808: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == 'n') ADVANCE(1834); + if (lookahead == 'I') ADVANCE(1924); + if (lookahead == 'i') ADVANCE(1859); + if (lookahead == 'o') ADVANCE(1829); + if (lookahead == 's') ADVANCE(1655); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1809: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); + if (lookahead == 'I') ADVANCE(1924); + if (lookahead == 'i') ADVANCE(1859); + if (lookahead == 's') ADVANCE(1655); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1810: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1829); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1811: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1862); - if (lookahead == 'o') ADVANCE(1832); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1811); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1812: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1862); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1812); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1813: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1813); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == 'n') ADVANCE(1831); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1814: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == 'o') ADVANCE(1794); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1815: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == 'o') ADVANCE(1798); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1816: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); + if (lookahead == '_') ADVANCE(1817); if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1817: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'o') ADVANCE(1797); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1818: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'o') ADVANCE(1801); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1819: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1889); + if (lookahead == 'r') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1820: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1889); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1821: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1915); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1822: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1892); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1883); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1823: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1892); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1890); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1824: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1918); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1864); + if (lookahead == 'o') ADVANCE(1878); + if (lookahead == 's') ADVANCE(1847); + if (lookahead == 'x') ADVANCE(1873); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1825: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1886); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1887); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1826: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1893); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1827: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1867); - if (lookahead == 'o') ADVANCE(1881); - if (lookahead == 's') ADVANCE(1850); - if (lookahead == 'x') ADVANCE(1876); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'c') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1828: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1890); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1524); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1829: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1568); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1830: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1582); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1831: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1527); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1891); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1832: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1571); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1893); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1833: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1585); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1553); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1834: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1894); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1555); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1835: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1896); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1827); + if (lookahead == 't') ADVANCE(1822); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1836: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1556); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1827); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1837: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1558); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1795); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1838: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1830); - if (lookahead == 't') ADVANCE(1825); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1884); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1839: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1830); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1799); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1840: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1798); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1885); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1841: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1887); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1865); + if (lookahead == 'h') ADVANCE(1823); + if (lookahead == 'i') ADVANCE(1861); + if (lookahead == 'l') ADVANCE(1854); + if (lookahead == 's') ADVANCE(1908); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1842: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1802); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'f') ADVANCE(1065); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1843: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1888); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1540); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1844: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1868); - if (lookahead == 'h') ADVANCE(1826); - if (lookahead == 'i') ADVANCE(1864); - if (lookahead == 'l') ADVANCE(1857); - if (lookahead == 's') ADVANCE(1911); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1536); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1845: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'f') ADVANCE(1068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1542); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1846: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1543); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1538); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1847: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1539); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1858); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1848: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1545); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1856); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1849: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1541); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1895); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1850: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1861); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1899); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1851: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1859); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1901); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1852: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1898); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1903); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1853: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1902); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1904); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1854: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1904); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1857); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1855: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1906); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'k') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1856: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1907); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'k') ADVANCE(1833); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1857: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1860); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'k') ADVANCE(1834); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1858: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'l') ADVANCE(1578); + if (lookahead == 'r') ADVANCE(1580); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1859: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1836); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1655); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1860: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1837); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1080); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1861: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'l') ADVANCE(1581); - if (lookahead == 'r') ADVANCE(1583); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1530); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1862: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1828); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1863: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1083); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1831); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1864: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1533); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1830); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1865: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1831); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1832); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1866: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1834); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1794); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1867: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1833); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1909); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1868: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1835); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1877); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1869: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1797); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1897); + if (lookahead == 's') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1870: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1912); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1897); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1871: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1880); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1829); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1872: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1900); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1798); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1873: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1900); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1879); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1874: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1832); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1910); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1875: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1801); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1876: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1882); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1528); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1877: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1913); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1526); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1878: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1586); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1879: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1531); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1584); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1880: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1529); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1770); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1881: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1589); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1777); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1882: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1587); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1797); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1883: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1773); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1906); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1884: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1780); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1882); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1885: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1800); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1886); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1886: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1909); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1801); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1887: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1885); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1907); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1888: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1889); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1889: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1804); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1532); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1890: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1910); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1534); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1891: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1783); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1892: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1535); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1784); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1893: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1537); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1785); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1894: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1786); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1895: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1787); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1781); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1896: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1788); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1822); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1897: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1789); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1782); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1898: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1784); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1767); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1899: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1825); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1843); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1900: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1785); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1796); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1901: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1770); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1844); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1902: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1778); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1903: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1799); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1845); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1904: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1846); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1905: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1781); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1800); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1906: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1848); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1892); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1907: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1849); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1894); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1908: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1803); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1825); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1909: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1895); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'u') ADVANCE(1900); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1910: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1897); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'u') ADVANCE(1905); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1911: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1828); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'w') ADVANCE(1850); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1912: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1903); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'w') ADVANCE(1851); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1913: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1908); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'w') ADVANCE(1852); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1914: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1853); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1915: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1854); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'y') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1916: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1855); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1452); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1917: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1856); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1453); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1918: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1457); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1919: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1455); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1450); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1920: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '|') ADVANCE(1456); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1921: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1460); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1451); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1922: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1453); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1454); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1923: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1459); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1455); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1924: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1454); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1925: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1457); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1103); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1926: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1458); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1929); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1927: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1925); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1928: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1106); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1926); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1929: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1932); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1930); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1930: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1928); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1101); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1931: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1929); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1931); END_STATE(); case 1932: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1933); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1590); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1933: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1500); + if (lookahead == '_') ADVANCE(1942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1934: - ACCEPT_TOKEN(sym__unquoted_pattern); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == '.') ADVANCE(1500); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1935: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1943); + if (lookahead == '_') ADVANCE(1935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1936: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1503); + if (lookahead == 'I') ADVANCE(1955); if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'i') ADVANCE(1955); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1945); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1937: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1503); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1955); + if (lookahead == '_') ADVANCE(1945); + if (lookahead == 'i') ADVANCE(1947); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1945); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1938: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1946); - if (lookahead == '_') ADVANCE(1938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1955); + if (lookahead == 'i') ADVANCE(1955); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1939: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == 'i') ADVANCE(1958); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); + if (lookahead == 'I') ADVANCE(1955); + if (lookahead == 'i') ADVANCE(1947); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1940: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == 'i') ADVANCE(1950); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); + if (lookahead == 'I') ADVANCE(1955); + if (lookahead == 'i') ADVANCE(1951); + if (lookahead == 's') ADVANCE(1655); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1941: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1958); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1941); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1942: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1950); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1943: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1954); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1944: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1945); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1945); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1945: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1946: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1946); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'a') ADVANCE(1954); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1947: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1948: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1948); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'c') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1949: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'a') ADVANCE(1957); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'e') ADVANCE(1948); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1950: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'k') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1951: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'n') ADVANCE(1655); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1952: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'e') ADVANCE(1951); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1953: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 's') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1954: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'y') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1955: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1956: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1956); END_STATE(); case 1957: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1590); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1958: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1968); + if (lookahead == '_') ADVANCE(1958); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1959: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == '.') ADVANCE(1961); + if (lookahead == '_') ADVANCE(1969); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1960: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1961: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1592); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1479); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1962: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1482); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1589); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1963: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1971); - if (lookahead == '_') ADVANCE(1963); + if (lookahead == 'I') ADVANCE(1982); + if (lookahead == '_') ADVANCE(1971); + if (lookahead == 'i') ADVANCE(1982); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1971); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1964: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1982); + if (lookahead == '_') ADVANCE(1971); + if (lookahead == 'i') ADVANCE(1974); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1971); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1965: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1962); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1982); + if (lookahead == 'i') ADVANCE(1982); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1966: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1985); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); + if (lookahead == 'I') ADVANCE(1982); + if (lookahead == 'i') ADVANCE(1974); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1967: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1977); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); + if (lookahead == 'I') ADVANCE(1982); + if (lookahead == 'i') ADVANCE(1978); + if (lookahead == 's') ADVANCE(1655); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1968: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1985); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1968); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1969: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1977); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1969); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1970: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1981); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1971); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1971); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1971: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); if (lookahead == '_') ADVANCE(1971); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1972: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1973: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'a') ADVANCE(1981); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1974: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1975: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1975); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'c') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1976: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'a') ADVANCE(1984); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'e') ADVANCE(1975); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1977: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'k') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1978: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'n') ADVANCE(1655); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1979: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'e') ADVANCE(1978); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'r') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1980: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 's') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1981: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'y') ADVANCE(1655); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1982: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1983: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1983); END_STATE(); case 1984: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); - END_STATE(); - case 1985: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); - END_STATE(); - case 1986: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); - END_STATE(); - case 1987: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -31224,1149 +31222,1149 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1984); + END_STATE(); + case 1985: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '$') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '[') ADVANCE(1702); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); + END_STATE(); + case 1986: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(2022); + if (lookahead == '>') ADVANCE(1734); + if (lookahead == 'r') ADVANCE(2028); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); + END_STATE(); + case 1987: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(2015); + if (lookahead == '>') ADVANCE(1736); + if (lookahead == 'u') ADVANCE(2036); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 1988: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '[') ADVANCE(1705); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2023); + if (lookahead == '>') ADVANCE(1730); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 1989: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2025); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'r') ADVANCE(2031); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2016); + if (lookahead == '>') ADVANCE(1732); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 1990: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2018); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'u') ADVANCE(2039); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2025); + if (lookahead == '>') ADVANCE(1733); + if (lookahead == 'r') ADVANCE(2029); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 1991: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2026); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2017); + if (lookahead == '>') ADVANCE(1735); + if (lookahead == 'u') ADVANCE(2038); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 1992: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2019); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2026); + if (lookahead == '>') ADVANCE(1729); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 1993: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2028); - if (lookahead == '>') ADVANCE(1736); - if (lookahead == 'r') ADVANCE(2032); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2018); + if (lookahead == '>') ADVANCE(1731); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 1994: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2020); - if (lookahead == '>') ADVANCE(1738); - if (lookahead == 'u') ADVANCE(2041); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '-') ADVANCE(2062); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 1995: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2029); - if (lookahead == '>') ADVANCE(1732); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '.') ADVANCE(1504); + if (lookahead == '_') ADVANCE(2011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 1996: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2021); - if (lookahead == '>') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '.') ADVANCE(1502); + if (lookahead == '_') ADVANCE(2011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 1997: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2065); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '.') ADVANCE(2010); + if (lookahead == '_') ADVANCE(1997); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 1998: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '2') ADVANCE(2052); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2060); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 1999: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1505); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == ':') ADVANCE(2064); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2000: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2013); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == ':') ADVANCE(2066); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2001: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(2055); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2063); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1744); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2002: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2067); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1742); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2003: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2069); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1738); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2004: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2005: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1743); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2006: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2007: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1737); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2008: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1746); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1739); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2009: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1744); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '_') ADVANCE(2009); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2010: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1740); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '_') ADVANCE(2010); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2011: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1742); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '_') ADVANCE(2011); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2012: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'a') ADVANCE(2020); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2013: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(1086); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2014: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(1089); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2015: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2023); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2002); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2030); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2017: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2006); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2018: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2005); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2033); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2019: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2033); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'l') ADVANCE(1092); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2020: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2009); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'l') ADVANCE(2034); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2036); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'l') ADVANCE(2019); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2001); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2037); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2042); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2022); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2035); + if (lookahead == 'u') ADVANCE(2021); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2047); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2004); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2005); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2045); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2043); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2038); - if (lookahead == 'u') ADVANCE(2024); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2041); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2008); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(1988); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2029: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2046); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(1992); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2044); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2031); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1991); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2004); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1995); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2008); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2033: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2034); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2032); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2034: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2007); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 's') ADVANCE(2014); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2011); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2053); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2035); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(1989); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2017); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2003); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2056); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(1993); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1992); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2007); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2006); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2021); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2047); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1996); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2013); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2010); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2037); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2024); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2039); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2016); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2047); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2040); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1097); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2042); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2050); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1106); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1100); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2045); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2053); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2046); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2051); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2048); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1095); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2049); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2054); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1557); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1994); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2000); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2057: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2058: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1997); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1666); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2059: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2003); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2055); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2062: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2057); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2063: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2056); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2064: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2058); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2065: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2060); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1999); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2066: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2059); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2065); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2067: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2061); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2067); END_STATE(); case 2068: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2002); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '$') ADVANCE(1467); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == '.') ADVANCE(2071); + if (lookahead == '_') ADVANCE(2072); + if (lookahead == '\t' || + lookahead == ' ') SKIP(193); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2074); END_STATE(); case 2069: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(2071); + if (lookahead == '_') ADVANCE(2072); + if (lookahead == '\t' || + lookahead == ' ') SKIP(255); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2070: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(2073); + if (lookahead == '_') ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2071: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2074); - if (lookahead == '_') ADVANCE(2075); - if (lookahead == '\t' || - lookahead == ' ') SKIP(193); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2073); + if (lookahead == '_') ADVANCE(2071); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2077); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2072: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(2074); - if (lookahead == '_') ADVANCE(2075); - if (lookahead == '\t' || - lookahead == ' ') SKIP(255); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + if (lookahead == '_') ADVANCE(2072); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2073: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2076); if (lookahead == '_') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2074: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2074); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2075: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2075); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '$') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1588); + if (lookahead == '[') ADVANCE(1702); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2125); END_STATE(); case 2076: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2076); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '-') ADVANCE(2120); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2077: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(1504); + if (lookahead == '_') ADVANCE(2086); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2078: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '[') ADVANCE(1705); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(2085); + if (lookahead == '_') ADVANCE(2079); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2105); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2079: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(2123); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(2085); + if (lookahead == '_') ADVANCE(2079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2080: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(1503); + if (lookahead == '_') ADVANCE(2086); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2081: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2088); - if (lookahead == '_') ADVANCE(2082); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2108); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '2') ADVANCE(2111); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2119); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2082: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2088); - if (lookahead == '_') ADVANCE(2082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == ':') ADVANCE(2122); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1506); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == ':') ADVANCE(2124); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2084: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(2114); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2122); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '_') ADVANCE(2084); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2085: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2125); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '_') ADVANCE(2085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2086: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2127); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '_') ADVANCE(2086); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2087: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2087); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'a') ADVANCE(2091); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2088: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2088); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'e') ADVANCE(1086); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2089: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'e') ADVANCE(1089); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(2094); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'l') ADVANCE(1092); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2091: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'l') ADVANCE(2094); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2092: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'l') ADVANCE(2090); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2093: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'r') ADVANCE(2095); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2094: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2097); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 's') ADVANCE(2089); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2095: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2093); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'u') ADVANCE(2088); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2096: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(2098); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'u') ADVANCE(2092); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2102); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2097: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(2092); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2102); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2098: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2091); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1104); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2099: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2095); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2105); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1098); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2105); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2107); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1107); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2108); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1101); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1106); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2110); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2099); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2104: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2111); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2100); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + lookahead == 'n') ADVANCE(2098); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2102); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + lookahead == 'n') ADVANCE(2101); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2107: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2103); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2109); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2108: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2101); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2110); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2109: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1095); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2112); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1101); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2113); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1670); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1664); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2076); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2083); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2113); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2116: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2079); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2086); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2116); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2116); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2121: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2114); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2122: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2117); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2123: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2119); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2082); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2124: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2117); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2123); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2125: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2120); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2125); END_STATE(); case 2126: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2085); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '$') ADVANCE(1506); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == '.') ADVANCE(2129); + if (lookahead == ']') ADVANCE(1463); + if (lookahead == '_') ADVANCE(2130); + if (lookahead == '\t' || + lookahead == ' ') SKIP(191); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2132); END_STATE(); case 2127: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2126); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '$') ADVANCE(1467); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == '.') ADVANCE(2129); + if (lookahead == '_') ADVANCE(2130); + if (lookahead == '\t' || + lookahead == ' ') SKIP(193); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2132); END_STATE(); case 2128: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(2131); + if (lookahead == '_') ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2129: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1509); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2132); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '_') ADVANCE(2133); - if (lookahead == '\t' || - lookahead == ' ') SKIP(191); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2131); + if (lookahead == '_') ADVANCE(2129); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2135); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2130: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2132); - if (lookahead == '_') ADVANCE(2133); - if (lookahead == '\t' || - lookahead == ' ') SKIP(193); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2135); + if (lookahead == '_') ADVANCE(2130); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2131: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2134); if (lookahead == '_') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2132: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2132); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2133: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '-') ADVANCE(2168); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2134: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2134); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(1504); + if (lookahead == '_') ADVANCE(2140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2135: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(2139); + if (lookahead == '_') ADVANCE(2136); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2159); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2136: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(2171); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '.') ADVANCE(2139); + if (lookahead == '_') ADVANCE(2136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2137: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == ':') ADVANCE(552); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2138: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2142); - if (lookahead == '_') ADVANCE(2139); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '_') ADVANCE(2138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2139: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2142); if (lookahead == '_') ADVANCE(2139); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2140: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '_') ADVANCE(2140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'a') ADVANCE(2145); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2142); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'e') ADVANCE(1086); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2143: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'e') ADVANCE(1089); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(2148); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'l') ADVANCE(1092); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'l') ADVANCE(2148); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2146: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'l') ADVANCE(2144); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'r') ADVANCE(2149); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2148: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2151); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 's') ADVANCE(2143); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2149: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2147); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'u') ADVANCE(2142); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2150: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(2152); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'u') ADVANCE(2146); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2156); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2151: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(2146); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2156); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2152: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2145); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1105); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2153: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2149); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2159); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1099); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2154: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2159); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2161); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2155: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1108); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2162); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2156: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1102); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1106); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2157: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2153); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2158: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2165); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2154); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + lookahead == 'n') ADVANCE(2152); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2160: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2156); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + lookahead == 'n') ADVANCE(2155); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2161: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2157); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2163); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2162: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2155); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2164); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2163: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2158); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1095); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2166); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1101); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2167); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2133); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2137); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2165); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2136); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2170); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2140); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2166); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2168); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2173); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2171); END_STATE(); case 2172: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2169); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); - END_STATE(); - case 2173: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); - END_STATE(); - case 2174: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); - END_STATE(); - case 2175: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2178); - if (lookahead == '_') ADVANCE(2179); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '$') ADVANCE(1467); + if (lookahead == '(') ADVANCE(1558); + if (lookahead == '.') ADVANCE(2175); + if (lookahead == '_') ADVANCE(2176); if (lookahead == '\t' || lookahead == ' ') SKIP(193); if (lookahead == '+' || - lookahead == '-') ADVANCE(2177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2181); + lookahead == '-') ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); END_STATE(); - case 2176: + case 2173: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(2178); - if (lookahead == '_') ADVANCE(2179); + if (lookahead == '#') ADVANCE(2185); + if (lookahead == '.') ADVANCE(2175); + if (lookahead == '_') ADVANCE(2176); if (lookahead == '\t' || lookahead == ' ') SKIP(255); if (lookahead == '+' || - lookahead == '-') ADVANCE(2177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + lookahead == '-') ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); - case 2177: + case 2174: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2180); - if (lookahead == '_') ADVANCE(2177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '.') ADVANCE(2177); + if (lookahead == '_') ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); - case 2178: + case 2175: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2178); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '_') ADVANCE(2175); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); - case 2179: + case 2176: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2179); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '_') ADVANCE(2176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); - case 2180: + case 2177: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '_') ADVANCE(2177); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); - case 2181: + case 2178: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); - case 2182: + case 2179: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(2195); + if (lookahead == '#') ADVANCE(2192); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2180); END_STATE(); - case 2183: + case 2180: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32374,20 +32372,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2180); END_STATE(); - case 2184: + case 2181: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(2194); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2185); + if (lookahead == '#') ADVANCE(2191); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2182); END_STATE(); - case 2185: + case 2182: 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(2185); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2182); END_STATE(); - case 2186: + case 2183: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(2193); + if (lookahead == '#') ADVANCE(2190); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -32396,9 +32394,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2184); END_STATE(); - case 2187: + case 2184: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32408,30 +32406,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2184); END_STATE(); - case 2188: + case 2185: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 2189: + case 2186: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead != 0) ADVANCE(665); + if (lookahead == '\n') ADVANCE(660); + if (lookahead == '\r') ADVANCE(662); + if (lookahead != 0) ADVANCE(662); END_STATE(); - case 2190: + case 2187: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(662); + if (lookahead == '!') ADVANCE(659); END_STATE(); - case 2191: + case 2188: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1043); END_STATE(); - case 2192: + case 2189: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1712); END_STATE(); - case 2193: + case 2190: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32441,13 +32439,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2184); END_STATE(); - case 2194: + case 2191: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2185); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2182); END_STATE(); - case 2195: + case 2192: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32455,26 +32453,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2180); END_STATE(); - case 2196: + case 2193: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2195); END_STATE(); - case 2197: + case 2194: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(2196); + if (lookahead == '#') ADVANCE(2193); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2197); + lookahead == ' ') ADVANCE(2194); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2195); END_STATE(); - case 2198: + case 2195: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2195); END_STATE(); default: return false; @@ -33022,7 +33020,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 629, .external_lex_state = 2}, + [1] = {.lex_state = 626, .external_lex_state = 2}, [2] = {.lex_state = 31, .external_lex_state = 2}, [3] = {.lex_state = 31, .external_lex_state = 2}, [4] = {.lex_state = 31, .external_lex_state = 2}, @@ -33037,494 +33035,494 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [13] = {.lex_state = 31, .external_lex_state = 2}, [14] = {.lex_state = 31, .external_lex_state = 2}, [15] = {.lex_state = 31, .external_lex_state = 2}, - [16] = {.lex_state = 622, .external_lex_state = 2}, - [17] = {.lex_state = 622, .external_lex_state = 2}, - [18] = {.lex_state = 622, .external_lex_state = 2}, - [19] = {.lex_state = 622, .external_lex_state = 2}, - [20] = {.lex_state = 622, .external_lex_state = 2}, - [21] = {.lex_state = 622, .external_lex_state = 2}, - [22] = {.lex_state = 622, .external_lex_state = 2}, - [23] = {.lex_state = 622, .external_lex_state = 2}, - [24] = {.lex_state = 622, .external_lex_state = 2}, - [25] = {.lex_state = 622, .external_lex_state = 2}, - [26] = {.lex_state = 622, .external_lex_state = 2}, - [27] = {.lex_state = 622, .external_lex_state = 2}, - [28] = {.lex_state = 622, .external_lex_state = 2}, - [29] = {.lex_state = 622, .external_lex_state = 2}, - [30] = {.lex_state = 622, .external_lex_state = 2}, - [31] = {.lex_state = 622, .external_lex_state = 2}, - [32] = {.lex_state = 622, .external_lex_state = 2}, - [33] = {.lex_state = 622, .external_lex_state = 2}, - [34] = {.lex_state = 622, .external_lex_state = 2}, - [35] = {.lex_state = 29, .external_lex_state = 2}, + [16] = {.lex_state = 619, .external_lex_state = 2}, + [17] = {.lex_state = 619, .external_lex_state = 2}, + [18] = {.lex_state = 619, .external_lex_state = 2}, + [19] = {.lex_state = 619, .external_lex_state = 2}, + [20] = {.lex_state = 619, .external_lex_state = 2}, + [21] = {.lex_state = 619, .external_lex_state = 2}, + [22] = {.lex_state = 619, .external_lex_state = 2}, + [23] = {.lex_state = 619, .external_lex_state = 2}, + [24] = {.lex_state = 619, .external_lex_state = 2}, + [25] = {.lex_state = 619, .external_lex_state = 2}, + [26] = {.lex_state = 619, .external_lex_state = 2}, + [27] = {.lex_state = 619, .external_lex_state = 2}, + [28] = {.lex_state = 619, .external_lex_state = 2}, + [29] = {.lex_state = 619, .external_lex_state = 2}, + [30] = {.lex_state = 619, .external_lex_state = 2}, + [31] = {.lex_state = 619, .external_lex_state = 2}, + [32] = {.lex_state = 619, .external_lex_state = 2}, + [33] = {.lex_state = 619, .external_lex_state = 2}, + [34] = {.lex_state = 619, .external_lex_state = 2}, + [35] = {.lex_state = 619, .external_lex_state = 2}, [36] = {.lex_state = 29, .external_lex_state = 2}, - [37] = {.lex_state = 622, .external_lex_state = 2}, + [37] = {.lex_state = 619, .external_lex_state = 2}, [38] = {.lex_state = 29, .external_lex_state = 2}, [39] = {.lex_state = 29, .external_lex_state = 2}, - [40] = {.lex_state = 622, .external_lex_state = 2}, + [40] = {.lex_state = 619, .external_lex_state = 2}, [41] = {.lex_state = 29, .external_lex_state = 2}, - [42] = {.lex_state = 622, .external_lex_state = 2}, + [42] = {.lex_state = 619, .external_lex_state = 2}, [43] = {.lex_state = 29, .external_lex_state = 2}, - [44] = {.lex_state = 622, .external_lex_state = 2}, - [45] = {.lex_state = 622, .external_lex_state = 2}, + [44] = {.lex_state = 29, .external_lex_state = 2}, + [45] = {.lex_state = 619, .external_lex_state = 2}, [46] = {.lex_state = 29, .external_lex_state = 2}, [47] = {.lex_state = 29, .external_lex_state = 2}, - [48] = {.lex_state = 29, .external_lex_state = 2}, - [49] = {.lex_state = 622, .external_lex_state = 2}, - [50] = {.lex_state = 29, .external_lex_state = 2}, + [48] = {.lex_state = 619, .external_lex_state = 2}, + [49] = {.lex_state = 29, .external_lex_state = 2}, + [50] = {.lex_state = 619, .external_lex_state = 2}, [51] = {.lex_state = 29, .external_lex_state = 2}, [52] = {.lex_state = 29, .external_lex_state = 2}, - [53] = {.lex_state = 622, .external_lex_state = 2}, - [54] = {.lex_state = 29, .external_lex_state = 2}, - [55] = {.lex_state = 622, .external_lex_state = 2}, - [56] = {.lex_state = 29, .external_lex_state = 2}, - [57] = {.lex_state = 622, .external_lex_state = 2}, - [58] = {.lex_state = 29, .external_lex_state = 2}, - [59] = {.lex_state = 622, .external_lex_state = 2}, - [60] = {.lex_state = 29, .external_lex_state = 2}, - [61] = {.lex_state = 622, .external_lex_state = 2}, - [62] = {.lex_state = 29, .external_lex_state = 2}, - [63] = {.lex_state = 622, .external_lex_state = 2}, - [64] = {.lex_state = 622, .external_lex_state = 2}, - [65] = {.lex_state = 29, .external_lex_state = 2}, - [66] = {.lex_state = 622, .external_lex_state = 2}, - [67] = {.lex_state = 29, .external_lex_state = 2}, + [53] = {.lex_state = 619, .external_lex_state = 2}, + [54] = {.lex_state = 619, .external_lex_state = 2}, + [55] = {.lex_state = 29, .external_lex_state = 2}, + [56] = {.lex_state = 619, .external_lex_state = 2}, + [57] = {.lex_state = 29, .external_lex_state = 2}, + [58] = {.lex_state = 619, .external_lex_state = 2}, + [59] = {.lex_state = 29, .external_lex_state = 2}, + [60] = {.lex_state = 619, .external_lex_state = 2}, + [61] = {.lex_state = 29, .external_lex_state = 2}, + [62] = {.lex_state = 619, .external_lex_state = 2}, + [63] = {.lex_state = 29, .external_lex_state = 2}, + [64] = {.lex_state = 619, .external_lex_state = 2}, + [65] = {.lex_state = 619, .external_lex_state = 2}, + [66] = {.lex_state = 29, .external_lex_state = 2}, + [67] = {.lex_state = 619, .external_lex_state = 2}, [68] = {.lex_state = 29, .external_lex_state = 2}, - [69] = {.lex_state = 622, .external_lex_state = 2}, + [69] = {.lex_state = 29, .external_lex_state = 2}, [70] = {.lex_state = 29, .external_lex_state = 2}, - [71] = {.lex_state = 622, .external_lex_state = 2}, + [71] = {.lex_state = 29, .external_lex_state = 2}, [72] = {.lex_state = 29, .external_lex_state = 2}, - [73] = {.lex_state = 622, .external_lex_state = 2}, - [74] = {.lex_state = 29, .external_lex_state = 2}, - [75] = {.lex_state = 622, .external_lex_state = 2}, - [76] = {.lex_state = 622, .external_lex_state = 2}, + [73] = {.lex_state = 619, .external_lex_state = 2}, + [74] = {.lex_state = 619, .external_lex_state = 2}, + [75] = {.lex_state = 619, .external_lex_state = 2}, + [76] = {.lex_state = 619, .external_lex_state = 2}, [77] = {.lex_state = 29, .external_lex_state = 2}, - [78] = {.lex_state = 622, .external_lex_state = 2}, - [79] = {.lex_state = 622, .external_lex_state = 2}, - [80] = {.lex_state = 622, .external_lex_state = 2}, - [81] = {.lex_state = 622, .external_lex_state = 2}, - [82] = {.lex_state = 622, .external_lex_state = 2}, - [83] = {.lex_state = 622, .external_lex_state = 2}, - [84] = {.lex_state = 622, .external_lex_state = 2}, - [85] = {.lex_state = 622, .external_lex_state = 2}, - [86] = {.lex_state = 622, .external_lex_state = 2}, - [87] = {.lex_state = 622, .external_lex_state = 2}, - [88] = {.lex_state = 622, .external_lex_state = 2}, - [89] = {.lex_state = 622, .external_lex_state = 2}, - [90] = {.lex_state = 622, .external_lex_state = 2}, - [91] = {.lex_state = 622, .external_lex_state = 2}, - [92] = {.lex_state = 1156}, - [93] = {.lex_state = 1161}, - [94] = {.lex_state = 1324}, - [95] = {.lex_state = 1146}, - [96] = {.lex_state = 1148}, - [97] = {.lex_state = 1326}, - [98] = {.lex_state = 1162}, - [99] = {.lex_state = 1162}, - [100] = {.lex_state = 1157}, - [101] = {.lex_state = 1164}, - [102] = {.lex_state = 1166}, - [103] = {.lex_state = 624, .external_lex_state = 2}, - [104] = {.lex_state = 1326}, - [105] = {.lex_state = 1163}, - [106] = {.lex_state = 1163}, - [107] = {.lex_state = 1150}, - [108] = {.lex_state = 1163}, - [109] = {.lex_state = 42, .external_lex_state = 2}, - [110] = {.lex_state = 1324}, - [111] = {.lex_state = 1328}, - [112] = {.lex_state = 1166}, - [113] = {.lex_state = 1150}, - [114] = {.lex_state = 1328}, - [115] = {.lex_state = 1163}, - [116] = {.lex_state = 1152}, - [117] = {.lex_state = 1152}, - [118] = {.lex_state = 1152}, - [119] = {.lex_state = 1328}, - [120] = {.lex_state = 624, .external_lex_state = 2}, - [121] = {.lex_state = 1168}, - [122] = {.lex_state = 1328}, - [123] = {.lex_state = 1168}, - [124] = {.lex_state = 1330}, - [125] = {.lex_state = 1168}, - [126] = {.lex_state = 1168}, - [127] = {.lex_state = 1152}, - [128] = {.lex_state = 624, .external_lex_state = 2}, - [129] = {.lex_state = 1330}, - [130] = {.lex_state = 1159}, - [131] = {.lex_state = 1170}, - [132] = {.lex_state = 1330}, - [133] = {.lex_state = 1330}, - [134] = {.lex_state = 1330}, - [135] = {.lex_state = 1172}, - [136] = {.lex_state = 1330}, - [137] = {.lex_state = 1330}, - [138] = {.lex_state = 1330}, - [139] = {.lex_state = 1172}, - [140] = {.lex_state = 1174}, - [141] = {.lex_state = 1174}, - [142] = {.lex_state = 1174}, - [143] = {.lex_state = 1174}, - [144] = {.lex_state = 1332}, - [145] = {.lex_state = 1176}, - [146] = {.lex_state = 1154}, - [147] = {.lex_state = 1154}, - [148] = {.lex_state = 1176}, - [149] = {.lex_state = 1176}, - [150] = {.lex_state = 1332}, - [151] = {.lex_state = 1176}, - [152] = {.lex_state = 622, .external_lex_state = 2}, - [153] = {.lex_state = 622, .external_lex_state = 2}, - [154] = {.lex_state = 622, .external_lex_state = 2}, - [155] = {.lex_state = 622, .external_lex_state = 2}, - [156] = {.lex_state = 622, .external_lex_state = 2}, - [157] = {.lex_state = 622, .external_lex_state = 2}, - [158] = {.lex_state = 622, .external_lex_state = 2}, - [159] = {.lex_state = 622, .external_lex_state = 2}, - [160] = {.lex_state = 622, .external_lex_state = 2}, - [161] = {.lex_state = 622, .external_lex_state = 2}, - [162] = {.lex_state = 622, .external_lex_state = 2}, - [163] = {.lex_state = 622, .external_lex_state = 2}, - [164] = {.lex_state = 622, .external_lex_state = 2}, - [165] = {.lex_state = 622, .external_lex_state = 2}, - [166] = {.lex_state = 622, .external_lex_state = 2}, - [167] = {.lex_state = 622, .external_lex_state = 2}, - [168] = {.lex_state = 622, .external_lex_state = 2}, - [169] = {.lex_state = 622, .external_lex_state = 2}, - [170] = {.lex_state = 622, .external_lex_state = 2}, - [171] = {.lex_state = 622, .external_lex_state = 2}, - [172] = {.lex_state = 1332}, - [173] = {.lex_state = 1332}, - [174] = {.lex_state = 622, .external_lex_state = 2}, - [175] = {.lex_state = 622, .external_lex_state = 2}, - [176] = {.lex_state = 622, .external_lex_state = 2}, - [177] = {.lex_state = 622, .external_lex_state = 2}, - [178] = {.lex_state = 622, .external_lex_state = 2}, - [179] = {.lex_state = 622, .external_lex_state = 2}, - [180] = {.lex_state = 622, .external_lex_state = 2}, - [181] = {.lex_state = 622, .external_lex_state = 2}, - [182] = {.lex_state = 622, .external_lex_state = 2}, - [183] = {.lex_state = 622, .external_lex_state = 2}, - [184] = {.lex_state = 622, .external_lex_state = 2}, - [185] = {.lex_state = 622, .external_lex_state = 2}, - [186] = {.lex_state = 622, .external_lex_state = 2}, - [187] = {.lex_state = 622, .external_lex_state = 2}, - [188] = {.lex_state = 622, .external_lex_state = 2}, - [189] = {.lex_state = 1178}, - [190] = {.lex_state = 1178}, - [191] = {.lex_state = 622, .external_lex_state = 2}, - [192] = {.lex_state = 622, .external_lex_state = 2}, - [193] = {.lex_state = 622, .external_lex_state = 2}, + [78] = {.lex_state = 29, .external_lex_state = 2}, + [79] = {.lex_state = 619, .external_lex_state = 2}, + [80] = {.lex_state = 619, .external_lex_state = 2}, + [81] = {.lex_state = 619, .external_lex_state = 2}, + [82] = {.lex_state = 619, .external_lex_state = 2}, + [83] = {.lex_state = 619, .external_lex_state = 2}, + [84] = {.lex_state = 619, .external_lex_state = 2}, + [85] = {.lex_state = 619, .external_lex_state = 2}, + [86] = {.lex_state = 619, .external_lex_state = 2}, + [87] = {.lex_state = 619, .external_lex_state = 2}, + [88] = {.lex_state = 619, .external_lex_state = 2}, + [89] = {.lex_state = 619, .external_lex_state = 2}, + [90] = {.lex_state = 619, .external_lex_state = 2}, + [91] = {.lex_state = 619, .external_lex_state = 2}, + [92] = {.lex_state = 1153}, + [93] = {.lex_state = 1168}, + [94] = {.lex_state = 1327}, + [95] = {.lex_state = 1149}, + [96] = {.lex_state = 1321}, + [97] = {.lex_state = 1143}, + [98] = {.lex_state = 1154}, + [99] = {.lex_state = 1169}, + [100] = {.lex_state = 1156}, + [101] = {.lex_state = 1154}, + [102] = {.lex_state = 1145}, + [103] = {.lex_state = 1327}, + [104] = {.lex_state = 1145}, + [105] = {.lex_state = 42, .external_lex_state = 2}, + [106] = {.lex_state = 1323}, + [107] = {.lex_state = 1321}, + [108] = {.lex_state = 1155}, + [109] = {.lex_state = 1155}, + [110] = {.lex_state = 621, .external_lex_state = 2}, + [111] = {.lex_state = 1155}, + [112] = {.lex_state = 1155}, + [113] = {.lex_state = 1158}, + [114] = {.lex_state = 1158}, + [115] = {.lex_state = 1323}, + [116] = {.lex_state = 1147}, + [117] = {.lex_state = 1147}, + [118] = {.lex_state = 1162}, + [119] = {.lex_state = 1147}, + [120] = {.lex_state = 1147}, + [121] = {.lex_state = 1325}, + [122] = {.lex_state = 1323}, + [123] = {.lex_state = 621, .external_lex_state = 2}, + [124] = {.lex_state = 1160}, + [125] = {.lex_state = 1323}, + [126] = {.lex_state = 1160}, + [127] = {.lex_state = 1160}, + [128] = {.lex_state = 1325}, + [129] = {.lex_state = 1325}, + [130] = {.lex_state = 1325}, + [131] = {.lex_state = 1160}, + [132] = {.lex_state = 1171}, + [133] = {.lex_state = 621, .external_lex_state = 2}, + [134] = {.lex_state = 1325}, + [135] = {.lex_state = 1325}, + [136] = {.lex_state = 1325}, + [137] = {.lex_state = 1164}, + [138] = {.lex_state = 1325}, + [139] = {.lex_state = 1164}, + [140] = {.lex_state = 1166}, + [141] = {.lex_state = 1166}, + [142] = {.lex_state = 1166}, + [143] = {.lex_state = 1166}, + [144] = {.lex_state = 1173}, + [145] = {.lex_state = 1173}, + [146] = {.lex_state = 1173}, + [147] = {.lex_state = 1173}, + [148] = {.lex_state = 1151}, + [149] = {.lex_state = 1151}, + [150] = {.lex_state = 1329}, + [151] = {.lex_state = 1329}, + [152] = {.lex_state = 619, .external_lex_state = 2}, + [153] = {.lex_state = 619, .external_lex_state = 2}, + [154] = {.lex_state = 619, .external_lex_state = 2}, + [155] = {.lex_state = 619, .external_lex_state = 2}, + [156] = {.lex_state = 1329}, + [157] = {.lex_state = 619, .external_lex_state = 2}, + [158] = {.lex_state = 619, .external_lex_state = 2}, + [159] = {.lex_state = 619, .external_lex_state = 2}, + [160] = {.lex_state = 619, .external_lex_state = 2}, + [161] = {.lex_state = 619, .external_lex_state = 2}, + [162] = {.lex_state = 619, .external_lex_state = 2}, + [163] = {.lex_state = 619, .external_lex_state = 2}, + [164] = {.lex_state = 619, .external_lex_state = 2}, + [165] = {.lex_state = 1329}, + [166] = {.lex_state = 619, .external_lex_state = 2}, + [167] = {.lex_state = 619, .external_lex_state = 2}, + [168] = {.lex_state = 619, .external_lex_state = 2}, + [169] = {.lex_state = 619, .external_lex_state = 2}, + [170] = {.lex_state = 619, .external_lex_state = 2}, + [171] = {.lex_state = 619, .external_lex_state = 2}, + [172] = {.lex_state = 619, .external_lex_state = 2}, + [173] = {.lex_state = 619, .external_lex_state = 2}, + [174] = {.lex_state = 619, .external_lex_state = 2}, + [175] = {.lex_state = 619, .external_lex_state = 2}, + [176] = {.lex_state = 619, .external_lex_state = 2}, + [177] = {.lex_state = 619, .external_lex_state = 2}, + [178] = {.lex_state = 619, .external_lex_state = 2}, + [179] = {.lex_state = 619, .external_lex_state = 2}, + [180] = {.lex_state = 619, .external_lex_state = 2}, + [181] = {.lex_state = 619, .external_lex_state = 2}, + [182] = {.lex_state = 619, .external_lex_state = 2}, + [183] = {.lex_state = 619, .external_lex_state = 2}, + [184] = {.lex_state = 619, .external_lex_state = 2}, + [185] = {.lex_state = 1175}, + [186] = {.lex_state = 1175}, + [187] = {.lex_state = 619, .external_lex_state = 2}, + [188] = {.lex_state = 619, .external_lex_state = 2}, + [189] = {.lex_state = 619, .external_lex_state = 2}, + [190] = {.lex_state = 619, .external_lex_state = 2}, + [191] = {.lex_state = 619, .external_lex_state = 2}, + [192] = {.lex_state = 619, .external_lex_state = 2}, + [193] = {.lex_state = 619, .external_lex_state = 2}, [194] = {.lex_state = 43, .external_lex_state = 2}, - [195] = {.lex_state = 34, .external_lex_state = 2}, - [196] = {.lex_state = 34, .external_lex_state = 2}, - [197] = {.lex_state = 34, .external_lex_state = 2}, - [198] = {.lex_state = 34, .external_lex_state = 2}, - [199] = {.lex_state = 34, .external_lex_state = 2}, - [200] = {.lex_state = 34, .external_lex_state = 2}, - [201] = {.lex_state = 34, .external_lex_state = 2}, - [202] = {.lex_state = 34, .external_lex_state = 2}, - [203] = {.lex_state = 34, .external_lex_state = 2}, - [204] = {.lex_state = 34, .external_lex_state = 2}, - [205] = {.lex_state = 34, .external_lex_state = 2}, - [206] = {.lex_state = 34, .external_lex_state = 2}, - [207] = {.lex_state = 34, .external_lex_state = 2}, - [208] = {.lex_state = 34, .external_lex_state = 2}, - [209] = {.lex_state = 34, .external_lex_state = 2}, - [210] = {.lex_state = 34, .external_lex_state = 2}, - [211] = {.lex_state = 34, .external_lex_state = 2}, - [212] = {.lex_state = 34, .external_lex_state = 2}, - [213] = {.lex_state = 34, .external_lex_state = 2}, - [214] = {.lex_state = 34, .external_lex_state = 2}, - [215] = {.lex_state = 34, .external_lex_state = 2}, - [216] = {.lex_state = 34, .external_lex_state = 2}, - [217] = {.lex_state = 34, .external_lex_state = 2}, - [218] = {.lex_state = 34, .external_lex_state = 2}, - [219] = {.lex_state = 34, .external_lex_state = 2}, - [220] = {.lex_state = 34, .external_lex_state = 2}, - [221] = {.lex_state = 34, .external_lex_state = 2}, - [222] = {.lex_state = 34, .external_lex_state = 2}, - [223] = {.lex_state = 34, .external_lex_state = 2}, - [224] = {.lex_state = 34, .external_lex_state = 2}, - [225] = {.lex_state = 34, .external_lex_state = 2}, - [226] = {.lex_state = 34, .external_lex_state = 2}, - [227] = {.lex_state = 34, .external_lex_state = 2}, - [228] = {.lex_state = 34, .external_lex_state = 2}, - [229] = {.lex_state = 34, .external_lex_state = 2}, - [230] = {.lex_state = 34, .external_lex_state = 2}, - [231] = {.lex_state = 34, .external_lex_state = 2}, - [232] = {.lex_state = 34, .external_lex_state = 2}, - [233] = {.lex_state = 34, .external_lex_state = 2}, - [234] = {.lex_state = 34, .external_lex_state = 2}, - [235] = {.lex_state = 34, .external_lex_state = 2}, - [236] = {.lex_state = 34, .external_lex_state = 2}, - [237] = {.lex_state = 34, .external_lex_state = 2}, - [238] = {.lex_state = 34, .external_lex_state = 2}, - [239] = {.lex_state = 34, .external_lex_state = 2}, - [240] = {.lex_state = 34, .external_lex_state = 2}, - [241] = {.lex_state = 34, .external_lex_state = 2}, - [242] = {.lex_state = 34, .external_lex_state = 2}, - [243] = {.lex_state = 34, .external_lex_state = 2}, - [244] = {.lex_state = 34, .external_lex_state = 2}, - [245] = {.lex_state = 34, .external_lex_state = 2}, - [246] = {.lex_state = 34, .external_lex_state = 2}, - [247] = {.lex_state = 34, .external_lex_state = 2}, - [248] = {.lex_state = 34, .external_lex_state = 2}, - [249] = {.lex_state = 34, .external_lex_state = 2}, - [250] = {.lex_state = 34, .external_lex_state = 2}, - [251] = {.lex_state = 34, .external_lex_state = 2}, - [252] = {.lex_state = 34, .external_lex_state = 2}, - [253] = {.lex_state = 34, .external_lex_state = 2}, - [254] = {.lex_state = 34, .external_lex_state = 2}, - [255] = {.lex_state = 34, .external_lex_state = 2}, - [256] = {.lex_state = 34, .external_lex_state = 2}, - [257] = {.lex_state = 34, .external_lex_state = 2}, - [258] = {.lex_state = 34, .external_lex_state = 2}, - [259] = {.lex_state = 34, .external_lex_state = 2}, - [260] = {.lex_state = 34, .external_lex_state = 2}, - [261] = {.lex_state = 34, .external_lex_state = 2}, - [262] = {.lex_state = 34, .external_lex_state = 2}, - [263] = {.lex_state = 34, .external_lex_state = 2}, - [264] = {.lex_state = 34, .external_lex_state = 2}, - [265] = {.lex_state = 34, .external_lex_state = 2}, - [266] = {.lex_state = 34, .external_lex_state = 2}, - [267] = {.lex_state = 1158}, - [268] = {.lex_state = 1327}, - [269] = {.lex_state = 1147}, - [270] = {.lex_state = 1149}, - [271] = {.lex_state = 1165}, - [272] = {.lex_state = 1325}, - [273] = {.lex_state = 1167}, - [274] = {.lex_state = 34, .external_lex_state = 2}, - [275] = {.lex_state = 34, .external_lex_state = 2}, - [276] = {.lex_state = 34, .external_lex_state = 2}, - [277] = {.lex_state = 1325}, - [278] = {.lex_state = 1327}, - [279] = {.lex_state = 1167}, - [280] = {.lex_state = 34, .external_lex_state = 2}, - [281] = {.lex_state = 34, .external_lex_state = 2}, - [282] = {.lex_state = 1329}, - [283] = {.lex_state = 34, .external_lex_state = 2}, - [284] = {.lex_state = 1329}, - [285] = {.lex_state = 34, .external_lex_state = 2}, - [286] = {.lex_state = 1151}, - [287] = {.lex_state = 34, .external_lex_state = 2}, - [288] = {.lex_state = 34, .external_lex_state = 2}, - [289] = {.lex_state = 34, .external_lex_state = 2}, - [290] = {.lex_state = 34, .external_lex_state = 2}, - [291] = {.lex_state = 34, .external_lex_state = 2}, - [292] = {.lex_state = 34, .external_lex_state = 2}, - [293] = {.lex_state = 1151}, - [294] = {.lex_state = 1153}, - [295] = {.lex_state = 1329}, - [296] = {.lex_state = 1171}, - [297] = {.lex_state = 1169}, - [298] = {.lex_state = 1331}, - [299] = {.lex_state = 1331}, - [300] = {.lex_state = 1331}, - [301] = {.lex_state = 1153}, - [302] = {.lex_state = 1169}, - [303] = {.lex_state = 1153}, - [304] = {.lex_state = 1153}, - [305] = {.lex_state = 1169}, - [306] = {.lex_state = 1331}, - [307] = {.lex_state = 1169}, - [308] = {.lex_state = 1160}, - [309] = {.lex_state = 1329}, - [310] = {.lex_state = 1173}, - [311] = {.lex_state = 1331}, - [312] = {.lex_state = 1331}, - [313] = {.lex_state = 1331}, - [314] = {.lex_state = 1331}, - [315] = {.lex_state = 1173}, - [316] = {.lex_state = 1175}, - [317] = {.lex_state = 1175}, - [318] = {.lex_state = 1175}, - [319] = {.lex_state = 1175}, - [320] = {.lex_state = 44, .external_lex_state = 2}, - [321] = {.lex_state = 44, .external_lex_state = 2}, - [322] = {.lex_state = 44, .external_lex_state = 2}, - [323] = {.lex_state = 1333}, - [324] = {.lex_state = 1155}, - [325] = {.lex_state = 1177}, - [326] = {.lex_state = 1177}, - [327] = {.lex_state = 1155}, - [328] = {.lex_state = 1333}, - [329] = {.lex_state = 1333}, - [330] = {.lex_state = 1333}, - [331] = {.lex_state = 1179}, - [332] = {.lex_state = 1179}, - [333] = {.lex_state = 124}, + [195] = {.lex_state = 36, .external_lex_state = 2}, + [196] = {.lex_state = 36, .external_lex_state = 2}, + [197] = {.lex_state = 36, .external_lex_state = 2}, + [198] = {.lex_state = 36, .external_lex_state = 2}, + [199] = {.lex_state = 36, .external_lex_state = 2}, + [200] = {.lex_state = 36, .external_lex_state = 2}, + [201] = {.lex_state = 36, .external_lex_state = 2}, + [202] = {.lex_state = 36, .external_lex_state = 2}, + [203] = {.lex_state = 36, .external_lex_state = 2}, + [204] = {.lex_state = 36, .external_lex_state = 2}, + [205] = {.lex_state = 36, .external_lex_state = 2}, + [206] = {.lex_state = 36, .external_lex_state = 2}, + [207] = {.lex_state = 36, .external_lex_state = 2}, + [208] = {.lex_state = 36, .external_lex_state = 2}, + [209] = {.lex_state = 36, .external_lex_state = 2}, + [210] = {.lex_state = 36, .external_lex_state = 2}, + [211] = {.lex_state = 36, .external_lex_state = 2}, + [212] = {.lex_state = 36, .external_lex_state = 2}, + [213] = {.lex_state = 36, .external_lex_state = 2}, + [214] = {.lex_state = 36, .external_lex_state = 2}, + [215] = {.lex_state = 36, .external_lex_state = 2}, + [216] = {.lex_state = 36, .external_lex_state = 2}, + [217] = {.lex_state = 36, .external_lex_state = 2}, + [218] = {.lex_state = 36, .external_lex_state = 2}, + [219] = {.lex_state = 36, .external_lex_state = 2}, + [220] = {.lex_state = 36, .external_lex_state = 2}, + [221] = {.lex_state = 36, .external_lex_state = 2}, + [222] = {.lex_state = 36, .external_lex_state = 2}, + [223] = {.lex_state = 36, .external_lex_state = 2}, + [224] = {.lex_state = 36, .external_lex_state = 2}, + [225] = {.lex_state = 36, .external_lex_state = 2}, + [226] = {.lex_state = 36, .external_lex_state = 2}, + [227] = {.lex_state = 36, .external_lex_state = 2}, + [228] = {.lex_state = 36, .external_lex_state = 2}, + [229] = {.lex_state = 36, .external_lex_state = 2}, + [230] = {.lex_state = 36, .external_lex_state = 2}, + [231] = {.lex_state = 36, .external_lex_state = 2}, + [232] = {.lex_state = 36, .external_lex_state = 2}, + [233] = {.lex_state = 36, .external_lex_state = 2}, + [234] = {.lex_state = 36, .external_lex_state = 2}, + [235] = {.lex_state = 36, .external_lex_state = 2}, + [236] = {.lex_state = 36, .external_lex_state = 2}, + [237] = {.lex_state = 36, .external_lex_state = 2}, + [238] = {.lex_state = 36, .external_lex_state = 2}, + [239] = {.lex_state = 36, .external_lex_state = 2}, + [240] = {.lex_state = 36, .external_lex_state = 2}, + [241] = {.lex_state = 36, .external_lex_state = 2}, + [242] = {.lex_state = 36, .external_lex_state = 2}, + [243] = {.lex_state = 36, .external_lex_state = 2}, + [244] = {.lex_state = 36, .external_lex_state = 2}, + [245] = {.lex_state = 36, .external_lex_state = 2}, + [246] = {.lex_state = 36, .external_lex_state = 2}, + [247] = {.lex_state = 36, .external_lex_state = 2}, + [248] = {.lex_state = 36, .external_lex_state = 2}, + [249] = {.lex_state = 36, .external_lex_state = 2}, + [250] = {.lex_state = 36, .external_lex_state = 2}, + [251] = {.lex_state = 36, .external_lex_state = 2}, + [252] = {.lex_state = 36, .external_lex_state = 2}, + [253] = {.lex_state = 36, .external_lex_state = 2}, + [254] = {.lex_state = 36, .external_lex_state = 2}, + [255] = {.lex_state = 36, .external_lex_state = 2}, + [256] = {.lex_state = 36, .external_lex_state = 2}, + [257] = {.lex_state = 36, .external_lex_state = 2}, + [258] = {.lex_state = 36, .external_lex_state = 2}, + [259] = {.lex_state = 36, .external_lex_state = 2}, + [260] = {.lex_state = 36, .external_lex_state = 2}, + [261] = {.lex_state = 36, .external_lex_state = 2}, + [262] = {.lex_state = 36, .external_lex_state = 2}, + [263] = {.lex_state = 36, .external_lex_state = 2}, + [264] = {.lex_state = 36, .external_lex_state = 2}, + [265] = {.lex_state = 36, .external_lex_state = 2}, + [266] = {.lex_state = 36, .external_lex_state = 2}, + [267] = {.lex_state = 1322}, + [268] = {.lex_state = 1328}, + [269] = {.lex_state = 1144}, + [270] = {.lex_state = 1170}, + [271] = {.lex_state = 1150}, + [272] = {.lex_state = 1157}, + [273] = {.lex_state = 36, .external_lex_state = 2}, + [274] = {.lex_state = 36, .external_lex_state = 2}, + [275] = {.lex_state = 36, .external_lex_state = 2}, + [276] = {.lex_state = 36, .external_lex_state = 2}, + [277] = {.lex_state = 36, .external_lex_state = 2}, + [278] = {.lex_state = 36, .external_lex_state = 2}, + [279] = {.lex_state = 36, .external_lex_state = 2}, + [280] = {.lex_state = 36, .external_lex_state = 2}, + [281] = {.lex_state = 1324}, + [282] = {.lex_state = 36, .external_lex_state = 2}, + [283] = {.lex_state = 1324}, + [284] = {.lex_state = 1146}, + [285] = {.lex_state = 1146}, + [286] = {.lex_state = 36, .external_lex_state = 2}, + [287] = {.lex_state = 36, .external_lex_state = 2}, + [288] = {.lex_state = 1159}, + [289] = {.lex_state = 1159}, + [290] = {.lex_state = 1328}, + [291] = {.lex_state = 1322}, + [292] = {.lex_state = 36, .external_lex_state = 2}, + [293] = {.lex_state = 36, .external_lex_state = 2}, + [294] = {.lex_state = 1324}, + [295] = {.lex_state = 1326}, + [296] = {.lex_state = 1326}, + [297] = {.lex_state = 1326}, + [298] = {.lex_state = 1161}, + [299] = {.lex_state = 1148}, + [300] = {.lex_state = 1148}, + [301] = {.lex_state = 1148}, + [302] = {.lex_state = 1161}, + [303] = {.lex_state = 1161}, + [304] = {.lex_state = 1172}, + [305] = {.lex_state = 1163}, + [306] = {.lex_state = 1148}, + [307] = {.lex_state = 1326}, + [308] = {.lex_state = 1324}, + [309] = {.lex_state = 1161}, + [310] = {.lex_state = 1326}, + [311] = {.lex_state = 1165}, + [312] = {.lex_state = 1165}, + [313] = {.lex_state = 44, .external_lex_state = 2}, + [314] = {.lex_state = 44, .external_lex_state = 2}, + [315] = {.lex_state = 1326}, + [316] = {.lex_state = 1326}, + [317] = {.lex_state = 1326}, + [318] = {.lex_state = 44, .external_lex_state = 2}, + [319] = {.lex_state = 1167}, + [320] = {.lex_state = 1167}, + [321] = {.lex_state = 1167}, + [322] = {.lex_state = 1167}, + [323] = {.lex_state = 1152}, + [324] = {.lex_state = 1152}, + [325] = {.lex_state = 1330}, + [326] = {.lex_state = 1174}, + [327] = {.lex_state = 1174}, + [328] = {.lex_state = 1330}, + [329] = {.lex_state = 1330}, + [330] = {.lex_state = 1330}, + [331] = {.lex_state = 1176}, + [332] = {.lex_state = 1176}, + [333] = {.lex_state = 44, .external_lex_state = 2}, [334] = {.lex_state = 124}, - [335] = {.lex_state = 577}, - [336] = {.lex_state = 124}, - [337] = {.lex_state = 577}, - [338] = {.lex_state = 577}, + [335] = {.lex_state = 124}, + [336] = {.lex_state = 44, .external_lex_state = 2}, + [337] = {.lex_state = 574}, + [338] = {.lex_state = 574}, [339] = {.lex_state = 124}, - [340] = {.lex_state = 124}, - [341] = {.lex_state = 124}, - [342] = {.lex_state = 124}, - [343] = {.lex_state = 577}, - [344] = {.lex_state = 577}, + [340] = {.lex_state = 44, .external_lex_state = 2}, + [341] = {.lex_state = 44, .external_lex_state = 2}, + [342] = {.lex_state = 44, .external_lex_state = 2}, + [343] = {.lex_state = 44, .external_lex_state = 2}, + [344] = {.lex_state = 44, .external_lex_state = 2}, [345] = {.lex_state = 44, .external_lex_state = 2}, - [346] = {.lex_state = 577}, + [346] = {.lex_state = 44, .external_lex_state = 2}, [347] = {.lex_state = 44, .external_lex_state = 2}, [348] = {.lex_state = 44, .external_lex_state = 2}, - [349] = {.lex_state = 577}, - [350] = {.lex_state = 44, .external_lex_state = 2}, - [351] = {.lex_state = 124}, - [352] = {.lex_state = 124}, - [353] = {.lex_state = 577}, - [354] = {.lex_state = 44, .external_lex_state = 2}, - [355] = {.lex_state = 577}, - [356] = {.lex_state = 44, .external_lex_state = 2}, + [349] = {.lex_state = 574}, + [350] = {.lex_state = 574}, + [351] = {.lex_state = 574}, + [352] = {.lex_state = 574}, + [353] = {.lex_state = 124}, + [354] = {.lex_state = 124}, + [355] = {.lex_state = 124}, + [356] = {.lex_state = 124}, [357] = {.lex_state = 124}, - [358] = {.lex_state = 44, .external_lex_state = 2}, - [359] = {.lex_state = 44, .external_lex_state = 2}, - [360] = {.lex_state = 124}, - [361] = {.lex_state = 577}, - [362] = {.lex_state = 44, .external_lex_state = 2}, + [358] = {.lex_state = 124}, + [359] = {.lex_state = 124}, + [360] = {.lex_state = 574}, + [361] = {.lex_state = 574}, + [362] = {.lex_state = 124}, [363] = {.lex_state = 124}, - [364] = {.lex_state = 124}, + [364] = {.lex_state = 574}, [365] = {.lex_state = 124}, - [366] = {.lex_state = 44, .external_lex_state = 2}, - [367] = {.lex_state = 44, .external_lex_state = 2}, - [368] = {.lex_state = 124}, - [369] = {.lex_state = 577}, - [370] = {.lex_state = 577}, + [366] = {.lex_state = 124}, + [367] = {.lex_state = 574}, + [368] = {.lex_state = 574}, + [369] = {.lex_state = 44, .external_lex_state = 2}, + [370] = {.lex_state = 574}, [371] = {.lex_state = 44, .external_lex_state = 2}, - [372] = {.lex_state = 577}, - [373] = {.lex_state = 124}, - [374] = {.lex_state = 577}, - [375] = {.lex_state = 577}, - [376] = {.lex_state = 44, .external_lex_state = 2}, - [377] = {.lex_state = 581}, - [378] = {.lex_state = 581}, + [372] = {.lex_state = 124}, + [373] = {.lex_state = 44, .external_lex_state = 2}, + [374] = {.lex_state = 124}, + [375] = {.lex_state = 574}, + [376] = {.lex_state = 574}, + [377] = {.lex_state = 44, .external_lex_state = 2}, + [378] = {.lex_state = 44, .external_lex_state = 2}, [379] = {.lex_state = 44, .external_lex_state = 2}, [380] = {.lex_state = 44, .external_lex_state = 2}, - [381] = {.lex_state = 577}, - [382] = {.lex_state = 577}, - [383] = {.lex_state = 44, .external_lex_state = 2}, - [384] = {.lex_state = 44, .external_lex_state = 2}, - [385] = {.lex_state = 577}, - [386] = {.lex_state = 44, .external_lex_state = 2}, - [387] = {.lex_state = 44, .external_lex_state = 2}, - [388] = {.lex_state = 577}, - [389] = {.lex_state = 581}, - [390] = {.lex_state = 577}, - [391] = {.lex_state = 577}, - [392] = {.lex_state = 577}, - [393] = {.lex_state = 577}, - [394] = {.lex_state = 577}, - [395] = {.lex_state = 577}, - [396] = {.lex_state = 44, .external_lex_state = 2}, - [397] = {.lex_state = 124}, - [398] = {.lex_state = 583}, - [399] = {.lex_state = 578}, - [400] = {.lex_state = 581}, - [401] = {.lex_state = 581}, - [402] = {.lex_state = 577}, - [403] = {.lex_state = 581}, - [404] = {.lex_state = 577}, - [405] = {.lex_state = 577}, - [406] = {.lex_state = 578}, - [407] = {.lex_state = 583}, - [408] = {.lex_state = 581}, - [409] = {.lex_state = 581}, - [410] = {.lex_state = 581}, - [411] = {.lex_state = 581}, + [381] = {.lex_state = 44, .external_lex_state = 2}, + [382] = {.lex_state = 44, .external_lex_state = 2}, + [383] = {.lex_state = 578}, + [384] = {.lex_state = 574}, + [385] = {.lex_state = 574}, + [386] = {.lex_state = 574}, + [387] = {.lex_state = 578}, + [388] = {.lex_state = 574}, + [389] = {.lex_state = 574}, + [390] = {.lex_state = 574}, + [391] = {.lex_state = 574}, + [392] = {.lex_state = 574}, + [393] = {.lex_state = 574}, + [394] = {.lex_state = 574}, + [395] = {.lex_state = 574}, + [396] = {.lex_state = 124}, + [397] = {.lex_state = 578}, + [398] = {.lex_state = 578}, + [399] = {.lex_state = 580}, + [400] = {.lex_state = 578}, + [401] = {.lex_state = 580}, + [402] = {.lex_state = 574}, + [403] = {.lex_state = 578}, + [404] = {.lex_state = 578}, + [405] = {.lex_state = 575}, + [406] = {.lex_state = 575}, + [407] = {.lex_state = 575}, + [408] = {.lex_state = 574}, + [409] = {.lex_state = 578}, + [410] = {.lex_state = 574}, + [411] = {.lex_state = 578}, [412] = {.lex_state = 578}, - [413] = {.lex_state = 577}, - [414] = {.lex_state = 578}, - [415] = {.lex_state = 578}, - [416] = {.lex_state = 583}, - [417] = {.lex_state = 577}, - [418] = {.lex_state = 583}, - [419] = {.lex_state = 581}, - [420] = {.lex_state = 578}, - [421] = {.lex_state = 585}, - [422] = {.lex_state = 589}, + [413] = {.lex_state = 574}, + [414] = {.lex_state = 575}, + [415] = {.lex_state = 582}, + [416] = {.lex_state = 586}, + [417] = {.lex_state = 580}, + [418] = {.lex_state = 575}, + [419] = {.lex_state = 575}, + [420] = {.lex_state = 575}, + [421] = {.lex_state = 575}, + [422] = {.lex_state = 578}, [423] = {.lex_state = 578}, - [424] = {.lex_state = 578}, - [425] = {.lex_state = 578}, - [426] = {.lex_state = 578}, - [427] = {.lex_state = 578}, - [428] = {.lex_state = 578}, - [429] = {.lex_state = 578}, - [430] = {.lex_state = 581}, - [431] = {.lex_state = 577}, - [432] = {.lex_state = 577}, - [433] = {.lex_state = 585}, - [434] = {.lex_state = 577}, - [435] = {.lex_state = 591}, - [436] = {.lex_state = 591}, + [424] = {.lex_state = 575}, + [425] = {.lex_state = 575}, + [426] = {.lex_state = 574}, + [427] = {.lex_state = 575}, + [428] = {.lex_state = 574}, + [429] = {.lex_state = 580}, + [430] = {.lex_state = 574}, + [431] = {.lex_state = 575}, + [432] = {.lex_state = 575}, + [433] = {.lex_state = 588}, + [434] = {.lex_state = 575}, + [435] = {.lex_state = 574}, + [436] = {.lex_state = 575}, [437] = {.lex_state = 578}, - [438] = {.lex_state = 577}, - [439] = {.lex_state = 577}, + [438] = {.lex_state = 578}, + [439] = {.lex_state = 578}, [440] = {.lex_state = 578}, - [441] = {.lex_state = 578}, - [442] = {.lex_state = 595}, - [443] = {.lex_state = 581}, - [444] = {.lex_state = 587}, - [445] = {.lex_state = 577}, - [446] = {.lex_state = 593}, - [447] = {.lex_state = 578}, - [448] = {.lex_state = 581}, - [449] = {.lex_state = 581}, - [450] = {.lex_state = 581}, - [451] = {.lex_state = 581}, - [452] = {.lex_state = 581}, - [453] = {.lex_state = 577}, - [454] = {.lex_state = 589}, - [455] = {.lex_state = 40, .external_lex_state = 2}, + [441] = {.lex_state = 582}, + [442] = {.lex_state = 588}, + [443] = {.lex_state = 574}, + [444] = {.lex_state = 586}, + [445] = {.lex_state = 592}, + [446] = {.lex_state = 578}, + [447] = {.lex_state = 590}, + [448] = {.lex_state = 578}, + [449] = {.lex_state = 574}, + [450] = {.lex_state = 574}, + [451] = {.lex_state = 575}, + [452] = {.lex_state = 575}, + [453] = {.lex_state = 574}, + [454] = {.lex_state = 584}, + [455] = {.lex_state = 44, .external_lex_state = 2}, [456] = {.lex_state = 40, .external_lex_state = 2}, [457] = {.lex_state = 40, .external_lex_state = 2}, [458] = {.lex_state = 40, .external_lex_state = 2}, - [459] = {.lex_state = 597}, - [460] = {.lex_state = 40, .external_lex_state = 2}, - [461] = {.lex_state = 40, .external_lex_state = 2}, - [462] = {.lex_state = 593}, - [463] = {.lex_state = 593}, - [464] = {.lex_state = 44, .external_lex_state = 2}, - [465] = {.lex_state = 578}, - [466] = {.lex_state = 578}, - [467] = {.lex_state = 593}, - [468] = {.lex_state = 40, .external_lex_state = 2}, - [469] = {.lex_state = 591}, - [470] = {.lex_state = 597}, - [471] = {.lex_state = 577}, - [472] = {.lex_state = 591}, - [473] = {.lex_state = 593}, - [474] = {.lex_state = 577}, - [475] = {.lex_state = 40, .external_lex_state = 2}, - [476] = {.lex_state = 593}, - [477] = {.lex_state = 595}, - [478] = {.lex_state = 578}, - [479] = {.lex_state = 578}, - [480] = {.lex_state = 578}, - [481] = {.lex_state = 587}, - [482] = {.lex_state = 578}, - [483] = {.lex_state = 578}, - [484] = {.lex_state = 578}, - [485] = {.lex_state = 578}, - [486] = {.lex_state = 578}, - [487] = {.lex_state = 578}, - [488] = {.lex_state = 578}, - [489] = {.lex_state = 578}, - [490] = {.lex_state = 599}, - [491] = {.lex_state = 578}, - [492] = {.lex_state = 578}, - [493] = {.lex_state = 578}, - [494] = {.lex_state = 578}, - [495] = {.lex_state = 593}, - [496] = {.lex_state = 578}, - [497] = {.lex_state = 578}, - [498] = {.lex_state = 578}, - [499] = {.lex_state = 593}, - [500] = {.lex_state = 599}, - [501] = {.lex_state = 40, .external_lex_state = 2}, - [502] = {.lex_state = 578}, - [503] = {.lex_state = 599}, + [459] = {.lex_state = 40, .external_lex_state = 2}, + [460] = {.lex_state = 594}, + [461] = {.lex_state = 588}, + [462] = {.lex_state = 40, .external_lex_state = 2}, + [463] = {.lex_state = 40, .external_lex_state = 2}, + [464] = {.lex_state = 590}, + [465] = {.lex_state = 40, .external_lex_state = 2}, + [466] = {.lex_state = 594}, + [467] = {.lex_state = 590}, + [468] = {.lex_state = 590}, + [469] = {.lex_state = 575}, + [470] = {.lex_state = 574}, + [471] = {.lex_state = 588}, + [472] = {.lex_state = 574}, + [473] = {.lex_state = 40, .external_lex_state = 2}, + [474] = {.lex_state = 590}, + [475] = {.lex_state = 575}, + [476] = {.lex_state = 575}, + [477] = {.lex_state = 575}, + [478] = {.lex_state = 575}, + [479] = {.lex_state = 596}, + [480] = {.lex_state = 575}, + [481] = {.lex_state = 575}, + [482] = {.lex_state = 590}, + [483] = {.lex_state = 590}, + [484] = {.lex_state = 596}, + [485] = {.lex_state = 40, .external_lex_state = 2}, + [486] = {.lex_state = 575}, + [487] = {.lex_state = 575}, + [488] = {.lex_state = 590}, + [489] = {.lex_state = 596}, + [490] = {.lex_state = 575}, + [491] = {.lex_state = 584}, + [492] = {.lex_state = 575}, + [493] = {.lex_state = 575}, + [494] = {.lex_state = 575}, + [495] = {.lex_state = 575}, + [496] = {.lex_state = 575}, + [497] = {.lex_state = 575}, + [498] = {.lex_state = 575}, + [499] = {.lex_state = 575}, + [500] = {.lex_state = 575}, + [501] = {.lex_state = 575}, + [502] = {.lex_state = 575}, + [503] = {.lex_state = 592}, [504] = {.lex_state = 41, .external_lex_state = 2}, [505] = {.lex_state = 41, .external_lex_state = 2}, [506] = {.lex_state = 41, .external_lex_state = 2}, @@ -33533,16 +33531,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [509] = {.lex_state = 41, .external_lex_state = 2}, [510] = {.lex_state = 41, .external_lex_state = 2}, [511] = {.lex_state = 41, .external_lex_state = 2}, - [512] = {.lex_state = 41, .external_lex_state = 2}, - [513] = {.lex_state = 41, .external_lex_state = 2}, + [512] = {.lex_state = 594}, + [513] = {.lex_state = 594}, [514] = {.lex_state = 41, .external_lex_state = 2}, - [515] = {.lex_state = 41, .external_lex_state = 2}, - [516] = {.lex_state = 41, .external_lex_state = 2}, - [517] = {.lex_state = 578}, - [518] = {.lex_state = 578}, + [515] = {.lex_state = 44, .external_lex_state = 2}, + [516] = {.lex_state = 596}, + [517] = {.lex_state = 596}, + [518] = {.lex_state = 41, .external_lex_state = 2}, [519] = {.lex_state = 41, .external_lex_state = 2}, [520] = {.lex_state = 41, .external_lex_state = 2}, - [521] = {.lex_state = 41, .external_lex_state = 2}, + [521] = {.lex_state = 40, .external_lex_state = 2}, [522] = {.lex_state = 41, .external_lex_state = 2}, [523] = {.lex_state = 41, .external_lex_state = 2}, [524] = {.lex_state = 41, .external_lex_state = 2}, @@ -33561,7 +33559,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [537] = {.lex_state = 41, .external_lex_state = 2}, [538] = {.lex_state = 41, .external_lex_state = 2}, [539] = {.lex_state = 41, .external_lex_state = 2}, - [540] = {.lex_state = 611}, + [540] = {.lex_state = 41, .external_lex_state = 2}, [541] = {.lex_state = 41, .external_lex_state = 2}, [542] = {.lex_state = 41, .external_lex_state = 2}, [543] = {.lex_state = 41, .external_lex_state = 2}, @@ -33636,22 +33634,22 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [612] = {.lex_state = 41, .external_lex_state = 2}, [613] = {.lex_state = 41, .external_lex_state = 2}, [614] = {.lex_state = 41, .external_lex_state = 2}, - [615] = {.lex_state = 597}, + [615] = {.lex_state = 41, .external_lex_state = 2}, [616] = {.lex_state = 41, .external_lex_state = 2}, [617] = {.lex_state = 41, .external_lex_state = 2}, - [618] = {.lex_state = 40, .external_lex_state = 2}, + [618] = {.lex_state = 41, .external_lex_state = 2}, [619] = {.lex_state = 41, .external_lex_state = 2}, [620] = {.lex_state = 41, .external_lex_state = 2}, [621] = {.lex_state = 41, .external_lex_state = 2}, [622] = {.lex_state = 41, .external_lex_state = 2}, [623] = {.lex_state = 41, .external_lex_state = 2}, [624] = {.lex_state = 41, .external_lex_state = 2}, - [625] = {.lex_state = 40, .external_lex_state = 2}, + [625] = {.lex_state = 41, .external_lex_state = 2}, [626] = {.lex_state = 41, .external_lex_state = 2}, [627] = {.lex_state = 41, .external_lex_state = 2}, [628] = {.lex_state = 41, .external_lex_state = 2}, - [629] = {.lex_state = 44, .external_lex_state = 2}, - [630] = {.lex_state = 44, .external_lex_state = 2}, + [629] = {.lex_state = 41, .external_lex_state = 2}, + [630] = {.lex_state = 41, .external_lex_state = 2}, [631] = {.lex_state = 41, .external_lex_state = 2}, [632] = {.lex_state = 41, .external_lex_state = 2}, [633] = {.lex_state = 41, .external_lex_state = 2}, @@ -33663,29 +33661,29 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [639] = {.lex_state = 41, .external_lex_state = 2}, [640] = {.lex_state = 41, .external_lex_state = 2}, [641] = {.lex_state = 41, .external_lex_state = 2}, - [642] = {.lex_state = 599}, + [642] = {.lex_state = 41, .external_lex_state = 2}, [643] = {.lex_state = 41, .external_lex_state = 2}, - [644] = {.lex_state = 41, .external_lex_state = 2}, - [645] = {.lex_state = 599}, - [646] = {.lex_state = 41, .external_lex_state = 2}, - [647] = {.lex_state = 41, .external_lex_state = 2}, + [644] = {.lex_state = 575}, + [645] = {.lex_state = 41, .external_lex_state = 2}, + [646] = {.lex_state = 40, .external_lex_state = 2}, + [647] = {.lex_state = 575}, [648] = {.lex_state = 41, .external_lex_state = 2}, - [649] = {.lex_state = 41, .external_lex_state = 2}, + [649] = {.lex_state = 44, .external_lex_state = 2}, [650] = {.lex_state = 41, .external_lex_state = 2}, [651] = {.lex_state = 41, .external_lex_state = 2}, [652] = {.lex_state = 41, .external_lex_state = 2}, [653] = {.lex_state = 41, .external_lex_state = 2}, [654] = {.lex_state = 41, .external_lex_state = 2}, - [655] = {.lex_state = 41, .external_lex_state = 2}, - [656] = {.lex_state = 41, .external_lex_state = 2}, - [657] = {.lex_state = 44, .external_lex_state = 2}, + [655] = {.lex_state = 44, .external_lex_state = 2}, + [656] = {.lex_state = 608}, + [657] = {.lex_state = 41, .external_lex_state = 2}, [658] = {.lex_state = 41, .external_lex_state = 2}, [659] = {.lex_state = 41, .external_lex_state = 2}, [660] = {.lex_state = 41, .external_lex_state = 2}, [661] = {.lex_state = 41, .external_lex_state = 2}, [662] = {.lex_state = 41, .external_lex_state = 2}, [663] = {.lex_state = 41, .external_lex_state = 2}, - [664] = {.lex_state = 597}, + [664] = {.lex_state = 41, .external_lex_state = 2}, [665] = {.lex_state = 41, .external_lex_state = 2}, [666] = {.lex_state = 41, .external_lex_state = 2}, [667] = {.lex_state = 41, .external_lex_state = 2}, @@ -33693,177 +33691,177 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [669] = {.lex_state = 41, .external_lex_state = 2}, [670] = {.lex_state = 41, .external_lex_state = 2}, [671] = {.lex_state = 41, .external_lex_state = 2}, - [672] = {.lex_state = 601}, - [673] = {.lex_state = 599}, - [674] = {.lex_state = 578}, - [675] = {.lex_state = 578}, - [676] = {.lex_state = 578}, - [677] = {.lex_state = 578}, - [678] = {.lex_state = 599}, - [679] = {.lex_state = 578}, - [680] = {.lex_state = 599}, - [681] = {.lex_state = 578}, - [682] = {.lex_state = 578}, - [683] = {.lex_state = 578}, - [684] = {.lex_state = 599}, - [685] = {.lex_state = 578}, - [686] = {.lex_state = 578}, - [687] = {.lex_state = 578}, - [688] = {.lex_state = 578}, - [689] = {.lex_state = 578}, - [690] = {.lex_state = 578}, - [691] = {.lex_state = 611}, - [692] = {.lex_state = 578}, - [693] = {.lex_state = 599}, - [694] = {.lex_state = 578}, - [695] = {.lex_state = 578}, - [696] = {.lex_state = 603}, - [697] = {.lex_state = 578}, - [698] = {.lex_state = 578}, - [699] = {.lex_state = 578}, - [700] = {.lex_state = 578}, - [701] = {.lex_state = 578}, - [702] = {.lex_state = 578}, - [703] = {.lex_state = 578}, - [704] = {.lex_state = 578}, - [705] = {.lex_state = 578}, - [706] = {.lex_state = 578}, - [707] = {.lex_state = 578}, - [708] = {.lex_state = 578}, - [709] = {.lex_state = 578}, - [710] = {.lex_state = 578}, - [711] = {.lex_state = 578}, - [712] = {.lex_state = 578}, - [713] = {.lex_state = 41, .external_lex_state = 2}, - [714] = {.lex_state = 41, .external_lex_state = 2}, - [715] = {.lex_state = 41, .external_lex_state = 2}, - [716] = {.lex_state = 41, .external_lex_state = 2}, - [717] = {.lex_state = 41, .external_lex_state = 2}, - [718] = {.lex_state = 41, .external_lex_state = 2}, - [719] = {.lex_state = 578}, - [720] = {.lex_state = 578}, - [721] = {.lex_state = 578}, - [722] = {.lex_state = 578}, - [723] = {.lex_state = 578}, - [724] = {.lex_state = 578}, - [725] = {.lex_state = 41, .external_lex_state = 2}, - [726] = {.lex_state = 578}, - [727] = {.lex_state = 578}, - [728] = {.lex_state = 578}, - [729] = {.lex_state = 578}, - [730] = {.lex_state = 578}, - [731] = {.lex_state = 41, .external_lex_state = 2}, - [732] = {.lex_state = 41, .external_lex_state = 2}, - [733] = {.lex_state = 41, .external_lex_state = 2}, - [734] = {.lex_state = 41, .external_lex_state = 2}, - [735] = {.lex_state = 578}, - [736] = {.lex_state = 578}, - [737] = {.lex_state = 578}, - [738] = {.lex_state = 578}, - [739] = {.lex_state = 578}, - [740] = {.lex_state = 578}, - [741] = {.lex_state = 578}, - [742] = {.lex_state = 578}, - [743] = {.lex_state = 578}, - [744] = {.lex_state = 578}, - [745] = {.lex_state = 41, .external_lex_state = 2}, - [746] = {.lex_state = 578}, - [747] = {.lex_state = 578}, - [748] = {.lex_state = 41, .external_lex_state = 2}, - [749] = {.lex_state = 41, .external_lex_state = 2}, - [750] = {.lex_state = 41, .external_lex_state = 2}, - [751] = {.lex_state = 41, .external_lex_state = 2}, - [752] = {.lex_state = 41, .external_lex_state = 2}, - [753] = {.lex_state = 41, .external_lex_state = 2}, - [754] = {.lex_state = 41, .external_lex_state = 2}, + [672] = {.lex_state = 608}, + [673] = {.lex_state = 575}, + [674] = {.lex_state = 575}, + [675] = {.lex_state = 575}, + [676] = {.lex_state = 575}, + [677] = {.lex_state = 575}, + [678] = {.lex_state = 575}, + [679] = {.lex_state = 575}, + [680] = {.lex_state = 575}, + [681] = {.lex_state = 596}, + [682] = {.lex_state = 575}, + [683] = {.lex_state = 596}, + [684] = {.lex_state = 575}, + [685] = {.lex_state = 600}, + [686] = {.lex_state = 575}, + [687] = {.lex_state = 575}, + [688] = {.lex_state = 575}, + [689] = {.lex_state = 575}, + [690] = {.lex_state = 575}, + [691] = {.lex_state = 575}, + [692] = {.lex_state = 575}, + [693] = {.lex_state = 596}, + [694] = {.lex_state = 575}, + [695] = {.lex_state = 575}, + [696] = {.lex_state = 575}, + [697] = {.lex_state = 575}, + [698] = {.lex_state = 596}, + [699] = {.lex_state = 575}, + [700] = {.lex_state = 596}, + [701] = {.lex_state = 598}, + [702] = {.lex_state = 575}, + [703] = {.lex_state = 575}, + [704] = {.lex_state = 575}, + [705] = {.lex_state = 575}, + [706] = {.lex_state = 575}, + [707] = {.lex_state = 575}, + [708] = {.lex_state = 575}, + [709] = {.lex_state = 575}, + [710] = {.lex_state = 575}, + [711] = {.lex_state = 575}, + [712] = {.lex_state = 575}, + [713] = {.lex_state = 38, .external_lex_state = 2}, + [714] = {.lex_state = 575}, + [715] = {.lex_state = 575}, + [716] = {.lex_state = 575}, + [717] = {.lex_state = 575}, + [718] = {.lex_state = 575}, + [719] = {.lex_state = 575}, + [720] = {.lex_state = 575}, + [721] = {.lex_state = 575}, + [722] = {.lex_state = 575}, + [723] = {.lex_state = 575}, + [724] = {.lex_state = 575}, + [725] = {.lex_state = 575}, + [726] = {.lex_state = 575}, + [727] = {.lex_state = 575}, + [728] = {.lex_state = 575}, + [729] = {.lex_state = 575}, + [730] = {.lex_state = 598}, + [731] = {.lex_state = 575}, + [732] = {.lex_state = 575}, + [733] = {.lex_state = 575}, + [734] = {.lex_state = 575}, + [735] = {.lex_state = 575}, + [736] = {.lex_state = 575}, + [737] = {.lex_state = 575}, + [738] = {.lex_state = 575}, + [739] = {.lex_state = 575}, + [740] = {.lex_state = 575}, + [741] = {.lex_state = 575}, + [742] = {.lex_state = 575}, + [743] = {.lex_state = 575}, + [744] = {.lex_state = 575}, + [745] = {.lex_state = 602}, + [746] = {.lex_state = 575}, + [747] = {.lex_state = 575}, + [748] = {.lex_state = 575}, + [749] = {.lex_state = 575}, + [750] = {.lex_state = 575}, + [751] = {.lex_state = 575}, + [752] = {.lex_state = 575}, + [753] = {.lex_state = 575}, + [754] = {.lex_state = 602}, [755] = {.lex_state = 41, .external_lex_state = 2}, [756] = {.lex_state = 41, .external_lex_state = 2}, [757] = {.lex_state = 41, .external_lex_state = 2}, [758] = {.lex_state = 41, .external_lex_state = 2}, [759] = {.lex_state = 41, .external_lex_state = 2}, [760] = {.lex_state = 41, .external_lex_state = 2}, - [761] = {.lex_state = 578}, + [761] = {.lex_state = 41, .external_lex_state = 2}, [762] = {.lex_state = 41, .external_lex_state = 2}, - [763] = {.lex_state = 578}, - [764] = {.lex_state = 578}, + [763] = {.lex_state = 41, .external_lex_state = 2}, + [764] = {.lex_state = 41, .external_lex_state = 2}, [765] = {.lex_state = 41, .external_lex_state = 2}, - [766] = {.lex_state = 578}, - [767] = {.lex_state = 578}, + [766] = {.lex_state = 41, .external_lex_state = 2}, + [767] = {.lex_state = 41, .external_lex_state = 2}, [768] = {.lex_state = 41, .external_lex_state = 2}, - [769] = {.lex_state = 578}, - [770] = {.lex_state = 578}, - [771] = {.lex_state = 578}, - [772] = {.lex_state = 578}, - [773] = {.lex_state = 578}, - [774] = {.lex_state = 578}, - [775] = {.lex_state = 578}, - [776] = {.lex_state = 578}, - [777] = {.lex_state = 578}, - [778] = {.lex_state = 578}, - [779] = {.lex_state = 611}, - [780] = {.lex_state = 578}, - [781] = {.lex_state = 578}, - [782] = {.lex_state = 578}, - [783] = {.lex_state = 578}, - [784] = {.lex_state = 578}, - [785] = {.lex_state = 578}, - [786] = {.lex_state = 603}, - [787] = {.lex_state = 578}, - [788] = {.lex_state = 36, .external_lex_state = 2}, - [789] = {.lex_state = 40, .external_lex_state = 2}, - [790] = {.lex_state = 578}, - [791] = {.lex_state = 601}, - [792] = {.lex_state = 578}, - [793] = {.lex_state = 578}, - [794] = {.lex_state = 578}, - [795] = {.lex_state = 605}, - [796] = {.lex_state = 41, .external_lex_state = 2}, - [797] = {.lex_state = 578}, - [798] = {.lex_state = 578}, - [799] = {.lex_state = 578}, - [800] = {.lex_state = 578}, - [801] = {.lex_state = 578}, - [802] = {.lex_state = 578}, - [803] = {.lex_state = 578}, - [804] = {.lex_state = 578}, - [805] = {.lex_state = 578}, - [806] = {.lex_state = 578}, - [807] = {.lex_state = 578}, - [808] = {.lex_state = 578}, - [809] = {.lex_state = 578}, - [810] = {.lex_state = 578}, + [769] = {.lex_state = 40, .external_lex_state = 2}, + [770] = {.lex_state = 40, .external_lex_state = 2}, + [771] = {.lex_state = 41, .external_lex_state = 2}, + [772] = {.lex_state = 41, .external_lex_state = 2}, + [773] = {.lex_state = 41, .external_lex_state = 2}, + [774] = {.lex_state = 41, .external_lex_state = 2}, + [775] = {.lex_state = 575}, + [776] = {.lex_state = 575}, + [777] = {.lex_state = 575}, + [778] = {.lex_state = 575}, + [779] = {.lex_state = 575}, + [780] = {.lex_state = 575}, + [781] = {.lex_state = 575}, + [782] = {.lex_state = 575}, + [783] = {.lex_state = 575}, + [784] = {.lex_state = 575}, + [785] = {.lex_state = 575}, + [786] = {.lex_state = 575}, + [787] = {.lex_state = 575}, + [788] = {.lex_state = 575}, + [789] = {.lex_state = 575}, + [790] = {.lex_state = 575}, + [791] = {.lex_state = 575}, + [792] = {.lex_state = 575}, + [793] = {.lex_state = 608}, + [794] = {.lex_state = 575}, + [795] = {.lex_state = 575}, + [796] = {.lex_state = 575}, + [797] = {.lex_state = 575}, + [798] = {.lex_state = 575}, + [799] = {.lex_state = 575}, + [800] = {.lex_state = 41, .external_lex_state = 2}, + [801] = {.lex_state = 40, .external_lex_state = 2}, + [802] = {.lex_state = 40, .external_lex_state = 2}, + [803] = {.lex_state = 41, .external_lex_state = 2}, + [804] = {.lex_state = 41, .external_lex_state = 2}, + [805] = {.lex_state = 41, .external_lex_state = 2}, + [806] = {.lex_state = 41, .external_lex_state = 2}, + [807] = {.lex_state = 41, .external_lex_state = 2}, + [808] = {.lex_state = 41, .external_lex_state = 2}, + [809] = {.lex_state = 575}, + [810] = {.lex_state = 575}, [811] = {.lex_state = 41, .external_lex_state = 2}, [812] = {.lex_state = 41, .external_lex_state = 2}, [813] = {.lex_state = 41, .external_lex_state = 2}, [814] = {.lex_state = 41, .external_lex_state = 2}, - [815] = {.lex_state = 41, .external_lex_state = 2}, - [816] = {.lex_state = 41, .external_lex_state = 2}, - [817] = {.lex_state = 41, .external_lex_state = 2}, - [818] = {.lex_state = 41, .external_lex_state = 2}, + [815] = {.lex_state = 38, .external_lex_state = 2}, + [816] = {.lex_state = 575}, + [817] = {.lex_state = 575}, + [818] = {.lex_state = 575}, [819] = {.lex_state = 41, .external_lex_state = 2}, [820] = {.lex_state = 41, .external_lex_state = 2}, - [821] = {.lex_state = 41, .external_lex_state = 2}, - [822] = {.lex_state = 41, .external_lex_state = 2}, - [823] = {.lex_state = 41, .external_lex_state = 2}, - [824] = {.lex_state = 578}, - [825] = {.lex_state = 578}, - [826] = {.lex_state = 40, .external_lex_state = 2}, - [827] = {.lex_state = 578}, - [828] = {.lex_state = 578}, - [829] = {.lex_state = 578}, - [830] = {.lex_state = 578}, - [831] = {.lex_state = 578}, - [832] = {.lex_state = 578}, - [833] = {.lex_state = 578}, - [834] = {.lex_state = 578}, - [835] = {.lex_state = 578}, - [836] = {.lex_state = 40, .external_lex_state = 2}, - [837] = {.lex_state = 40, .external_lex_state = 2}, + [821] = {.lex_state = 575}, + [822] = {.lex_state = 575}, + [823] = {.lex_state = 40, .external_lex_state = 2}, + [824] = {.lex_state = 38, .external_lex_state = 2}, + [825] = {.lex_state = 41, .external_lex_state = 2}, + [826] = {.lex_state = 575}, + [827] = {.lex_state = 41, .external_lex_state = 2}, + [828] = {.lex_state = 41, .external_lex_state = 2}, + [829] = {.lex_state = 41, .external_lex_state = 2}, + [830] = {.lex_state = 41, .external_lex_state = 2}, + [831] = {.lex_state = 41, .external_lex_state = 2}, + [832] = {.lex_state = 41, .external_lex_state = 2}, + [833] = {.lex_state = 41, .external_lex_state = 2}, + [834] = {.lex_state = 575}, + [835] = {.lex_state = 575}, + [836] = {.lex_state = 575}, + [837] = {.lex_state = 41, .external_lex_state = 2}, [838] = {.lex_state = 41, .external_lex_state = 2}, [839] = {.lex_state = 41, .external_lex_state = 2}, [840] = {.lex_state = 41, .external_lex_state = 2}, [841] = {.lex_state = 41, .external_lex_state = 2}, - [842] = {.lex_state = 41, .external_lex_state = 2}, + [842] = {.lex_state = 575}, [843] = {.lex_state = 41, .external_lex_state = 2}, [844] = {.lex_state = 41, .external_lex_state = 2}, [845] = {.lex_state = 41, .external_lex_state = 2}, @@ -33872,2918 +33870,2918 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [848] = {.lex_state = 41, .external_lex_state = 2}, [849] = {.lex_state = 41, .external_lex_state = 2}, [850] = {.lex_state = 41, .external_lex_state = 2}, - [851] = {.lex_state = 578}, - [852] = {.lex_state = 578}, - [853] = {.lex_state = 578}, - [854] = {.lex_state = 578}, - [855] = {.lex_state = 578}, - [856] = {.lex_state = 578}, - [857] = {.lex_state = 578}, - [858] = {.lex_state = 578}, - [859] = {.lex_state = 578}, - [860] = {.lex_state = 578}, - [861] = {.lex_state = 578}, - [862] = {.lex_state = 578}, - [863] = {.lex_state = 578}, - [864] = {.lex_state = 578}, - [865] = {.lex_state = 41, .external_lex_state = 2}, - [866] = {.lex_state = 41, .external_lex_state = 2}, - [867] = {.lex_state = 41, .external_lex_state = 2}, - [868] = {.lex_state = 41, .external_lex_state = 2}, - [869] = {.lex_state = 41, .external_lex_state = 2}, - [870] = {.lex_state = 41, .external_lex_state = 2}, - [871] = {.lex_state = 41, .external_lex_state = 2}, - [872] = {.lex_state = 41, .external_lex_state = 2}, - [873] = {.lex_state = 41, .external_lex_state = 2}, - [874] = {.lex_state = 41, .external_lex_state = 2}, - [875] = {.lex_state = 41, .external_lex_state = 2}, - [876] = {.lex_state = 41, .external_lex_state = 2}, + [851] = {.lex_state = 41, .external_lex_state = 2}, + [852] = {.lex_state = 41, .external_lex_state = 2}, + [853] = {.lex_state = 41, .external_lex_state = 2}, + [854] = {.lex_state = 41, .external_lex_state = 2}, + [855] = {.lex_state = 41, .external_lex_state = 2}, + [856] = {.lex_state = 41, .external_lex_state = 2}, + [857] = {.lex_state = 41, .external_lex_state = 2}, + [858] = {.lex_state = 41, .external_lex_state = 2}, + [859] = {.lex_state = 41, .external_lex_state = 2}, + [860] = {.lex_state = 41, .external_lex_state = 2}, + [861] = {.lex_state = 41, .external_lex_state = 2}, + [862] = {.lex_state = 575}, + [863] = {.lex_state = 41, .external_lex_state = 2}, + [864] = {.lex_state = 41, .external_lex_state = 2}, + [865] = {.lex_state = 575}, + [866] = {.lex_state = 575}, + [867] = {.lex_state = 604}, + [868] = {.lex_state = 575}, + [869] = {.lex_state = 575}, + [870] = {.lex_state = 575}, + [871] = {.lex_state = 575}, + [872] = {.lex_state = 575}, + [873] = {.lex_state = 575}, + [874] = {.lex_state = 575}, + [875] = {.lex_state = 600}, + [876] = {.lex_state = 575}, [877] = {.lex_state = 41, .external_lex_state = 2}, - [878] = {.lex_state = 40, .external_lex_state = 2}, - [879] = {.lex_state = 40, .external_lex_state = 2}, + [878] = {.lex_state = 41, .external_lex_state = 2}, + [879] = {.lex_state = 41, .external_lex_state = 2}, [880] = {.lex_state = 41, .external_lex_state = 2}, - [881] = {.lex_state = 36, .external_lex_state = 2}, + [881] = {.lex_state = 575}, [882] = {.lex_state = 41, .external_lex_state = 2}, [883] = {.lex_state = 41, .external_lex_state = 2}, [884] = {.lex_state = 41, .external_lex_state = 2}, - [885] = {.lex_state = 36, .external_lex_state = 2}, - [886] = {.lex_state = 607}, - [887] = {.lex_state = 578}, - [888] = {.lex_state = 578}, + [885] = {.lex_state = 41, .external_lex_state = 2}, + [886] = {.lex_state = 41, .external_lex_state = 2}, + [887] = {.lex_state = 575}, + [888] = {.lex_state = 41, .external_lex_state = 2}, [889] = {.lex_state = 41, .external_lex_state = 2}, [890] = {.lex_state = 41, .external_lex_state = 2}, [891] = {.lex_state = 41, .external_lex_state = 2}, - [892] = {.lex_state = 41, .external_lex_state = 2}, - [893] = {.lex_state = 41, .external_lex_state = 2}, - [894] = {.lex_state = 41, .external_lex_state = 2}, - [895] = {.lex_state = 605}, - [896] = {.lex_state = 578}, - [897] = {.lex_state = 578}, - [898] = {.lex_state = 578}, - [899] = {.lex_state = 578}, - [900] = {.lex_state = 578}, - [901] = {.lex_state = 578}, - [902] = {.lex_state = 578}, - [903] = {.lex_state = 578}, - [904] = {.lex_state = 578}, - [905] = {.lex_state = 607}, - [906] = {.lex_state = 578}, - [907] = {.lex_state = 607}, - [908] = {.lex_state = 607}, - [909] = {.lex_state = 578}, - [910] = {.lex_state = 578}, - [911] = {.lex_state = 578}, - [912] = {.lex_state = 36, .external_lex_state = 2}, - [913] = {.lex_state = 578}, - [914] = {.lex_state = 578}, - [915] = {.lex_state = 578}, - [916] = {.lex_state = 578}, - [917] = {.lex_state = 578}, - [918] = {.lex_state = 578}, - [919] = {.lex_state = 578}, - [920] = {.lex_state = 578}, - [921] = {.lex_state = 50, .external_lex_state = 2}, - [922] = {.lex_state = 578}, - [923] = {.lex_state = 578}, - [924] = {.lex_state = 578}, - [925] = {.lex_state = 578}, - [926] = {.lex_state = 578}, - [927] = {.lex_state = 578}, - [928] = {.lex_state = 578}, - [929] = {.lex_state = 578}, - [930] = {.lex_state = 578}, - [931] = {.lex_state = 607}, - [932] = {.lex_state = 578}, - [933] = {.lex_state = 578}, - [934] = {.lex_state = 578}, - [935] = {.lex_state = 578}, - [936] = {.lex_state = 578}, - [937] = {.lex_state = 607}, - [938] = {.lex_state = 578}, - [939] = {.lex_state = 578}, - [940] = {.lex_state = 605}, - [941] = {.lex_state = 607}, - [942] = {.lex_state = 578}, - [943] = {.lex_state = 578}, - [944] = {.lex_state = 578}, - [945] = {.lex_state = 578}, - [946] = {.lex_state = 578}, - [947] = {.lex_state = 578}, - [948] = {.lex_state = 607}, - [949] = {.lex_state = 578}, - [950] = {.lex_state = 578}, - [951] = {.lex_state = 578}, - [952] = {.lex_state = 578}, - [953] = {.lex_state = 578}, - [954] = {.lex_state = 607}, - [955] = {.lex_state = 578}, - [956] = {.lex_state = 578}, - [957] = {.lex_state = 605}, - [958] = {.lex_state = 607}, - [959] = {.lex_state = 607}, - [960] = {.lex_state = 607}, - [961] = {.lex_state = 607}, - [962] = {.lex_state = 50, .external_lex_state = 2}, - [963] = {.lex_state = 50, .external_lex_state = 2}, - [964] = {.lex_state = 36, .external_lex_state = 2}, - [965] = {.lex_state = 36, .external_lex_state = 2}, - [966] = {.lex_state = 36, .external_lex_state = 2}, - [967] = {.lex_state = 607}, - [968] = {.lex_state = 578}, - [969] = {.lex_state = 578}, - [970] = {.lex_state = 607}, - [971] = {.lex_state = 47, .external_lex_state = 2}, - [972] = {.lex_state = 578}, - [973] = {.lex_state = 607}, - [974] = {.lex_state = 578}, - [975] = {.lex_state = 607}, - [976] = {.lex_state = 50, .external_lex_state = 2}, - [977] = {.lex_state = 50, .external_lex_state = 2}, - [978] = {.lex_state = 622, .external_lex_state = 2}, - [979] = {.lex_state = 578}, - [980] = {.lex_state = 578}, - [981] = {.lex_state = 578}, - [982] = {.lex_state = 578}, - [983] = {.lex_state = 578}, - [984] = {.lex_state = 578}, - [985] = {.lex_state = 41, .external_lex_state = 2}, - [986] = {.lex_state = 578}, - [987] = {.lex_state = 41, .external_lex_state = 2}, - [988] = {.lex_state = 41, .external_lex_state = 2}, - [989] = {.lex_state = 578}, - [990] = {.lex_state = 578}, - [991] = {.lex_state = 578}, - [992] = {.lex_state = 578}, - [993] = {.lex_state = 578}, - [994] = {.lex_state = 578}, - [995] = {.lex_state = 578}, - [996] = {.lex_state = 578}, - [997] = {.lex_state = 578}, - [998] = {.lex_state = 578}, - [999] = {.lex_state = 578}, - [1000] = {.lex_state = 578}, - [1001] = {.lex_state = 578}, - [1002] = {.lex_state = 578}, - [1003] = {.lex_state = 578}, - [1004] = {.lex_state = 578}, - [1005] = {.lex_state = 622, .external_lex_state = 2}, - [1006] = {.lex_state = 578}, - [1007] = {.lex_state = 578}, - [1008] = {.lex_state = 578}, - [1009] = {.lex_state = 578}, - [1010] = {.lex_state = 578}, - [1011] = {.lex_state = 578}, - [1012] = {.lex_state = 578}, - [1013] = {.lex_state = 578}, - [1014] = {.lex_state = 578}, - [1015] = {.lex_state = 578}, - [1016] = {.lex_state = 578}, - [1017] = {.lex_state = 578}, - [1018] = {.lex_state = 578}, - [1019] = {.lex_state = 578}, - [1020] = {.lex_state = 578}, - [1021] = {.lex_state = 47, .external_lex_state = 2}, - [1022] = {.lex_state = 578}, - [1023] = {.lex_state = 578}, - [1024] = {.lex_state = 578}, - [1025] = {.lex_state = 607}, - [1026] = {.lex_state = 607}, - [1027] = {.lex_state = 578}, - [1028] = {.lex_state = 607}, - [1029] = {.lex_state = 578}, - [1030] = {.lex_state = 578}, - [1031] = {.lex_state = 578}, - [1032] = {.lex_state = 578}, - [1033] = {.lex_state = 578}, - [1034] = {.lex_state = 578}, - [1035] = {.lex_state = 578}, - [1036] = {.lex_state = 578}, - [1037] = {.lex_state = 578}, - [1038] = {.lex_state = 578}, - [1039] = {.lex_state = 578}, - [1040] = {.lex_state = 578}, - [1041] = {.lex_state = 578}, - [1042] = {.lex_state = 578}, - [1043] = {.lex_state = 609}, - [1044] = {.lex_state = 578}, - [1045] = {.lex_state = 578}, - [1046] = {.lex_state = 578}, - [1047] = {.lex_state = 607}, - [1048] = {.lex_state = 578}, - [1049] = {.lex_state = 607}, - [1050] = {.lex_state = 607}, - [1051] = {.lex_state = 578}, - [1052] = {.lex_state = 578}, - [1053] = {.lex_state = 578}, - [1054] = {.lex_state = 578}, - [1055] = {.lex_state = 578}, - [1056] = {.lex_state = 578}, - [1057] = {.lex_state = 578}, - [1058] = {.lex_state = 578}, - [1059] = {.lex_state = 578}, - [1060] = {.lex_state = 578}, - [1061] = {.lex_state = 578}, - [1062] = {.lex_state = 578}, - [1063] = {.lex_state = 607}, - [1064] = {.lex_state = 578}, - [1065] = {.lex_state = 578}, - [1066] = {.lex_state = 578}, - [1067] = {.lex_state = 578}, - [1068] = {.lex_state = 607}, - [1069] = {.lex_state = 578}, - [1070] = {.lex_state = 578}, - [1071] = {.lex_state = 578}, - [1072] = {.lex_state = 578}, - [1073] = {.lex_state = 578}, - [1074] = {.lex_state = 578}, - [1075] = {.lex_state = 578}, - [1076] = {.lex_state = 578}, - [1077] = {.lex_state = 578}, - [1078] = {.lex_state = 578}, - [1079] = {.lex_state = 578}, - [1080] = {.lex_state = 578}, - [1081] = {.lex_state = 578}, - [1082] = {.lex_state = 578}, - [1083] = {.lex_state = 607}, - [1084] = {.lex_state = 578}, - [1085] = {.lex_state = 578}, - [1086] = {.lex_state = 578}, - [1087] = {.lex_state = 578}, - [1088] = {.lex_state = 578}, - [1089] = {.lex_state = 578}, - [1090] = {.lex_state = 607}, - [1091] = {.lex_state = 578}, - [1092] = {.lex_state = 578}, - [1093] = {.lex_state = 578}, - [1094] = {.lex_state = 578}, - [1095] = {.lex_state = 578}, - [1096] = {.lex_state = 578}, - [1097] = {.lex_state = 578}, - [1098] = {.lex_state = 578}, - [1099] = {.lex_state = 578}, - [1100] = {.lex_state = 578}, - [1101] = {.lex_state = 578}, - [1102] = {.lex_state = 578}, - [1103] = {.lex_state = 578}, - [1104] = {.lex_state = 578}, - [1105] = {.lex_state = 578}, - [1106] = {.lex_state = 578}, - [1107] = {.lex_state = 578}, - [1108] = {.lex_state = 578}, - [1109] = {.lex_state = 41, .external_lex_state = 2}, - [1110] = {.lex_state = 41, .external_lex_state = 2}, - [1111] = {.lex_state = 41, .external_lex_state = 2}, - [1112] = {.lex_state = 609}, - [1113] = {.lex_state = 609}, - [1114] = {.lex_state = 609}, - [1115] = {.lex_state = 578}, - [1116] = {.lex_state = 578}, - [1117] = {.lex_state = 36, .external_lex_state = 2}, - [1118] = {.lex_state = 36, .external_lex_state = 2}, - [1119] = {.lex_state = 578}, - [1120] = {.lex_state = 578}, - [1121] = {.lex_state = 578}, - [1122] = {.lex_state = 611}, - [1123] = {.lex_state = 578}, - [1124] = {.lex_state = 578}, - [1125] = {.lex_state = 47, .external_lex_state = 2}, - [1126] = {.lex_state = 578}, - [1127] = {.lex_state = 578}, - [1128] = {.lex_state = 578}, - [1129] = {.lex_state = 622, .external_lex_state = 2}, - [1130] = {.lex_state = 578}, - [1131] = {.lex_state = 578}, - [1132] = {.lex_state = 578}, - [1133] = {.lex_state = 578}, - [1134] = {.lex_state = 578}, - [1135] = {.lex_state = 578}, - [1136] = {.lex_state = 578}, - [1137] = {.lex_state = 578}, - [1138] = {.lex_state = 578}, - [1139] = {.lex_state = 578}, - [1140] = {.lex_state = 578}, - [1141] = {.lex_state = 578}, - [1142] = {.lex_state = 578}, - [1143] = {.lex_state = 578}, - [1144] = {.lex_state = 578}, - [1145] = {.lex_state = 578}, - [1146] = {.lex_state = 578}, - [1147] = {.lex_state = 578}, - [1148] = {.lex_state = 578}, - [1149] = {.lex_state = 46, .external_lex_state = 2}, - [1150] = {.lex_state = 578}, - [1151] = {.lex_state = 46, .external_lex_state = 2}, - [1152] = {.lex_state = 578}, - [1153] = {.lex_state = 578}, - [1154] = {.lex_state = 578}, - [1155] = {.lex_state = 578}, - [1156] = {.lex_state = 578}, - [1157] = {.lex_state = 578}, - [1158] = {.lex_state = 578}, - [1159] = {.lex_state = 578}, - [1160] = {.lex_state = 578}, - [1161] = {.lex_state = 578}, - [1162] = {.lex_state = 578}, - [1163] = {.lex_state = 609}, - [1164] = {.lex_state = 578}, - [1165] = {.lex_state = 578}, - [1166] = {.lex_state = 578}, - [1167] = {.lex_state = 578}, - [1168] = {.lex_state = 578}, - [1169] = {.lex_state = 578}, - [1170] = {.lex_state = 578}, - [1171] = {.lex_state = 578}, - [1172] = {.lex_state = 609}, - [1173] = {.lex_state = 578}, - [1174] = {.lex_state = 578}, - [1175] = {.lex_state = 578}, - [1176] = {.lex_state = 578}, - [1177] = {.lex_state = 578}, - [1178] = {.lex_state = 578}, - [1179] = {.lex_state = 578}, - [1180] = {.lex_state = 578}, - [1181] = {.lex_state = 578}, - [1182] = {.lex_state = 578}, - [1183] = {.lex_state = 578}, - [1184] = {.lex_state = 578}, - [1185] = {.lex_state = 578}, - [1186] = {.lex_state = 578}, - [1187] = {.lex_state = 578}, - [1188] = {.lex_state = 578}, - [1189] = {.lex_state = 578}, - [1190] = {.lex_state = 578}, - [1191] = {.lex_state = 578}, - [1192] = {.lex_state = 578}, - [1193] = {.lex_state = 578}, - [1194] = {.lex_state = 578}, - [1195] = {.lex_state = 578}, - [1196] = {.lex_state = 578}, - [1197] = {.lex_state = 578}, - [1198] = {.lex_state = 578}, - [1199] = {.lex_state = 578}, - [1200] = {.lex_state = 578}, - [1201] = {.lex_state = 578}, - [1202] = {.lex_state = 578}, - [1203] = {.lex_state = 578}, - [1204] = {.lex_state = 578}, - [1205] = {.lex_state = 607}, - [1206] = {.lex_state = 578}, - [1207] = {.lex_state = 609}, - [1208] = {.lex_state = 578}, - [1209] = {.lex_state = 578}, - [1210] = {.lex_state = 578}, - [1211] = {.lex_state = 578}, - [1212] = {.lex_state = 578}, - [1213] = {.lex_state = 578}, - [1214] = {.lex_state = 578}, - [1215] = {.lex_state = 578}, - [1216] = {.lex_state = 578}, - [1217] = {.lex_state = 578}, - [1218] = {.lex_state = 578}, - [1219] = {.lex_state = 578}, - [1220] = {.lex_state = 578}, - [1221] = {.lex_state = 578}, - [1222] = {.lex_state = 578}, - [1223] = {.lex_state = 578}, - [1224] = {.lex_state = 578}, - [1225] = {.lex_state = 578}, - [1226] = {.lex_state = 578}, - [1227] = {.lex_state = 578}, - [1228] = {.lex_state = 578}, - [1229] = {.lex_state = 578}, - [1230] = {.lex_state = 50, .external_lex_state = 2}, - [1231] = {.lex_state = 578}, - [1232] = {.lex_state = 50, .external_lex_state = 2}, - [1233] = {.lex_state = 578}, - [1234] = {.lex_state = 578}, - [1235] = {.lex_state = 578}, - [1236] = {.lex_state = 578}, - [1237] = {.lex_state = 46, .external_lex_state = 2}, - [1238] = {.lex_state = 578}, - [1239] = {.lex_state = 609}, - [1240] = {.lex_state = 50, .external_lex_state = 2}, - [1241] = {.lex_state = 578}, - [1242] = {.lex_state = 609}, - [1243] = {.lex_state = 578}, - [1244] = {.lex_state = 578}, - [1245] = {.lex_state = 578}, - [1246] = {.lex_state = 578}, - [1247] = {.lex_state = 578}, - [1248] = {.lex_state = 578}, - [1249] = {.lex_state = 578}, - [1250] = {.lex_state = 578}, - [1251] = {.lex_state = 578}, - [1252] = {.lex_state = 31, .external_lex_state = 2}, - [1253] = {.lex_state = 578}, - [1254] = {.lex_state = 578}, - [1255] = {.lex_state = 578}, - [1256] = {.lex_state = 50, .external_lex_state = 2}, - [1257] = {.lex_state = 50, .external_lex_state = 2}, - [1258] = {.lex_state = 50, .external_lex_state = 2}, + [892] = {.lex_state = 575}, + [893] = {.lex_state = 575}, + [894] = {.lex_state = 575}, + [895] = {.lex_state = 40, .external_lex_state = 2}, + [896] = {.lex_state = 575}, + [897] = {.lex_state = 575}, + [898] = {.lex_state = 575}, + [899] = {.lex_state = 575}, + [900] = {.lex_state = 575}, + [901] = {.lex_state = 575}, + [902] = {.lex_state = 575}, + [903] = {.lex_state = 575}, + [904] = {.lex_state = 604}, + [905] = {.lex_state = 575}, + [906] = {.lex_state = 575}, + [907] = {.lex_state = 47, .external_lex_state = 2}, + [908] = {.lex_state = 604}, + [909] = {.lex_state = 575}, + [910] = {.lex_state = 575}, + [911] = {.lex_state = 575}, + [912] = {.lex_state = 604}, + [913] = {.lex_state = 602}, + [914] = {.lex_state = 575}, + [915] = {.lex_state = 575}, + [916] = {.lex_state = 575}, + [917] = {.lex_state = 575}, + [918] = {.lex_state = 575}, + [919] = {.lex_state = 604}, + [920] = {.lex_state = 575}, + [921] = {.lex_state = 38, .external_lex_state = 2}, + [922] = {.lex_state = 575}, + [923] = {.lex_state = 575}, + [924] = {.lex_state = 575}, + [925] = {.lex_state = 575}, + [926] = {.lex_state = 575}, + [927] = {.lex_state = 604}, + [928] = {.lex_state = 575}, + [929] = {.lex_state = 575}, + [930] = {.lex_state = 575}, + [931] = {.lex_state = 575}, + [932] = {.lex_state = 575}, + [933] = {.lex_state = 575}, + [934] = {.lex_state = 575}, + [935] = {.lex_state = 575}, + [936] = {.lex_state = 575}, + [937] = {.lex_state = 575}, + [938] = {.lex_state = 575}, + [939] = {.lex_state = 575}, + [940] = {.lex_state = 575}, + [941] = {.lex_state = 575}, + [942] = {.lex_state = 575}, + [943] = {.lex_state = 575}, + [944] = {.lex_state = 575}, + [945] = {.lex_state = 47, .external_lex_state = 2}, + [946] = {.lex_state = 604}, + [947] = {.lex_state = 575}, + [948] = {.lex_state = 575}, + [949] = {.lex_state = 575}, + [950] = {.lex_state = 602}, + [951] = {.lex_state = 604}, + [952] = {.lex_state = 575}, + [953] = {.lex_state = 575}, + [954] = {.lex_state = 47, .external_lex_state = 2}, + [955] = {.lex_state = 604}, + [956] = {.lex_state = 50, .external_lex_state = 2}, + [957] = {.lex_state = 604}, + [958] = {.lex_state = 50, .external_lex_state = 2}, + [959] = {.lex_state = 604}, + [960] = {.lex_state = 575}, + [961] = {.lex_state = 38, .external_lex_state = 2}, + [962] = {.lex_state = 575}, + [963] = {.lex_state = 575}, + [964] = {.lex_state = 604}, + [965] = {.lex_state = 604}, + [966] = {.lex_state = 50, .external_lex_state = 2}, + [967] = {.lex_state = 575}, + [968] = {.lex_state = 575}, + [969] = {.lex_state = 575}, + [970] = {.lex_state = 575}, + [971] = {.lex_state = 575}, + [972] = {.lex_state = 575}, + [973] = {.lex_state = 604}, + [974] = {.lex_state = 604}, + [975] = {.lex_state = 604}, + [976] = {.lex_state = 604}, + [977] = {.lex_state = 575}, + [978] = {.lex_state = 604}, + [979] = {.lex_state = 604}, + [980] = {.lex_state = 575}, + [981] = {.lex_state = 575}, + [982] = {.lex_state = 575}, + [983] = {.lex_state = 604}, + [984] = {.lex_state = 575}, + [985] = {.lex_state = 604}, + [986] = {.lex_state = 575}, + [987] = {.lex_state = 604}, + [988] = {.lex_state = 575}, + [989] = {.lex_state = 604}, + [990] = {.lex_state = 575}, + [991] = {.lex_state = 575}, + [992] = {.lex_state = 575}, + [993] = {.lex_state = 575}, + [994] = {.lex_state = 575}, + [995] = {.lex_state = 575}, + [996] = {.lex_state = 575}, + [997] = {.lex_state = 575}, + [998] = {.lex_state = 575}, + [999] = {.lex_state = 575}, + [1000] = {.lex_state = 575}, + [1001] = {.lex_state = 575}, + [1002] = {.lex_state = 575}, + [1003] = {.lex_state = 575}, + [1004] = {.lex_state = 575}, + [1005] = {.lex_state = 575}, + [1006] = {.lex_state = 575}, + [1007] = {.lex_state = 575}, + [1008] = {.lex_state = 575}, + [1009] = {.lex_state = 38, .external_lex_state = 2}, + [1010] = {.lex_state = 575}, + [1011] = {.lex_state = 575}, + [1012] = {.lex_state = 575}, + [1013] = {.lex_state = 604}, + [1014] = {.lex_state = 575}, + [1015] = {.lex_state = 38, .external_lex_state = 2}, + [1016] = {.lex_state = 575}, + [1017] = {.lex_state = 604}, + [1018] = {.lex_state = 575}, + [1019] = {.lex_state = 604}, + [1020] = {.lex_state = 575}, + [1021] = {.lex_state = 604}, + [1022] = {.lex_state = 41, .external_lex_state = 2}, + [1023] = {.lex_state = 575}, + [1024] = {.lex_state = 41, .external_lex_state = 2}, + [1025] = {.lex_state = 41, .external_lex_state = 2}, + [1026] = {.lex_state = 575}, + [1027] = {.lex_state = 575}, + [1028] = {.lex_state = 575}, + [1029] = {.lex_state = 575}, + [1030] = {.lex_state = 575}, + [1031] = {.lex_state = 575}, + [1032] = {.lex_state = 575}, + [1033] = {.lex_state = 38, .external_lex_state = 2}, + [1034] = {.lex_state = 575}, + [1035] = {.lex_state = 38, .external_lex_state = 2}, + [1036] = {.lex_state = 575}, + [1037] = {.lex_state = 575}, + [1038] = {.lex_state = 575}, + [1039] = {.lex_state = 575}, + [1040] = {.lex_state = 575}, + [1041] = {.lex_state = 575}, + [1042] = {.lex_state = 575}, + [1043] = {.lex_state = 575}, + [1044] = {.lex_state = 575}, + [1045] = {.lex_state = 575}, + [1046] = {.lex_state = 575}, + [1047] = {.lex_state = 575}, + [1048] = {.lex_state = 575}, + [1049] = {.lex_state = 575}, + [1050] = {.lex_state = 575}, + [1051] = {.lex_state = 575}, + [1052] = {.lex_state = 575}, + [1053] = {.lex_state = 575}, + [1054] = {.lex_state = 575}, + [1055] = {.lex_state = 619, .external_lex_state = 2}, + [1056] = {.lex_state = 575}, + [1057] = {.lex_state = 575}, + [1058] = {.lex_state = 575}, + [1059] = {.lex_state = 575}, + [1060] = {.lex_state = 575}, + [1061] = {.lex_state = 619, .external_lex_state = 2}, + [1062] = {.lex_state = 575}, + [1063] = {.lex_state = 575}, + [1064] = {.lex_state = 575}, + [1065] = {.lex_state = 575}, + [1066] = {.lex_state = 575}, + [1067] = {.lex_state = 575}, + [1068] = {.lex_state = 575}, + [1069] = {.lex_state = 575}, + [1070] = {.lex_state = 575}, + [1071] = {.lex_state = 575}, + [1072] = {.lex_state = 575}, + [1073] = {.lex_state = 575}, + [1074] = {.lex_state = 575}, + [1075] = {.lex_state = 575}, + [1076] = {.lex_state = 575}, + [1077] = {.lex_state = 575}, + [1078] = {.lex_state = 575}, + [1079] = {.lex_state = 575}, + [1080] = {.lex_state = 575}, + [1081] = {.lex_state = 575}, + [1082] = {.lex_state = 575}, + [1083] = {.lex_state = 575}, + [1084] = {.lex_state = 575}, + [1085] = {.lex_state = 575}, + [1086] = {.lex_state = 575}, + [1087] = {.lex_state = 575}, + [1088] = {.lex_state = 575}, + [1089] = {.lex_state = 575}, + [1090] = {.lex_state = 575}, + [1091] = {.lex_state = 575}, + [1092] = {.lex_state = 575}, + [1093] = {.lex_state = 575}, + [1094] = {.lex_state = 575}, + [1095] = {.lex_state = 575}, + [1096] = {.lex_state = 575}, + [1097] = {.lex_state = 575}, + [1098] = {.lex_state = 575}, + [1099] = {.lex_state = 575}, + [1100] = {.lex_state = 575}, + [1101] = {.lex_state = 606}, + [1102] = {.lex_state = 575}, + [1103] = {.lex_state = 575}, + [1104] = {.lex_state = 575}, + [1105] = {.lex_state = 575}, + [1106] = {.lex_state = 606}, + [1107] = {.lex_state = 606}, + [1108] = {.lex_state = 606}, + [1109] = {.lex_state = 608}, + [1110] = {.lex_state = 575}, + [1111] = {.lex_state = 575}, + [1112] = {.lex_state = 575}, + [1113] = {.lex_state = 41, .external_lex_state = 2}, + [1114] = {.lex_state = 41, .external_lex_state = 2}, + [1115] = {.lex_state = 41, .external_lex_state = 2}, + [1116] = {.lex_state = 575}, + [1117] = {.lex_state = 575}, + [1118] = {.lex_state = 575}, + [1119] = {.lex_state = 575}, + [1120] = {.lex_state = 575}, + [1121] = {.lex_state = 575}, + [1122] = {.lex_state = 575}, + [1123] = {.lex_state = 575}, + [1124] = {.lex_state = 575}, + [1125] = {.lex_state = 575}, + [1126] = {.lex_state = 575}, + [1127] = {.lex_state = 50, .external_lex_state = 2}, + [1128] = {.lex_state = 50, .external_lex_state = 2}, + [1129] = {.lex_state = 619, .external_lex_state = 2}, + [1130] = {.lex_state = 575}, + [1131] = {.lex_state = 575}, + [1132] = {.lex_state = 575}, + [1133] = {.lex_state = 575}, + [1134] = {.lex_state = 50, .external_lex_state = 2}, + [1135] = {.lex_state = 575}, + [1136] = {.lex_state = 575}, + [1137] = {.lex_state = 575}, + [1138] = {.lex_state = 575}, + [1139] = {.lex_state = 575}, + [1140] = {.lex_state = 575}, + [1141] = {.lex_state = 575}, + [1142] = {.lex_state = 575}, + [1143] = {.lex_state = 575}, + [1144] = {.lex_state = 575}, + [1145] = {.lex_state = 46, .external_lex_state = 2}, + [1146] = {.lex_state = 46, .external_lex_state = 2}, + [1147] = {.lex_state = 575}, + [1148] = {.lex_state = 575}, + [1149] = {.lex_state = 575}, + [1150] = {.lex_state = 575}, + [1151] = {.lex_state = 575}, + [1152] = {.lex_state = 575}, + [1153] = {.lex_state = 575}, + [1154] = {.lex_state = 575}, + [1155] = {.lex_state = 575}, + [1156] = {.lex_state = 50, .external_lex_state = 2}, + [1157] = {.lex_state = 575}, + [1158] = {.lex_state = 575}, + [1159] = {.lex_state = 575}, + [1160] = {.lex_state = 575}, + [1161] = {.lex_state = 575}, + [1162] = {.lex_state = 575}, + [1163] = {.lex_state = 575}, + [1164] = {.lex_state = 575}, + [1165] = {.lex_state = 575}, + [1166] = {.lex_state = 575}, + [1167] = {.lex_state = 575}, + [1168] = {.lex_state = 575}, + [1169] = {.lex_state = 575}, + [1170] = {.lex_state = 575}, + [1171] = {.lex_state = 575}, + [1172] = {.lex_state = 575}, + [1173] = {.lex_state = 575}, + [1174] = {.lex_state = 575}, + [1175] = {.lex_state = 575}, + [1176] = {.lex_state = 575}, + [1177] = {.lex_state = 575}, + [1178] = {.lex_state = 575}, + [1179] = {.lex_state = 575}, + [1180] = {.lex_state = 575}, + [1181] = {.lex_state = 575}, + [1182] = {.lex_state = 575}, + [1183] = {.lex_state = 575}, + [1184] = {.lex_state = 575}, + [1185] = {.lex_state = 575}, + [1186] = {.lex_state = 575}, + [1187] = {.lex_state = 575}, + [1188] = {.lex_state = 575}, + [1189] = {.lex_state = 575}, + [1190] = {.lex_state = 575}, + [1191] = {.lex_state = 575}, + [1192] = {.lex_state = 575}, + [1193] = {.lex_state = 575}, + [1194] = {.lex_state = 575}, + [1195] = {.lex_state = 575}, + [1196] = {.lex_state = 575}, + [1197] = {.lex_state = 575}, + [1198] = {.lex_state = 575}, + [1199] = {.lex_state = 575}, + [1200] = {.lex_state = 575}, + [1201] = {.lex_state = 575}, + [1202] = {.lex_state = 575}, + [1203] = {.lex_state = 575}, + [1204] = {.lex_state = 575}, + [1205] = {.lex_state = 575}, + [1206] = {.lex_state = 575}, + [1207] = {.lex_state = 575}, + [1208] = {.lex_state = 575}, + [1209] = {.lex_state = 606}, + [1210] = {.lex_state = 606}, + [1211] = {.lex_state = 575}, + [1212] = {.lex_state = 575}, + [1213] = {.lex_state = 575}, + [1214] = {.lex_state = 575}, + [1215] = {.lex_state = 575}, + [1216] = {.lex_state = 575}, + [1217] = {.lex_state = 575}, + [1218] = {.lex_state = 575}, + [1219] = {.lex_state = 606}, + [1220] = {.lex_state = 606}, + [1221] = {.lex_state = 606}, + [1222] = {.lex_state = 575}, + [1223] = {.lex_state = 575}, + [1224] = {.lex_state = 575}, + [1225] = {.lex_state = 575}, + [1226] = {.lex_state = 575}, + [1227] = {.lex_state = 575}, + [1228] = {.lex_state = 575}, + [1229] = {.lex_state = 575}, + [1230] = {.lex_state = 575}, + [1231] = {.lex_state = 575}, + [1232] = {.lex_state = 604}, + [1233] = {.lex_state = 575}, + [1234] = {.lex_state = 575}, + [1235] = {.lex_state = 575}, + [1236] = {.lex_state = 575}, + [1237] = {.lex_state = 575}, + [1238] = {.lex_state = 575}, + [1239] = {.lex_state = 575}, + [1240] = {.lex_state = 575}, + [1241] = {.lex_state = 575}, + [1242] = {.lex_state = 575}, + [1243] = {.lex_state = 50, .external_lex_state = 2}, + [1244] = {.lex_state = 50, .external_lex_state = 2}, + [1245] = {.lex_state = 46, .external_lex_state = 2}, + [1246] = {.lex_state = 575}, + [1247] = {.lex_state = 46, .external_lex_state = 2}, + [1248] = {.lex_state = 575}, + [1249] = {.lex_state = 575}, + [1250] = {.lex_state = 575}, + [1251] = {.lex_state = 575}, + [1252] = {.lex_state = 575}, + [1253] = {.lex_state = 575}, + [1254] = {.lex_state = 575}, + [1255] = {.lex_state = 575}, + [1256] = {.lex_state = 575}, + [1257] = {.lex_state = 575}, + [1258] = {.lex_state = 31, .external_lex_state = 2}, [1259] = {.lex_state = 50, .external_lex_state = 2}, - [1260] = {.lex_state = 46, .external_lex_state = 2}, - [1261] = {.lex_state = 578}, - [1262] = {.lex_state = 578}, - [1263] = {.lex_state = 578}, - [1264] = {.lex_state = 578}, - [1265] = {.lex_state = 578}, - [1266] = {.lex_state = 578}, - [1267] = {.lex_state = 578}, - [1268] = {.lex_state = 578}, - [1269] = {.lex_state = 578}, - [1270] = {.lex_state = 578}, - [1271] = {.lex_state = 578}, - [1272] = {.lex_state = 578}, - [1273] = {.lex_state = 578}, - [1274] = {.lex_state = 578}, - [1275] = {.lex_state = 622, .external_lex_state = 2}, - [1276] = {.lex_state = 578}, - [1277] = {.lex_state = 578}, - [1278] = {.lex_state = 578}, - [1279] = {.lex_state = 578}, - [1280] = {.lex_state = 578}, - [1281] = {.lex_state = 578}, - [1282] = {.lex_state = 578}, - [1283] = {.lex_state = 578}, - [1284] = {.lex_state = 578}, - [1285] = {.lex_state = 578}, - [1286] = {.lex_state = 578}, - [1287] = {.lex_state = 45, .external_lex_state = 2}, - [1288] = {.lex_state = 578}, - [1289] = {.lex_state = 578}, - [1290] = {.lex_state = 578}, - [1291] = {.lex_state = 45, .external_lex_state = 2}, - [1292] = {.lex_state = 578}, - [1293] = {.lex_state = 578}, - [1294] = {.lex_state = 578}, - [1295] = {.lex_state = 578}, - [1296] = {.lex_state = 578}, - [1297] = {.lex_state = 578}, - [1298] = {.lex_state = 578}, - [1299] = {.lex_state = 578}, - [1300] = {.lex_state = 578}, - [1301] = {.lex_state = 578}, - [1302] = {.lex_state = 578}, - [1303] = {.lex_state = 578}, - [1304] = {.lex_state = 578}, - [1305] = {.lex_state = 578}, - [1306] = {.lex_state = 578}, - [1307] = {.lex_state = 578}, - [1308] = {.lex_state = 578}, - [1309] = {.lex_state = 578}, - [1310] = {.lex_state = 578}, - [1311] = {.lex_state = 578}, - [1312] = {.lex_state = 578}, - [1313] = {.lex_state = 578}, - [1314] = {.lex_state = 578}, - [1315] = {.lex_state = 578}, - [1316] = {.lex_state = 578}, - [1317] = {.lex_state = 578}, - [1318] = {.lex_state = 578}, - [1319] = {.lex_state = 578}, - [1320] = {.lex_state = 578}, - [1321] = {.lex_state = 578}, - [1322] = {.lex_state = 578}, - [1323] = {.lex_state = 578}, - [1324] = {.lex_state = 578}, - [1325] = {.lex_state = 578}, - [1326] = {.lex_state = 578}, - [1327] = {.lex_state = 578}, - [1328] = {.lex_state = 622, .external_lex_state = 2}, - [1329] = {.lex_state = 45, .external_lex_state = 2}, - [1330] = {.lex_state = 578}, - [1331] = {.lex_state = 45, .external_lex_state = 2}, - [1332] = {.lex_state = 578}, - [1333] = {.lex_state = 578}, - [1334] = {.lex_state = 578}, - [1335] = {.lex_state = 578}, - [1336] = {.lex_state = 578}, - [1337] = {.lex_state = 578}, - [1338] = {.lex_state = 622, .external_lex_state = 2}, - [1339] = {.lex_state = 578}, - [1340] = {.lex_state = 578}, - [1341] = {.lex_state = 578}, - [1342] = {.lex_state = 578}, - [1343] = {.lex_state = 578}, - [1344] = {.lex_state = 578}, - [1345] = {.lex_state = 578}, + [1260] = {.lex_state = 50, .external_lex_state = 2}, + [1261] = {.lex_state = 50, .external_lex_state = 2}, + [1262] = {.lex_state = 575}, + [1263] = {.lex_state = 575}, + [1264] = {.lex_state = 575}, + [1265] = {.lex_state = 575}, + [1266] = {.lex_state = 575}, + [1267] = {.lex_state = 575}, + [1268] = {.lex_state = 575}, + [1269] = {.lex_state = 575}, + [1270] = {.lex_state = 575}, + [1271] = {.lex_state = 575}, + [1272] = {.lex_state = 575}, + [1273] = {.lex_state = 575}, + [1274] = {.lex_state = 575}, + [1275] = {.lex_state = 45, .external_lex_state = 2}, + [1276] = {.lex_state = 45, .external_lex_state = 2}, + [1277] = {.lex_state = 575}, + [1278] = {.lex_state = 575}, + [1279] = {.lex_state = 575}, + [1280] = {.lex_state = 575}, + [1281] = {.lex_state = 575}, + [1282] = {.lex_state = 575}, + [1283] = {.lex_state = 575}, + [1284] = {.lex_state = 575}, + [1285] = {.lex_state = 575}, + [1286] = {.lex_state = 575}, + [1287] = {.lex_state = 575}, + [1288] = {.lex_state = 575}, + [1289] = {.lex_state = 575}, + [1290] = {.lex_state = 575}, + [1291] = {.lex_state = 575}, + [1292] = {.lex_state = 575}, + [1293] = {.lex_state = 575}, + [1294] = {.lex_state = 575}, + [1295] = {.lex_state = 575}, + [1296] = {.lex_state = 575}, + [1297] = {.lex_state = 575}, + [1298] = {.lex_state = 575}, + [1299] = {.lex_state = 575}, + [1300] = {.lex_state = 45, .external_lex_state = 2}, + [1301] = {.lex_state = 575}, + [1302] = {.lex_state = 575}, + [1303] = {.lex_state = 575}, + [1304] = {.lex_state = 575}, + [1305] = {.lex_state = 575}, + [1306] = {.lex_state = 575}, + [1307] = {.lex_state = 619, .external_lex_state = 2}, + [1308] = {.lex_state = 575}, + [1309] = {.lex_state = 575}, + [1310] = {.lex_state = 575}, + [1311] = {.lex_state = 575}, + [1312] = {.lex_state = 575}, + [1313] = {.lex_state = 575}, + [1314] = {.lex_state = 575}, + [1315] = {.lex_state = 575}, + [1316] = {.lex_state = 575}, + [1317] = {.lex_state = 575}, + [1318] = {.lex_state = 575}, + [1319] = {.lex_state = 575}, + [1320] = {.lex_state = 575}, + [1321] = {.lex_state = 575}, + [1322] = {.lex_state = 575}, + [1323] = {.lex_state = 575}, + [1324] = {.lex_state = 575}, + [1325] = {.lex_state = 575}, + [1326] = {.lex_state = 575}, + [1327] = {.lex_state = 575}, + [1328] = {.lex_state = 575}, + [1329] = {.lex_state = 575}, + [1330] = {.lex_state = 575}, + [1331] = {.lex_state = 575}, + [1332] = {.lex_state = 575}, + [1333] = {.lex_state = 575}, + [1334] = {.lex_state = 575}, + [1335] = {.lex_state = 619, .external_lex_state = 2}, + [1336] = {.lex_state = 575}, + [1337] = {.lex_state = 575}, + [1338] = {.lex_state = 575}, + [1339] = {.lex_state = 575}, + [1340] = {.lex_state = 575}, + [1341] = {.lex_state = 619, .external_lex_state = 2}, + [1342] = {.lex_state = 575}, + [1343] = {.lex_state = 575}, + [1344] = {.lex_state = 45, .external_lex_state = 2}, + [1345] = {.lex_state = 575}, [1346] = {.lex_state = 174, .external_lex_state = 2}, [1347] = {.lex_state = 46, .external_lex_state = 2}, - [1348] = {.lex_state = 175, .external_lex_state = 2}, - [1349] = {.lex_state = 175, .external_lex_state = 2}, - [1350] = {.lex_state = 29, .external_lex_state = 2}, - [1351] = {.lex_state = 45, .external_lex_state = 2}, - [1352] = {.lex_state = 45, .external_lex_state = 2}, - [1353] = {.lex_state = 45, .external_lex_state = 2}, + [1348] = {.lex_state = 45, .external_lex_state = 2}, + [1349] = {.lex_state = 45, .external_lex_state = 2}, + [1350] = {.lex_state = 175, .external_lex_state = 2}, + [1351] = {.lex_state = 29, .external_lex_state = 2}, + [1352] = {.lex_state = 29, .external_lex_state = 2}, + [1353] = {.lex_state = 175, .external_lex_state = 2}, [1354] = {.lex_state = 29, .external_lex_state = 2}, - [1355] = {.lex_state = 622, .external_lex_state = 2}, - [1356] = {.lex_state = 29, .external_lex_state = 2}, - [1357] = {.lex_state = 29, .external_lex_state = 2}, - [1358] = {.lex_state = 629, .external_lex_state = 2}, - [1359] = {.lex_state = 622, .external_lex_state = 2}, - [1360] = {.lex_state = 46, .external_lex_state = 2}, + [1355] = {.lex_state = 29, .external_lex_state = 2}, + [1356] = {.lex_state = 619, .external_lex_state = 2}, + [1357] = {.lex_state = 45, .external_lex_state = 2}, + [1358] = {.lex_state = 148, .external_lex_state = 2}, + [1359] = {.lex_state = 619, .external_lex_state = 2}, + [1360] = {.lex_state = 619, .external_lex_state = 2}, [1361] = {.lex_state = 46, .external_lex_state = 2}, - [1362] = {.lex_state = 148, .external_lex_state = 2}, - [1363] = {.lex_state = 622, .external_lex_state = 2}, - [1364] = {.lex_state = 622, .external_lex_state = 2}, - [1365] = {.lex_state = 148, .external_lex_state = 2}, - [1366] = {.lex_state = 29, .external_lex_state = 2}, - [1367] = {.lex_state = 622, .external_lex_state = 2}, - [1368] = {.lex_state = 622, .external_lex_state = 2}, - [1369] = {.lex_state = 622, .external_lex_state = 2}, - [1370] = {.lex_state = 622, .external_lex_state = 2}, - [1371] = {.lex_state = 622, .external_lex_state = 2}, - [1372] = {.lex_state = 46, .external_lex_state = 2}, - [1373] = {.lex_state = 148, .external_lex_state = 2}, + [1362] = {.lex_state = 619, .external_lex_state = 2}, + [1363] = {.lex_state = 46, .external_lex_state = 2}, + [1364] = {.lex_state = 148, .external_lex_state = 2}, + [1365] = {.lex_state = 29, .external_lex_state = 2}, + [1366] = {.lex_state = 148, .external_lex_state = 2}, + [1367] = {.lex_state = 619, .external_lex_state = 2}, + [1368] = {.lex_state = 46, .external_lex_state = 2}, + [1369] = {.lex_state = 619, .external_lex_state = 2}, + [1370] = {.lex_state = 626, .external_lex_state = 2}, + [1371] = {.lex_state = 619, .external_lex_state = 2}, + [1372] = {.lex_state = 148, .external_lex_state = 2}, + [1373] = {.lex_state = 619, .external_lex_state = 2}, [1374] = {.lex_state = 148, .external_lex_state = 2}, - [1375] = {.lex_state = 148, .external_lex_state = 2}, - [1376] = {.lex_state = 622, .external_lex_state = 2}, - [1377] = {.lex_state = 622, .external_lex_state = 2}, - [1378] = {.lex_state = 622, .external_lex_state = 2}, - [1379] = {.lex_state = 582}, - [1380] = {.lex_state = 622, .external_lex_state = 2}, - [1381] = {.lex_state = 29, .external_lex_state = 2}, - [1382] = {.lex_state = 622, .external_lex_state = 2}, - [1383] = {.lex_state = 622, .external_lex_state = 2}, - [1384] = {.lex_state = 622, .external_lex_state = 2}, - [1385] = {.lex_state = 622, .external_lex_state = 2}, - [1386] = {.lex_state = 582}, - [1387] = {.lex_state = 584}, - [1388] = {.lex_state = 584}, - [1389] = {.lex_state = 622, .external_lex_state = 2}, - [1390] = {.lex_state = 34, .external_lex_state = 2}, - [1391] = {.lex_state = 622, .external_lex_state = 2}, - [1392] = {.lex_state = 34, .external_lex_state = 2}, - [1393] = {.lex_state = 622, .external_lex_state = 2}, - [1394] = {.lex_state = 47, .external_lex_state = 2}, - [1395] = {.lex_state = 33, .external_lex_state = 2}, - [1396] = {.lex_state = 584}, - [1397] = {.lex_state = 584}, - [1398] = {.lex_state = 33, .external_lex_state = 2}, - [1399] = {.lex_state = 622, .external_lex_state = 2}, - [1400] = {.lex_state = 586}, - [1401] = {.lex_state = 590}, - [1402] = {.lex_state = 590}, - [1403] = {.lex_state = 592}, - [1404] = {.lex_state = 33, .external_lex_state = 2}, - [1405] = {.lex_state = 34, .external_lex_state = 2}, - [1406] = {.lex_state = 594}, - [1407] = {.lex_state = 33, .external_lex_state = 2}, - [1408] = {.lex_state = 586}, - [1409] = {.lex_state = 33, .external_lex_state = 2}, - [1410] = {.lex_state = 592}, - [1411] = {.lex_state = 33, .external_lex_state = 2}, - [1412] = {.lex_state = 47, .external_lex_state = 2}, - [1413] = {.lex_state = 592}, - [1414] = {.lex_state = 588}, - [1415] = {.lex_state = 594}, - [1416] = {.lex_state = 34, .external_lex_state = 2}, - [1417] = {.lex_state = 158, .external_lex_state = 2}, - [1418] = {.lex_state = 47, .external_lex_state = 2}, - [1419] = {.lex_state = 596}, - [1420] = {.lex_state = 158, .external_lex_state = 2}, - [1421] = {.lex_state = 594}, - [1422] = {.lex_state = 592}, - [1423] = {.lex_state = 594}, - [1424] = {.lex_state = 47, .external_lex_state = 2}, - [1425] = {.lex_state = 594}, - [1426] = {.lex_state = 596}, - [1427] = {.lex_state = 588}, - [1428] = {.lex_state = 594}, - [1429] = {.lex_state = 598}, - [1430] = {.lex_state = 594}, - [1431] = {.lex_state = 598}, - [1432] = {.lex_state = 594}, - [1433] = {.lex_state = 600}, - [1434] = {.lex_state = 600}, - [1435] = {.lex_state = 600}, - [1436] = {.lex_state = 600}, - [1437] = {.lex_state = 600}, - [1438] = {.lex_state = 598}, - [1439] = {.lex_state = 598}, - [1440] = {.lex_state = 602}, - [1441] = {.lex_state = 600}, - [1442] = {.lex_state = 604}, - [1443] = {.lex_state = 600}, - [1444] = {.lex_state = 600}, - [1445] = {.lex_state = 625, .external_lex_state = 2}, - [1446] = {.lex_state = 578}, - [1447] = {.lex_state = 625, .external_lex_state = 2}, - [1448] = {.lex_state = 600}, - [1449] = {.lex_state = 600}, - [1450] = {.lex_state = 578}, - [1451] = {.lex_state = 606}, - [1452] = {.lex_state = 606}, - [1453] = {.lex_state = 37, .external_lex_state = 2}, - [1454] = {.lex_state = 37, .external_lex_state = 2}, - [1455] = {.lex_state = 625, .external_lex_state = 2}, - [1456] = {.lex_state = 604}, - [1457] = {.lex_state = 37, .external_lex_state = 2}, - [1458] = {.lex_state = 625, .external_lex_state = 2}, - [1459] = {.lex_state = 602}, - [1460] = {.lex_state = 608}, - [1461] = {.lex_state = 608}, - [1462] = {.lex_state = 608}, - [1463] = {.lex_state = 608}, + [1375] = {.lex_state = 619, .external_lex_state = 2}, + [1376] = {.lex_state = 619, .external_lex_state = 2}, + [1377] = {.lex_state = 619, .external_lex_state = 2}, + [1378] = {.lex_state = 619, .external_lex_state = 2}, + [1379] = {.lex_state = 619, .external_lex_state = 2}, + [1380] = {.lex_state = 619, .external_lex_state = 2}, + [1381] = {.lex_state = 619, .external_lex_state = 2}, + [1382] = {.lex_state = 619, .external_lex_state = 2}, + [1383] = {.lex_state = 579}, + [1384] = {.lex_state = 29, .external_lex_state = 2}, + [1385] = {.lex_state = 619, .external_lex_state = 2}, + [1386] = {.lex_state = 581}, + [1387] = {.lex_state = 619, .external_lex_state = 2}, + [1388] = {.lex_state = 619, .external_lex_state = 2}, + [1389] = {.lex_state = 36, .external_lex_state = 2}, + [1390] = {.lex_state = 581}, + [1391] = {.lex_state = 36, .external_lex_state = 2}, + [1392] = {.lex_state = 579}, + [1393] = {.lex_state = 619, .external_lex_state = 2}, + [1394] = {.lex_state = 587}, + [1395] = {.lex_state = 35, .external_lex_state = 2}, + [1396] = {.lex_state = 619, .external_lex_state = 2}, + [1397] = {.lex_state = 581}, + [1398] = {.lex_state = 583}, + [1399] = {.lex_state = 581}, + [1400] = {.lex_state = 47, .external_lex_state = 2}, + [1401] = {.lex_state = 35, .external_lex_state = 2}, + [1402] = {.lex_state = 36, .external_lex_state = 2}, + [1403] = {.lex_state = 587}, + [1404] = {.lex_state = 35, .external_lex_state = 2}, + [1405] = {.lex_state = 35, .external_lex_state = 2}, + [1406] = {.lex_state = 589}, + [1407] = {.lex_state = 35, .external_lex_state = 2}, + [1408] = {.lex_state = 589}, + [1409] = {.lex_state = 591}, + [1410] = {.lex_state = 583}, + [1411] = {.lex_state = 593}, + [1412] = {.lex_state = 589}, + [1413] = {.lex_state = 591}, + [1414] = {.lex_state = 35, .external_lex_state = 2}, + [1415] = {.lex_state = 36, .external_lex_state = 2}, + [1416] = {.lex_state = 591}, + [1417] = {.lex_state = 591}, + [1418] = {.lex_state = 591}, + [1419] = {.lex_state = 47, .external_lex_state = 2}, + [1420] = {.lex_state = 47, .external_lex_state = 2}, + [1421] = {.lex_state = 158, .external_lex_state = 2}, + [1422] = {.lex_state = 158, .external_lex_state = 2}, + [1423] = {.lex_state = 47, .external_lex_state = 2}, + [1424] = {.lex_state = 585}, + [1425] = {.lex_state = 589}, + [1426] = {.lex_state = 591}, + [1427] = {.lex_state = 585}, + [1428] = {.lex_state = 593}, + [1429] = {.lex_state = 595}, + [1430] = {.lex_state = 595}, + [1431] = {.lex_state = 591}, + [1432] = {.lex_state = 591}, + [1433] = {.lex_state = 595}, + [1434] = {.lex_state = 597}, + [1435] = {.lex_state = 597}, + [1436] = {.lex_state = 595}, + [1437] = {.lex_state = 597}, + [1438] = {.lex_state = 597}, + [1439] = {.lex_state = 597}, + [1440] = {.lex_state = 597}, + [1441] = {.lex_state = 601}, + [1442] = {.lex_state = 622, .external_lex_state = 2}, + [1443] = {.lex_state = 597}, + [1444] = {.lex_state = 622, .external_lex_state = 2}, + [1445] = {.lex_state = 597}, + [1446] = {.lex_state = 597}, + [1447] = {.lex_state = 575}, + [1448] = {.lex_state = 597}, + [1449] = {.lex_state = 599}, + [1450] = {.lex_state = 599}, + [1451] = {.lex_state = 601}, + [1452] = {.lex_state = 603}, + [1453] = {.lex_state = 622, .external_lex_state = 2}, + [1454] = {.lex_state = 575}, + [1455] = {.lex_state = 33, .external_lex_state = 2}, + [1456] = {.lex_state = 33, .external_lex_state = 2}, + [1457] = {.lex_state = 603}, + [1458] = {.lex_state = 622, .external_lex_state = 2}, + [1459] = {.lex_state = 33, .external_lex_state = 2}, + [1460] = {.lex_state = 605}, + [1461] = {.lex_state = 149, .external_lex_state = 2}, + [1462] = {.lex_state = 605}, + [1463] = {.lex_state = 33, .external_lex_state = 2}, [1464] = {.lex_state = 149, .external_lex_state = 2}, - [1465] = {.lex_state = 608}, - [1466] = {.lex_state = 149, .external_lex_state = 2}, + [1465] = {.lex_state = 605}, + [1466] = {.lex_state = 605}, [1467] = {.lex_state = 149, .external_lex_state = 2}, - [1468] = {.lex_state = 149, .external_lex_state = 2}, - [1469] = {.lex_state = 149, .external_lex_state = 2}, - [1470] = {.lex_state = 608}, - [1471] = {.lex_state = 608}, - [1472] = {.lex_state = 608}, + [1468] = {.lex_state = 605}, + [1469] = {.lex_state = 605}, + [1470] = {.lex_state = 605}, + [1471] = {.lex_state = 33, .external_lex_state = 2}, + [1472] = {.lex_state = 605}, [1473] = {.lex_state = 149, .external_lex_state = 2}, [1474] = {.lex_state = 149, .external_lex_state = 2}, [1475] = {.lex_state = 149, .external_lex_state = 2}, - [1476] = {.lex_state = 606}, - [1477] = {.lex_state = 608}, - [1478] = {.lex_state = 149, .external_lex_state = 2}, - [1479] = {.lex_state = 608}, - [1480] = {.lex_state = 149, .external_lex_state = 2}, - [1481] = {.lex_state = 606}, - [1482] = {.lex_state = 608}, + [1476] = {.lex_state = 149, .external_lex_state = 2}, + [1477] = {.lex_state = 605}, + [1478] = {.lex_state = 605}, + [1479] = {.lex_state = 149, .external_lex_state = 2}, + [1480] = {.lex_state = 603}, + [1481] = {.lex_state = 149, .external_lex_state = 2}, + [1482] = {.lex_state = 605}, [1483] = {.lex_state = 149, .external_lex_state = 2}, [1484] = {.lex_state = 149, .external_lex_state = 2}, [1485] = {.lex_state = 149, .external_lex_state = 2}, - [1486] = {.lex_state = 608}, - [1487] = {.lex_state = 608}, - [1488] = {.lex_state = 610}, - [1489] = {.lex_state = 149, .external_lex_state = 2}, - [1490] = {.lex_state = 608}, - [1491] = {.lex_state = 149, .external_lex_state = 2}, - [1492] = {.lex_state = 608}, - [1493] = {.lex_state = 610}, - [1494] = {.lex_state = 608}, - [1495] = {.lex_state = 608}, - [1496] = {.lex_state = 149, .external_lex_state = 2}, - [1497] = {.lex_state = 608}, - [1498] = {.lex_state = 40, .external_lex_state = 2}, - [1499] = {.lex_state = 608}, - [1500] = {.lex_state = 608}, - [1501] = {.lex_state = 608}, - [1502] = {.lex_state = 608}, - [1503] = {.lex_state = 608}, - [1504] = {.lex_state = 608}, - [1505] = {.lex_state = 608}, - [1506] = {.lex_state = 608}, - [1507] = {.lex_state = 608}, - [1508] = {.lex_state = 610}, - [1509] = {.lex_state = 89}, - [1510] = {.lex_state = 578}, - [1511] = {.lex_state = 610}, - [1512] = {.lex_state = 610}, + [1486] = {.lex_state = 149, .external_lex_state = 2}, + [1487] = {.lex_state = 605}, + [1488] = {.lex_state = 605}, + [1489] = {.lex_state = 603}, + [1490] = {.lex_state = 607}, + [1491] = {.lex_state = 605}, + [1492] = {.lex_state = 605}, + [1493] = {.lex_state = 605}, + [1494] = {.lex_state = 149, .external_lex_state = 2}, + [1495] = {.lex_state = 605}, + [1496] = {.lex_state = 607}, + [1497] = {.lex_state = 149, .external_lex_state = 2}, + [1498] = {.lex_state = 605}, + [1499] = {.lex_state = 605}, + [1500] = {.lex_state = 605}, + [1501] = {.lex_state = 605}, + [1502] = {.lex_state = 605}, + [1503] = {.lex_state = 149, .external_lex_state = 2}, + [1504] = {.lex_state = 40, .external_lex_state = 2}, + [1505] = {.lex_state = 605}, + [1506] = {.lex_state = 605}, + [1507] = {.lex_state = 605}, + [1508] = {.lex_state = 607}, + [1509] = {.lex_state = 605}, + [1510] = {.lex_state = 605}, + [1511] = {.lex_state = 575}, + [1512] = {.lex_state = 89}, [1513] = {.lex_state = 89}, [1514] = {.lex_state = 89}, - [1515] = {.lex_state = 40, .external_lex_state = 2}, - [1516] = {.lex_state = 89}, - [1517] = {.lex_state = 89}, - [1518] = {.lex_state = 610}, - [1519] = {.lex_state = 6}, - [1520] = {.lex_state = 608}, - [1521] = {.lex_state = 89}, - [1522] = {.lex_state = 89}, + [1515] = {.lex_state = 575}, + [1516] = {.lex_state = 575}, + [1517] = {.lex_state = 575}, + [1518] = {.lex_state = 575}, + [1519] = {.lex_state = 575}, + [1520] = {.lex_state = 575}, + [1521] = {.lex_state = 575}, + [1522] = {.lex_state = 575}, [1523] = {.lex_state = 89}, - [1524] = {.lex_state = 89}, - [1525] = {.lex_state = 179, .external_lex_state = 2}, - [1526] = {.lex_state = 89}, - [1527] = {.lex_state = 89}, + [1524] = {.lex_state = 575}, + [1525] = {.lex_state = 89}, + [1526] = {.lex_state = 575}, + [1527] = {.lex_state = 575}, [1528] = {.lex_state = 89}, [1529] = {.lex_state = 89}, - [1530] = {.lex_state = 37, .external_lex_state = 2}, + [1530] = {.lex_state = 89}, [1531] = {.lex_state = 89}, [1532] = {.lex_state = 89}, [1533] = {.lex_state = 89}, [1534] = {.lex_state = 89}, - [1535] = {.lex_state = 89}, + [1535] = {.lex_state = 33, .external_lex_state = 2}, [1536] = {.lex_state = 89}, - [1537] = {.lex_state = 37, .external_lex_state = 2}, + [1537] = {.lex_state = 89}, [1538] = {.lex_state = 89}, - [1539] = {.lex_state = 89}, - [1540] = {.lex_state = 89}, - [1541] = {.lex_state = 89}, - [1542] = {.lex_state = 89}, - [1543] = {.lex_state = 89}, - [1544] = {.lex_state = 89}, - [1545] = {.lex_state = 89}, - [1546] = {.lex_state = 89}, - [1547] = {.lex_state = 89}, - [1548] = {.lex_state = 89}, - [1549] = {.lex_state = 89}, - [1550] = {.lex_state = 37, .external_lex_state = 2}, - [1551] = {.lex_state = 89}, - [1552] = {.lex_state = 89}, - [1553] = {.lex_state = 89}, - [1554] = {.lex_state = 89}, - [1555] = {.lex_state = 89}, - [1556] = {.lex_state = 89}, - [1557] = {.lex_state = 89}, - [1558] = {.lex_state = 89}, - [1559] = {.lex_state = 89}, - [1560] = {.lex_state = 89}, - [1561] = {.lex_state = 89}, - [1562] = {.lex_state = 89}, - [1563] = {.lex_state = 37, .external_lex_state = 2}, - [1564] = {.lex_state = 578}, - [1565] = {.lex_state = 578}, - [1566] = {.lex_state = 578}, - [1567] = {.lex_state = 578}, - [1568] = {.lex_state = 578}, - [1569] = {.lex_state = 578}, - [1570] = {.lex_state = 578}, - [1571] = {.lex_state = 578}, - [1572] = {.lex_state = 578}, - [1573] = {.lex_state = 578}, - [1574] = {.lex_state = 578}, - [1575] = {.lex_state = 578}, + [1539] = {.lex_state = 575}, + [1540] = {.lex_state = 575}, + [1541] = {.lex_state = 575}, + [1542] = {.lex_state = 575}, + [1543] = {.lex_state = 575}, + [1544] = {.lex_state = 575}, + [1545] = {.lex_state = 575}, + [1546] = {.lex_state = 575}, + [1547] = {.lex_state = 575}, + [1548] = {.lex_state = 575}, + [1549] = {.lex_state = 575}, + [1550] = {.lex_state = 575}, + [1551] = {.lex_state = 575}, + [1552] = {.lex_state = 575}, + [1553] = {.lex_state = 575}, + [1554] = {.lex_state = 575}, + [1555] = {.lex_state = 575}, + [1556] = {.lex_state = 575}, + [1557] = {.lex_state = 575}, + [1558] = {.lex_state = 575}, + [1559] = {.lex_state = 575}, + [1560] = {.lex_state = 575}, + [1561] = {.lex_state = 575}, + [1562] = {.lex_state = 575}, + [1563] = {.lex_state = 575}, + [1564] = {.lex_state = 575}, + [1565] = {.lex_state = 89}, + [1566] = {.lex_state = 575}, + [1567] = {.lex_state = 575}, + [1568] = {.lex_state = 575}, + [1569] = {.lex_state = 89}, + [1570] = {.lex_state = 575}, + [1571] = {.lex_state = 89}, + [1572] = {.lex_state = 575}, + [1573] = {.lex_state = 89}, + [1574] = {.lex_state = 575}, + [1575] = {.lex_state = 89}, [1576] = {.lex_state = 89}, - [1577] = {.lex_state = 37, .external_lex_state = 2}, - [1578] = {.lex_state = 578}, - [1579] = {.lex_state = 578}, - [1580] = {.lex_state = 578}, - [1581] = {.lex_state = 578}, - [1582] = {.lex_state = 578}, - [1583] = {.lex_state = 578}, - [1584] = {.lex_state = 578}, - [1585] = {.lex_state = 578}, - [1586] = {.lex_state = 578}, - [1587] = {.lex_state = 578}, - [1588] = {.lex_state = 578}, - [1589] = {.lex_state = 578}, - [1590] = {.lex_state = 578}, - [1591] = {.lex_state = 578}, - [1592] = {.lex_state = 578}, - [1593] = {.lex_state = 578}, - [1594] = {.lex_state = 578}, - [1595] = {.lex_state = 578}, - [1596] = {.lex_state = 578}, - [1597] = {.lex_state = 578}, - [1598] = {.lex_state = 578}, - [1599] = {.lex_state = 578}, - [1600] = {.lex_state = 578}, - [1601] = {.lex_state = 578}, - [1602] = {.lex_state = 578}, - [1603] = {.lex_state = 578}, - [1604] = {.lex_state = 89}, - [1605] = {.lex_state = 578}, - [1606] = {.lex_state = 578}, - [1607] = {.lex_state = 578}, - [1608] = {.lex_state = 578}, - [1609] = {.lex_state = 578}, - [1610] = {.lex_state = 578}, - [1611] = {.lex_state = 578}, - [1612] = {.lex_state = 578}, - [1613] = {.lex_state = 578}, - [1614] = {.lex_state = 578}, - [1615] = {.lex_state = 578}, - [1616] = {.lex_state = 578}, - [1617] = {.lex_state = 578}, - [1618] = {.lex_state = 578}, - [1619] = {.lex_state = 578}, - [1620] = {.lex_state = 578}, - [1621] = {.lex_state = 578}, - [1622] = {.lex_state = 578}, - [1623] = {.lex_state = 578}, - [1624] = {.lex_state = 578}, - [1625] = {.lex_state = 578}, - [1626] = {.lex_state = 578}, - [1627] = {.lex_state = 578}, - [1628] = {.lex_state = 578}, - [1629] = {.lex_state = 578}, - [1630] = {.lex_state = 578}, - [1631] = {.lex_state = 578}, - [1632] = {.lex_state = 578}, - [1633] = {.lex_state = 578}, - [1634] = {.lex_state = 578}, - [1635] = {.lex_state = 578}, - [1636] = {.lex_state = 578}, - [1637] = {.lex_state = 578}, - [1638] = {.lex_state = 578}, - [1639] = {.lex_state = 578}, - [1640] = {.lex_state = 578}, - [1641] = {.lex_state = 578}, - [1642] = {.lex_state = 578}, - [1643] = {.lex_state = 578}, - [1644] = {.lex_state = 578}, - [1645] = {.lex_state = 578}, - [1646] = {.lex_state = 578}, - [1647] = {.lex_state = 578}, - [1648] = {.lex_state = 578}, - [1649] = {.lex_state = 578}, - [1650] = {.lex_state = 578}, - [1651] = {.lex_state = 578}, - [1652] = {.lex_state = 578}, - [1653] = {.lex_state = 578}, - [1654] = {.lex_state = 578}, - [1655] = {.lex_state = 578}, - [1656] = {.lex_state = 578}, - [1657] = {.lex_state = 578}, - [1658] = {.lex_state = 578}, - [1659] = {.lex_state = 578}, - [1660] = {.lex_state = 578}, - [1661] = {.lex_state = 578}, + [1577] = {.lex_state = 575}, + [1578] = {.lex_state = 89}, + [1579] = {.lex_state = 575}, + [1580] = {.lex_state = 89}, + [1581] = {.lex_state = 575}, + [1582] = {.lex_state = 89}, + [1583] = {.lex_state = 575}, + [1584] = {.lex_state = 33, .external_lex_state = 2}, + [1585] = {.lex_state = 89}, + [1586] = {.lex_state = 89}, + [1587] = {.lex_state = 575}, + [1588] = {.lex_state = 575}, + [1589] = {.lex_state = 575}, + [1590] = {.lex_state = 575}, + [1591] = {.lex_state = 575}, + [1592] = {.lex_state = 575}, + [1593] = {.lex_state = 575}, + [1594] = {.lex_state = 575}, + [1595] = {.lex_state = 575}, + [1596] = {.lex_state = 575}, + [1597] = {.lex_state = 575}, + [1598] = {.lex_state = 575}, + [1599] = {.lex_state = 575}, + [1600] = {.lex_state = 575}, + [1601] = {.lex_state = 575}, + [1602] = {.lex_state = 575}, + [1603] = {.lex_state = 575}, + [1604] = {.lex_state = 575}, + [1605] = {.lex_state = 575}, + [1606] = {.lex_state = 575}, + [1607] = {.lex_state = 575}, + [1608] = {.lex_state = 575}, + [1609] = {.lex_state = 575}, + [1610] = {.lex_state = 575}, + [1611] = {.lex_state = 575}, + [1612] = {.lex_state = 575}, + [1613] = {.lex_state = 575}, + [1614] = {.lex_state = 575}, + [1615] = {.lex_state = 575}, + [1616] = {.lex_state = 575}, + [1617] = {.lex_state = 575}, + [1618] = {.lex_state = 575}, + [1619] = {.lex_state = 575}, + [1620] = {.lex_state = 575}, + [1621] = {.lex_state = 575}, + [1622] = {.lex_state = 575}, + [1623] = {.lex_state = 89}, + [1624] = {.lex_state = 89}, + [1625] = {.lex_state = 575}, + [1626] = {.lex_state = 575}, + [1627] = {.lex_state = 575}, + [1628] = {.lex_state = 575}, + [1629] = {.lex_state = 575}, + [1630] = {.lex_state = 575}, + [1631] = {.lex_state = 575}, + [1632] = {.lex_state = 575}, + [1633] = {.lex_state = 575}, + [1634] = {.lex_state = 575}, + [1635] = {.lex_state = 575}, + [1636] = {.lex_state = 575}, + [1637] = {.lex_state = 179, .external_lex_state = 2}, + [1638] = {.lex_state = 607}, + [1639] = {.lex_state = 605}, + [1640] = {.lex_state = 607}, + [1641] = {.lex_state = 89}, + [1642] = {.lex_state = 89}, + [1643] = {.lex_state = 575}, + [1644] = {.lex_state = 575}, + [1645] = {.lex_state = 575}, + [1646] = {.lex_state = 575}, + [1647] = {.lex_state = 575}, + [1648] = {.lex_state = 575}, + [1649] = {.lex_state = 575}, + [1650] = {.lex_state = 575}, + [1651] = {.lex_state = 575}, + [1652] = {.lex_state = 575}, + [1653] = {.lex_state = 575}, + [1654] = {.lex_state = 575}, + [1655] = {.lex_state = 89}, + [1656] = {.lex_state = 89}, + [1657] = {.lex_state = 89}, + [1658] = {.lex_state = 89}, + [1659] = {.lex_state = 33, .external_lex_state = 2}, + [1660] = {.lex_state = 89}, + [1661] = {.lex_state = 89}, [1662] = {.lex_state = 89}, [1663] = {.lex_state = 89}, [1664] = {.lex_state = 89}, - [1665] = {.lex_state = 578}, - [1666] = {.lex_state = 578}, - [1667] = {.lex_state = 578}, - [1668] = {.lex_state = 578}, - [1669] = {.lex_state = 578}, - [1670] = {.lex_state = 578}, - [1671] = {.lex_state = 578}, - [1672] = {.lex_state = 578}, - [1673] = {.lex_state = 578}, - [1674] = {.lex_state = 578}, - [1675] = {.lex_state = 578}, - [1676] = {.lex_state = 578}, - [1677] = {.lex_state = 37, .external_lex_state = 2}, - [1678] = {.lex_state = 578}, + [1665] = {.lex_state = 89}, + [1666] = {.lex_state = 40, .external_lex_state = 2}, + [1667] = {.lex_state = 607}, + [1668] = {.lex_state = 89}, + [1669] = {.lex_state = 89}, + [1670] = {.lex_state = 33, .external_lex_state = 2}, + [1671] = {.lex_state = 89}, + [1672] = {.lex_state = 6}, + [1673] = {.lex_state = 89}, + [1674] = {.lex_state = 89}, + [1675] = {.lex_state = 89}, + [1676] = {.lex_state = 89}, + [1677] = {.lex_state = 89}, + [1678] = {.lex_state = 575}, [1679] = {.lex_state = 7}, - [1680] = {.lex_state = 179, .external_lex_state = 2}, - [1681] = {.lex_state = 578}, - [1682] = {.lex_state = 578}, - [1683] = {.lex_state = 578}, - [1684] = {.lex_state = 578}, - [1685] = {.lex_state = 578}, - [1686] = {.lex_state = 578}, - [1687] = {.lex_state = 578}, + [1680] = {.lex_state = 575}, + [1681] = {.lex_state = 575}, + [1682] = {.lex_state = 575}, + [1683] = {.lex_state = 179, .external_lex_state = 2}, + [1684] = {.lex_state = 575}, + [1685] = {.lex_state = 575}, + [1686] = {.lex_state = 7}, + [1687] = {.lex_state = 575}, [1688] = {.lex_state = 89}, - [1689] = {.lex_state = 578}, - [1690] = {.lex_state = 578}, - [1691] = {.lex_state = 578}, - [1692] = {.lex_state = 578}, - [1693] = {.lex_state = 578}, + [1689] = {.lex_state = 575}, + [1690] = {.lex_state = 575}, + [1691] = {.lex_state = 575}, + [1692] = {.lex_state = 575}, + [1693] = {.lex_state = 132}, [1694] = {.lex_state = 179, .external_lex_state = 2}, - [1695] = {.lex_state = 132}, - [1696] = {.lex_state = 578}, - [1697] = {.lex_state = 7}, - [1698] = {.lex_state = 37, .external_lex_state = 2}, - [1699] = {.lex_state = 37, .external_lex_state = 2}, - [1700] = {.lex_state = 37, .external_lex_state = 2}, - [1701] = {.lex_state = 37, .external_lex_state = 2}, - [1702] = {.lex_state = 37, .external_lex_state = 2}, - [1703] = {.lex_state = 37, .external_lex_state = 2}, - [1704] = {.lex_state = 8}, - [1705] = {.lex_state = 132}, - [1706] = {.lex_state = 10}, + [1695] = {.lex_state = 575}, + [1696] = {.lex_state = 575}, + [1697] = {.lex_state = 575}, + [1698] = {.lex_state = 33, .external_lex_state = 2}, + [1699] = {.lex_state = 10}, + [1700] = {.lex_state = 33, .external_lex_state = 2}, + [1701] = {.lex_state = 132}, + [1702] = {.lex_state = 33, .external_lex_state = 2}, + [1703] = {.lex_state = 8}, + [1704] = {.lex_state = 33, .external_lex_state = 2}, + [1705] = {.lex_state = 33, .external_lex_state = 2}, + [1706] = {.lex_state = 132}, [1707] = {.lex_state = 133}, - [1708] = {.lex_state = 133}, - [1709] = {.lex_state = 37, .external_lex_state = 2}, - [1710] = {.lex_state = 37, .external_lex_state = 2}, - [1711] = {.lex_state = 132}, - [1712] = {.lex_state = 37, .external_lex_state = 2}, - [1713] = {.lex_state = 37, .external_lex_state = 2}, - [1714] = {.lex_state = 37, .external_lex_state = 2}, - [1715] = {.lex_state = 132}, - [1716] = {.lex_state = 178, .external_lex_state = 2}, - [1717] = {.lex_state = 132}, - [1718] = {.lex_state = 12}, - [1719] = {.lex_state = 89}, + [1708] = {.lex_state = 33, .external_lex_state = 2}, + [1709] = {.lex_state = 33, .external_lex_state = 2}, + [1710] = {.lex_state = 33, .external_lex_state = 2}, + [1711] = {.lex_state = 33, .external_lex_state = 2}, + [1712] = {.lex_state = 33, .external_lex_state = 2}, + [1713] = {.lex_state = 133}, + [1714] = {.lex_state = 33, .external_lex_state = 2}, + [1715] = {.lex_state = 178, .external_lex_state = 2}, + [1716] = {.lex_state = 569, .external_lex_state = 2}, + [1717] = {.lex_state = 625, .external_lex_state = 2}, + [1718] = {.lex_state = 132}, + [1719] = {.lex_state = 134}, [1720] = {.lex_state = 136}, - [1721] = {.lex_state = 178, .external_lex_state = 2}, - [1722] = {.lex_state = 11}, - [1723] = {.lex_state = 132}, + [1721] = {.lex_state = 132}, + [1722] = {.lex_state = 12}, + [1723] = {.lex_state = 89}, [1724] = {.lex_state = 178, .external_lex_state = 2}, [1725] = {.lex_state = 11}, [1726] = {.lex_state = 89}, - [1727] = {.lex_state = 628, .external_lex_state = 2}, + [1727] = {.lex_state = 625, .external_lex_state = 2}, [1728] = {.lex_state = 132}, [1729] = {.lex_state = 132}, [1730] = {.lex_state = 132}, - [1731] = {.lex_state = 89}, - [1732] = {.lex_state = 89}, - [1733] = {.lex_state = 572, .external_lex_state = 2}, - [1734] = {.lex_state = 628, .external_lex_state = 2}, - [1735] = {.lex_state = 628, .external_lex_state = 2}, - [1736] = {.lex_state = 134}, + [1731] = {.lex_state = 132}, + [1732] = {.lex_state = 178, .external_lex_state = 2}, + [1733] = {.lex_state = 11}, + [1734] = {.lex_state = 89}, + [1735] = {.lex_state = 625, .external_lex_state = 2}, + [1736] = {.lex_state = 89}, [1737] = {.lex_state = 89}, - [1738] = {.lex_state = 628, .external_lex_state = 2}, - [1739] = {.lex_state = 138}, - [1740] = {.lex_state = 178, .external_lex_state = 2}, - [1741] = {.lex_state = 628, .external_lex_state = 2}, - [1742] = {.lex_state = 628, .external_lex_state = 2}, - [1743] = {.lex_state = 628, .external_lex_state = 2}, - [1744] = {.lex_state = 167, .external_lex_state = 2}, - [1745] = {.lex_state = 89}, - [1746] = {.lex_state = 89}, - [1747] = {.lex_state = 9}, - [1748] = {.lex_state = 170, .external_lex_state = 2}, - [1749] = {.lex_state = 572, .external_lex_state = 2}, - [1750] = {.lex_state = 572, .external_lex_state = 2}, - [1751] = {.lex_state = 572, .external_lex_state = 2}, - [1752] = {.lex_state = 572, .external_lex_state = 2}, - [1753] = {.lex_state = 178, .external_lex_state = 2}, - [1754] = {.lex_state = 572, .external_lex_state = 2}, - [1755] = {.lex_state = 178, .external_lex_state = 2}, - [1756] = {.lex_state = 178, .external_lex_state = 2}, - [1757] = {.lex_state = 12}, - [1758] = {.lex_state = 89}, - [1759] = {.lex_state = 12}, - [1760] = {.lex_state = 12}, - [1761] = {.lex_state = 137}, - [1762] = {.lex_state = 137}, - [1763] = {.lex_state = 37, .external_lex_state = 2}, - [1764] = {.lex_state = 37, .external_lex_state = 2}, - [1765] = {.lex_state = 13}, - [1766] = {.lex_state = 178, .external_lex_state = 2}, - [1767] = {.lex_state = 178, .external_lex_state = 2}, - [1768] = {.lex_state = 178, .external_lex_state = 2}, - [1769] = {.lex_state = 89}, - [1770] = {.lex_state = 37, .external_lex_state = 2}, + [1738] = {.lex_state = 569, .external_lex_state = 2}, + [1739] = {.lex_state = 89}, + [1740] = {.lex_state = 13}, + [1741] = {.lex_state = 33, .external_lex_state = 2}, + [1742] = {.lex_state = 89}, + [1743] = {.lex_state = 178, .external_lex_state = 2}, + [1744] = {.lex_state = 178, .external_lex_state = 2}, + [1745] = {.lex_state = 178, .external_lex_state = 2}, + [1746] = {.lex_state = 178, .external_lex_state = 2}, + [1747] = {.lex_state = 89}, + [1748] = {.lex_state = 33, .external_lex_state = 2}, + [1749] = {.lex_state = 625, .external_lex_state = 2}, + [1750] = {.lex_state = 625, .external_lex_state = 2}, + [1751] = {.lex_state = 33, .external_lex_state = 2}, + [1752] = {.lex_state = 178, .external_lex_state = 2}, + [1753] = {.lex_state = 625, .external_lex_state = 2}, + [1754] = {.lex_state = 12}, + [1755] = {.lex_state = 138}, + [1756] = {.lex_state = 569, .external_lex_state = 2}, + [1757] = {.lex_state = 625, .external_lex_state = 2}, + [1758] = {.lex_state = 569, .external_lex_state = 2}, + [1759] = {.lex_state = 178, .external_lex_state = 2}, + [1760] = {.lex_state = 167, .external_lex_state = 2}, + [1761] = {.lex_state = 569, .external_lex_state = 2}, + [1762] = {.lex_state = 569, .external_lex_state = 2}, + [1763] = {.lex_state = 625, .external_lex_state = 2}, + [1764] = {.lex_state = 178, .external_lex_state = 2}, + [1765] = {.lex_state = 9}, + [1766] = {.lex_state = 137}, + [1767] = {.lex_state = 12}, + [1768] = {.lex_state = 89}, + [1769] = {.lex_state = 12}, + [1770] = {.lex_state = 178, .external_lex_state = 2}, [1771] = {.lex_state = 178, .external_lex_state = 2}, - [1772] = {.lex_state = 572, .external_lex_state = 2}, - [1773] = {.lex_state = 178, .external_lex_state = 2}, - [1774] = {.lex_state = 628, .external_lex_state = 2}, + [1772] = {.lex_state = 137}, + [1773] = {.lex_state = 170, .external_lex_state = 2}, + [1774] = {.lex_state = 569, .external_lex_state = 2}, [1775] = {.lex_state = 178, .external_lex_state = 2}, - [1776] = {.lex_state = 572, .external_lex_state = 2}, - [1777] = {.lex_state = 138}, - [1778] = {.lex_state = 37, .external_lex_state = 2}, - [1779] = {.lex_state = 37, .external_lex_state = 2}, - [1780] = {.lex_state = 572, .external_lex_state = 2}, - [1781] = {.lex_state = 89}, - [1782] = {.lex_state = 89}, - [1783] = {.lex_state = 89}, + [1776] = {.lex_state = 569, .external_lex_state = 2}, + [1777] = {.lex_state = 33, .external_lex_state = 2}, + [1778] = {.lex_state = 569, .external_lex_state = 2}, + [1779] = {.lex_state = 138}, + [1780] = {.lex_state = 138}, + [1781] = {.lex_state = 569, .external_lex_state = 2}, + [1782] = {.lex_state = 569, .external_lex_state = 2}, + [1783] = {.lex_state = 624, .external_lex_state = 2}, [1784] = {.lex_state = 89}, - [1785] = {.lex_state = 37, .external_lex_state = 2}, - [1786] = {.lex_state = 572, .external_lex_state = 2}, - [1787] = {.lex_state = 572, .external_lex_state = 2}, - [1788] = {.lex_state = 89}, - [1789] = {.lex_state = 89}, - [1790] = {.lex_state = 37, .external_lex_state = 2}, - [1791] = {.lex_state = 89}, - [1792] = {.lex_state = 89}, - [1793] = {.lex_state = 89}, - [1794] = {.lex_state = 89}, - [1795] = {.lex_state = 627, .external_lex_state = 2}, - [1796] = {.lex_state = 138}, - [1797] = {.lex_state = 89}, - [1798] = {.lex_state = 138}, - [1799] = {.lex_state = 37, .external_lex_state = 2}, - [1800] = {.lex_state = 572, .external_lex_state = 2}, - [1801] = {.lex_state = 14}, - [1802] = {.lex_state = 572, .external_lex_state = 2}, - [1803] = {.lex_state = 14}, - [1804] = {.lex_state = 139}, - [1805] = {.lex_state = 135}, - [1806] = {.lex_state = 572, .external_lex_state = 2}, + [1785] = {.lex_state = 89}, + [1786] = {.lex_state = 89}, + [1787] = {.lex_state = 89}, + [1788] = {.lex_state = 569, .external_lex_state = 2}, + [1789] = {.lex_state = 569, .external_lex_state = 2}, + [1790] = {.lex_state = 569, .external_lex_state = 2}, + [1791] = {.lex_state = 14}, + [1792] = {.lex_state = 14}, + [1793] = {.lex_state = 625, .external_lex_state = 2}, + [1794] = {.lex_state = 139}, + [1795] = {.lex_state = 135}, + [1796] = {.lex_state = 33, .external_lex_state = 2}, + [1797] = {.lex_state = 33, .external_lex_state = 2}, + [1798] = {.lex_state = 89}, + [1799] = {.lex_state = 89}, + [1800] = {.lex_state = 89}, + [1801] = {.lex_state = 89}, + [1802] = {.lex_state = 89}, + [1803] = {.lex_state = 89}, + [1804] = {.lex_state = 89}, + [1805] = {.lex_state = 570, .external_lex_state = 2}, + [1806] = {.lex_state = 89}, [1807] = {.lex_state = 89}, - [1808] = {.lex_state = 89}, - [1809] = {.lex_state = 37, .external_lex_state = 2}, - [1810] = {.lex_state = 89}, - [1811] = {.lex_state = 89}, - [1812] = {.lex_state = 628, .external_lex_state = 2}, - [1813] = {.lex_state = 628, .external_lex_state = 2}, - [1814] = {.lex_state = 89}, + [1808] = {.lex_state = 33, .external_lex_state = 2}, + [1809] = {.lex_state = 625, .external_lex_state = 2}, + [1810] = {.lex_state = 169, .external_lex_state = 2}, + [1811] = {.lex_state = 169, .external_lex_state = 2}, + [1812] = {.lex_state = 33, .external_lex_state = 2}, + [1813] = {.lex_state = 33, .external_lex_state = 2}, + [1814] = {.lex_state = 33, .external_lex_state = 2}, [1815] = {.lex_state = 89}, - [1816] = {.lex_state = 573, .external_lex_state = 2}, - [1817] = {.lex_state = 37, .external_lex_state = 2}, - [1818] = {.lex_state = 37, .external_lex_state = 2}, - [1819] = {.lex_state = 37, .external_lex_state = 2}, - [1820] = {.lex_state = 37, .external_lex_state = 2}, - [1821] = {.lex_state = 37, .external_lex_state = 2}, - [1822] = {.lex_state = 37, .external_lex_state = 2}, - [1823] = {.lex_state = 169, .external_lex_state = 2}, - [1824] = {.lex_state = 169, .external_lex_state = 2}, - [1825] = {.lex_state = 628, .external_lex_state = 2}, - [1826] = {.lex_state = 15}, - [1827] = {.lex_state = 15}, + [1816] = {.lex_state = 89}, + [1817] = {.lex_state = 89}, + [1818] = {.lex_state = 33, .external_lex_state = 2}, + [1819] = {.lex_state = 33, .external_lex_state = 2}, + [1820] = {.lex_state = 33, .external_lex_state = 2}, + [1821] = {.lex_state = 33, .external_lex_state = 2}, + [1822] = {.lex_state = 138}, + [1823] = {.lex_state = 33, .external_lex_state = 2}, + [1824] = {.lex_state = 89}, + [1825] = {.lex_state = 171, .external_lex_state = 2}, + [1826] = {.lex_state = 140}, + [1827] = {.lex_state = 625, .external_lex_state = 2}, [1828] = {.lex_state = 89}, - [1829] = {.lex_state = 15}, - [1830] = {.lex_state = 578}, - [1831] = {.lex_state = 89}, - [1832] = {.lex_state = 627, .external_lex_state = 2}, - [1833] = {.lex_state = 628, .external_lex_state = 2}, - [1834] = {.lex_state = 15}, - [1835] = {.lex_state = 15}, - [1836] = {.lex_state = 140}, - [1837] = {.lex_state = 573, .external_lex_state = 2}, + [1829] = {.lex_state = 625, .external_lex_state = 2}, + [1830] = {.lex_state = 15}, + [1831] = {.lex_state = 625, .external_lex_state = 2}, + [1832] = {.lex_state = 15}, + [1833] = {.lex_state = 171, .external_lex_state = 2}, + [1834] = {.lex_state = 570, .external_lex_state = 2}, + [1835] = {.lex_state = 171, .external_lex_state = 2}, + [1836] = {.lex_state = 171, .external_lex_state = 2}, + [1837] = {.lex_state = 624, .external_lex_state = 2}, [1838] = {.lex_state = 89}, - [1839] = {.lex_state = 140}, - [1840] = {.lex_state = 171, .external_lex_state = 2}, - [1841] = {.lex_state = 171, .external_lex_state = 2}, - [1842] = {.lex_state = 171, .external_lex_state = 2}, - [1843] = {.lex_state = 171, .external_lex_state = 2}, - [1844] = {.lex_state = 628, .external_lex_state = 2}, - [1845] = {.lex_state = 625, .external_lex_state = 2}, - [1846] = {.lex_state = 89}, - [1847] = {.lex_state = 141}, - [1848] = {.lex_state = 141}, + [1839] = {.lex_state = 89}, + [1840] = {.lex_state = 15}, + [1841] = {.lex_state = 575}, + [1842] = {.lex_state = 15}, + [1843] = {.lex_state = 15}, + [1844] = {.lex_state = 140}, + [1845] = {.lex_state = 622, .external_lex_state = 2}, + [1846] = {.lex_state = 622, .external_lex_state = 2}, + [1847] = {.lex_state = 89}, + [1848] = {.lex_state = 622, .external_lex_state = 2}, [1849] = {.lex_state = 141}, - [1850] = {.lex_state = 141}, - [1851] = {.lex_state = 89}, - [1852] = {.lex_state = 625, .external_lex_state = 2}, - [1853] = {.lex_state = 176, .external_lex_state = 2}, - [1854] = {.lex_state = 625, .external_lex_state = 2}, - [1855] = {.lex_state = 141}, - [1856] = {.lex_state = 625, .external_lex_state = 2}, - [1857] = {.lex_state = 628, .external_lex_state = 2}, - [1858] = {.lex_state = 625, .external_lex_state = 2}, - [1859] = {.lex_state = 1182}, - [1860] = {.lex_state = 625, .external_lex_state = 2}, - [1861] = {.lex_state = 625, .external_lex_state = 2}, + [1850] = {.lex_state = 16}, + [1851] = {.lex_state = 622, .external_lex_state = 2}, + [1852] = {.lex_state = 141}, + [1853] = {.lex_state = 17}, + [1854] = {.lex_state = 622, .external_lex_state = 2}, + [1855] = {.lex_state = 622, .external_lex_state = 2}, + [1856] = {.lex_state = 622, .external_lex_state = 2}, + [1857] = {.lex_state = 89}, + [1858] = {.lex_state = 622, .external_lex_state = 2}, + [1859] = {.lex_state = 622, .external_lex_state = 2}, + [1860] = {.lex_state = 176, .external_lex_state = 2}, + [1861] = {.lex_state = 1179}, [1862] = {.lex_state = 625, .external_lex_state = 2}, - [1863] = {.lex_state = 89}, - [1864] = {.lex_state = 17}, - [1865] = {.lex_state = 625, .external_lex_state = 2}, - [1866] = {.lex_state = 625, .external_lex_state = 2}, - [1867] = {.lex_state = 628, .external_lex_state = 2}, - [1868] = {.lex_state = 628, .external_lex_state = 2}, - [1869] = {.lex_state = 625, .external_lex_state = 2}, - [1870] = {.lex_state = 625, .external_lex_state = 2}, - [1871] = {.lex_state = 625, .external_lex_state = 2}, - [1872] = {.lex_state = 625, .external_lex_state = 2}, + [1863] = {.lex_state = 622, .external_lex_state = 2}, + [1864] = {.lex_state = 89}, + [1865] = {.lex_state = 622, .external_lex_state = 2}, + [1866] = {.lex_state = 622, .external_lex_state = 2}, + [1867] = {.lex_state = 622, .external_lex_state = 2}, + [1868] = {.lex_state = 267}, + [1869] = {.lex_state = 1177}, + [1870] = {.lex_state = 622, .external_lex_state = 2}, + [1871] = {.lex_state = 622, .external_lex_state = 2}, + [1872] = {.lex_state = 575}, [1873] = {.lex_state = 625, .external_lex_state = 2}, - [1874] = {.lex_state = 625, .external_lex_state = 2}, - [1875] = {.lex_state = 578}, - [1876] = {.lex_state = 267}, - [1877] = {.lex_state = 89}, - [1878] = {.lex_state = 1180}, - [1879] = {.lex_state = 16}, - [1880] = {.lex_state = 625, .external_lex_state = 2}, - [1881] = {.lex_state = 625, .external_lex_state = 2}, - [1882] = {.lex_state = 127, .external_lex_state = 2}, - [1883] = {.lex_state = 163, .external_lex_state = 2}, - [1884] = {.lex_state = 625, .external_lex_state = 2}, - [1885] = {.lex_state = 625, .external_lex_state = 2}, - [1886] = {.lex_state = 625, .external_lex_state = 2}, - [1887] = {.lex_state = 625, .external_lex_state = 2}, - [1888] = {.lex_state = 163, .external_lex_state = 2}, - [1889] = {.lex_state = 625, .external_lex_state = 2}, - [1890] = {.lex_state = 625, .external_lex_state = 2}, - [1891] = {.lex_state = 625, .external_lex_state = 2}, - [1892] = {.lex_state = 143}, - [1893] = {.lex_state = 1181}, - [1894] = {.lex_state = 163, .external_lex_state = 2}, - [1895] = {.lex_state = 142}, - [1896] = {.lex_state = 625, .external_lex_state = 2}, - [1897] = {.lex_state = 177, .external_lex_state = 2}, - [1898] = {.lex_state = 625, .external_lex_state = 2}, - [1899] = {.lex_state = 18}, - [1900] = {.lex_state = 177, .external_lex_state = 2}, - [1901] = {.lex_state = 163, .external_lex_state = 2}, - [1902] = {.lex_state = 1185}, + [1874] = {.lex_state = 622, .external_lex_state = 2}, + [1875] = {.lex_state = 625, .external_lex_state = 2}, + [1876] = {.lex_state = 141}, + [1877] = {.lex_state = 141}, + [1878] = {.lex_state = 141}, + [1879] = {.lex_state = 89}, + [1880] = {.lex_state = 622, .external_lex_state = 2}, + [1881] = {.lex_state = 143}, + [1882] = {.lex_state = 177, .external_lex_state = 2}, + [1883] = {.lex_state = 1182}, + [1884] = {.lex_state = 622, .external_lex_state = 2}, + [1885] = {.lex_state = 622, .external_lex_state = 2}, + [1886] = {.lex_state = 622, .external_lex_state = 2}, + [1887] = {.lex_state = 622, .external_lex_state = 2}, + [1888] = {.lex_state = 18}, + [1889] = {.lex_state = 163, .external_lex_state = 2}, + [1890] = {.lex_state = 163, .external_lex_state = 2}, + [1891] = {.lex_state = 622, .external_lex_state = 2}, + [1892] = {.lex_state = 163, .external_lex_state = 2}, + [1893] = {.lex_state = 1180}, + [1894] = {.lex_state = 622, .external_lex_state = 2}, + [1895] = {.lex_state = 622, .external_lex_state = 2}, + [1896] = {.lex_state = 622, .external_lex_state = 2}, + [1897] = {.lex_state = 163, .external_lex_state = 2}, + [1898] = {.lex_state = 622, .external_lex_state = 2}, + [1899] = {.lex_state = 127, .external_lex_state = 2}, + [1900] = {.lex_state = 142}, + [1901] = {.lex_state = 622, .external_lex_state = 2}, + [1902] = {.lex_state = 622, .external_lex_state = 2}, [1903] = {.lex_state = 267}, - [1904] = {.lex_state = 18}, - [1905] = {.lex_state = 1183}, - [1906] = {.lex_state = 625, .external_lex_state = 2}, - [1907] = {.lex_state = 625, .external_lex_state = 2}, - [1908] = {.lex_state = 625, .external_lex_state = 2}, - [1909] = {.lex_state = 163, .external_lex_state = 2}, - [1910] = {.lex_state = 625, .external_lex_state = 2}, - [1911] = {.lex_state = 163, .external_lex_state = 2}, - [1912] = {.lex_state = 1183}, - [1913] = {.lex_state = 625, .external_lex_state = 2}, - [1914] = {.lex_state = 625, .external_lex_state = 2}, - [1915] = {.lex_state = 625, .external_lex_state = 2}, + [1904] = {.lex_state = 1180}, + [1905] = {.lex_state = 622, .external_lex_state = 2}, + [1906] = {.lex_state = 177, .external_lex_state = 2}, + [1907] = {.lex_state = 1178}, + [1908] = {.lex_state = 163, .external_lex_state = 2}, + [1909] = {.lex_state = 18}, + [1910] = {.lex_state = 163, .external_lex_state = 2}, + [1911] = {.lex_state = 622, .external_lex_state = 2}, + [1912] = {.lex_state = 622, .external_lex_state = 2}, + [1913] = {.lex_state = 622, .external_lex_state = 2}, + [1914] = {.lex_state = 622, .external_lex_state = 2}, + [1915] = {.lex_state = 622, .external_lex_state = 2}, [1916] = {.lex_state = 163, .external_lex_state = 2}, - [1917] = {.lex_state = 144}, - [1918] = {.lex_state = 19}, - [1919] = {.lex_state = 19}, - [1920] = {.lex_state = 19}, - [1921] = {.lex_state = 267}, - [1922] = {.lex_state = 267}, - [1923] = {.lex_state = 267}, - [1924] = {.lex_state = 19}, - [1925] = {.lex_state = 19}, - [1926] = {.lex_state = 267}, + [1917] = {.lex_state = 575}, + [1918] = {.lex_state = 127, .external_lex_state = 2}, + [1919] = {.lex_state = 267}, + [1920] = {.lex_state = 267}, + [1921] = {.lex_state = 127, .external_lex_state = 2}, + [1922] = {.lex_state = 19}, + [1923] = {.lex_state = 1181}, + [1924] = {.lex_state = 163, .external_lex_state = 2}, + [1925] = {.lex_state = 163, .external_lex_state = 2}, + [1926] = {.lex_state = 1181}, [1927] = {.lex_state = 19}, - [1928] = {.lex_state = 19}, - [1929] = {.lex_state = 144}, + [1928] = {.lex_state = 154, .external_lex_state = 2}, + [1929] = {.lex_state = 267}, [1930] = {.lex_state = 267}, - [1931] = {.lex_state = 267}, - [1932] = {.lex_state = 19}, - [1933] = {.lex_state = 19}, - [1934] = {.lex_state = 89}, - [1935] = {.lex_state = 267}, - [1936] = {.lex_state = 154, .external_lex_state = 2}, - [1937] = {.lex_state = 1184}, - [1938] = {.lex_state = 267}, - [1939] = {.lex_state = 1186}, - [1940] = {.lex_state = 165, .external_lex_state = 2}, + [1931] = {.lex_state = 154, .external_lex_state = 2}, + [1932] = {.lex_state = 1183}, + [1933] = {.lex_state = 1181}, + [1934] = {.lex_state = 19}, + [1935] = {.lex_state = 19}, + [1936] = {.lex_state = 19}, + [1937] = {.lex_state = 19}, + [1938] = {.lex_state = 144}, + [1939] = {.lex_state = 267}, + [1940] = {.lex_state = 19}, [1941] = {.lex_state = 127, .external_lex_state = 2}, - [1942] = {.lex_state = 1186}, - [1943] = {.lex_state = 154, .external_lex_state = 2}, - [1944] = {.lex_state = 1184}, - [1945] = {.lex_state = 1184}, - [1946] = {.lex_state = 1184}, - [1947] = {.lex_state = 163, .external_lex_state = 2}, - [1948] = {.lex_state = 163, .external_lex_state = 2}, - [1949] = {.lex_state = 19}, + [1942] = {.lex_state = 575}, + [1943] = {.lex_state = 575}, + [1944] = {.lex_state = 19}, + [1945] = {.lex_state = 267}, + [1946] = {.lex_state = 267}, + [1947] = {.lex_state = 575}, + [1948] = {.lex_state = 267}, + [1949] = {.lex_state = 89}, [1950] = {.lex_state = 19}, [1951] = {.lex_state = 19}, - [1952] = {.lex_state = 19}, - [1953] = {.lex_state = 127, .external_lex_state = 2}, + [1952] = {.lex_state = 1181}, + [1953] = {.lex_state = 575}, [1954] = {.lex_state = 127, .external_lex_state = 2}, - [1955] = {.lex_state = 578}, - [1956] = {.lex_state = 578}, - [1957] = {.lex_state = 578}, + [1955] = {.lex_state = 165, .external_lex_state = 2}, + [1956] = {.lex_state = 19}, + [1957] = {.lex_state = 144}, [1958] = {.lex_state = 127, .external_lex_state = 2}, - [1959] = {.lex_state = 578}, - [1960] = {.lex_state = 578}, - [1961] = {.lex_state = 578}, - [1962] = {.lex_state = 578}, - [1963] = {.lex_state = 578}, + [1959] = {.lex_state = 575}, + [1960] = {.lex_state = 575}, + [1961] = {.lex_state = 575}, + [1962] = {.lex_state = 19}, + [1963] = {.lex_state = 19}, [1964] = {.lex_state = 127, .external_lex_state = 2}, - [1965] = {.lex_state = 127, .external_lex_state = 2}, - [1966] = {.lex_state = 578}, - [1967] = {.lex_state = 145}, - [1968] = {.lex_state = 160, .external_lex_state = 2}, + [1965] = {.lex_state = 1183}, + [1966] = {.lex_state = 575}, + [1967] = {.lex_state = 575}, + [1968] = {.lex_state = 19}, [1969] = {.lex_state = 145}, - [1970] = {.lex_state = 89}, - [1971] = {.lex_state = 145}, - [1972] = {.lex_state = 145}, - [1973] = {.lex_state = 145}, - [1974] = {.lex_state = 145}, - [1975] = {.lex_state = 267}, - [1976] = {.lex_state = 1187}, - [1977] = {.lex_state = 577}, - [1978] = {.lex_state = 145}, - [1979] = {.lex_state = 267}, - [1980] = {.lex_state = 37, .external_lex_state = 2}, - [1981] = {.lex_state = 44, .external_lex_state = 2}, - [1982] = {.lex_state = 578}, - [1983] = {.lex_state = 578}, - [1984] = {.lex_state = 578}, - [1985] = {.lex_state = 578}, - [1986] = {.lex_state = 578}, - [1987] = {.lex_state = 578}, - [1988] = {.lex_state = 578}, - [1989] = {.lex_state = 578}, - [1990] = {.lex_state = 160, .external_lex_state = 2}, - [1991] = {.lex_state = 578}, - [1992] = {.lex_state = 578}, - [1993] = {.lex_state = 578}, - [1994] = {.lex_state = 578}, - [1995] = {.lex_state = 155, .external_lex_state = 2}, - [1996] = {.lex_state = 578}, - [1997] = {.lex_state = 578}, - [1998] = {.lex_state = 578}, - [1999] = {.lex_state = 578}, - [2000] = {.lex_state = 578}, - [2001] = {.lex_state = 578}, - [2002] = {.lex_state = 578}, - [2003] = {.lex_state = 578}, - [2004] = {.lex_state = 578}, - [2005] = {.lex_state = 578}, - [2006] = {.lex_state = 578}, - [2007] = {.lex_state = 578}, - [2008] = {.lex_state = 578}, - [2009] = {.lex_state = 578}, - [2010] = {.lex_state = 578}, - [2011] = {.lex_state = 578}, - [2012] = {.lex_state = 578}, - [2013] = {.lex_state = 578}, - [2014] = {.lex_state = 578}, - [2015] = {.lex_state = 578}, - [2016] = {.lex_state = 578}, - [2017] = {.lex_state = 578}, - [2018] = {.lex_state = 578}, - [2019] = {.lex_state = 578}, - [2020] = {.lex_state = 578}, - [2021] = {.lex_state = 578}, - [2022] = {.lex_state = 578}, - [2023] = {.lex_state = 578}, - [2024] = {.lex_state = 578}, - [2025] = {.lex_state = 578}, - [2026] = {.lex_state = 578}, - [2027] = {.lex_state = 578}, - [2028] = {.lex_state = 578}, - [2029] = {.lex_state = 578}, - [2030] = {.lex_state = 578}, - [2031] = {.lex_state = 578}, - [2032] = {.lex_state = 578}, - [2033] = {.lex_state = 578}, - [2034] = {.lex_state = 578}, - [2035] = {.lex_state = 578}, - [2036] = {.lex_state = 578}, - [2037] = {.lex_state = 578}, - [2038] = {.lex_state = 578}, - [2039] = {.lex_state = 578}, - [2040] = {.lex_state = 578}, - [2041] = {.lex_state = 578}, - [2042] = {.lex_state = 578}, - [2043] = {.lex_state = 578}, - [2044] = {.lex_state = 578}, - [2045] = {.lex_state = 578}, - [2046] = {.lex_state = 578}, - [2047] = {.lex_state = 578}, - [2048] = {.lex_state = 578}, - [2049] = {.lex_state = 578}, - [2050] = {.lex_state = 578}, - [2051] = {.lex_state = 578}, - [2052] = {.lex_state = 578}, - [2053] = {.lex_state = 578}, - [2054] = {.lex_state = 578}, - [2055] = {.lex_state = 578}, - [2056] = {.lex_state = 578}, - [2057] = {.lex_state = 578}, - [2058] = {.lex_state = 578}, - [2059] = {.lex_state = 578}, - [2060] = {.lex_state = 578}, - [2061] = {.lex_state = 578}, - [2062] = {.lex_state = 578}, - [2063] = {.lex_state = 578}, - [2064] = {.lex_state = 578}, - [2065] = {.lex_state = 578}, - [2066] = {.lex_state = 578}, - [2067] = {.lex_state = 578}, - [2068] = {.lex_state = 578}, - [2069] = {.lex_state = 578}, - [2070] = {.lex_state = 578}, - [2071] = {.lex_state = 578}, - [2072] = {.lex_state = 578}, - [2073] = {.lex_state = 578}, - [2074] = {.lex_state = 578}, - [2075] = {.lex_state = 578}, - [2076] = {.lex_state = 578}, - [2077] = {.lex_state = 578}, - [2078] = {.lex_state = 578}, - [2079] = {.lex_state = 578}, - [2080] = {.lex_state = 1187}, - [2081] = {.lex_state = 37, .external_lex_state = 2}, - [2082] = {.lex_state = 578}, - [2083] = {.lex_state = 578}, - [2084] = {.lex_state = 145}, - [2085] = {.lex_state = 1187}, - [2086] = {.lex_state = 44, .external_lex_state = 2}, - [2087] = {.lex_state = 155, .external_lex_state = 2}, - [2088] = {.lex_state = 89}, - [2089] = {.lex_state = 578}, - [2090] = {.lex_state = 1187}, - [2091] = {.lex_state = 160, .external_lex_state = 2}, - [2092] = {.lex_state = 145}, - [2093] = {.lex_state = 145}, - [2094] = {.lex_state = 162, .external_lex_state = 2}, - [2095] = {.lex_state = 128, .external_lex_state = 2}, + [1970] = {.lex_state = 575}, + [1971] = {.lex_state = 267}, + [1972] = {.lex_state = 1184}, + [1973] = {.lex_state = 155, .external_lex_state = 2}, + [1974] = {.lex_state = 575}, + [1975] = {.lex_state = 575}, + [1976] = {.lex_state = 575}, + [1977] = {.lex_state = 155, .external_lex_state = 2}, + [1978] = {.lex_state = 575}, + [1979] = {.lex_state = 155, .external_lex_state = 2}, + [1980] = {.lex_state = 574}, + [1981] = {.lex_state = 575}, + [1982] = {.lex_state = 575}, + [1983] = {.lex_state = 162, .external_lex_state = 2}, + [1984] = {.lex_state = 575}, + [1985] = {.lex_state = 145}, + [1986] = {.lex_state = 575}, + [1987] = {.lex_state = 575}, + [1988] = {.lex_state = 575}, + [1989] = {.lex_state = 155, .external_lex_state = 2}, + [1990] = {.lex_state = 267}, + [1991] = {.lex_state = 575}, + [1992] = {.lex_state = 575}, + [1993] = {.lex_state = 575}, + [1994] = {.lex_state = 145}, + [1995] = {.lex_state = 145}, + [1996] = {.lex_state = 145}, + [1997] = {.lex_state = 575}, + [1998] = {.lex_state = 575}, + [1999] = {.lex_state = 575}, + [2000] = {.lex_state = 575}, + [2001] = {.lex_state = 128, .external_lex_state = 2}, + [2002] = {.lex_state = 160, .external_lex_state = 2}, + [2003] = {.lex_state = 33, .external_lex_state = 2}, + [2004] = {.lex_state = 160, .external_lex_state = 2}, + [2005] = {.lex_state = 575}, + [2006] = {.lex_state = 575}, + [2007] = {.lex_state = 1184}, + [2008] = {.lex_state = 575}, + [2009] = {.lex_state = 575}, + [2010] = {.lex_state = 575}, + [2011] = {.lex_state = 575}, + [2012] = {.lex_state = 575}, + [2013] = {.lex_state = 575}, + [2014] = {.lex_state = 575}, + [2015] = {.lex_state = 575}, + [2016] = {.lex_state = 1184}, + [2017] = {.lex_state = 575}, + [2018] = {.lex_state = 575}, + [2019] = {.lex_state = 575}, + [2020] = {.lex_state = 575}, + [2021] = {.lex_state = 575}, + [2022] = {.lex_state = 575}, + [2023] = {.lex_state = 575}, + [2024] = {.lex_state = 1184}, + [2025] = {.lex_state = 575}, + [2026] = {.lex_state = 575}, + [2027] = {.lex_state = 33, .external_lex_state = 2}, + [2028] = {.lex_state = 575}, + [2029] = {.lex_state = 575}, + [2030] = {.lex_state = 575}, + [2031] = {.lex_state = 575}, + [2032] = {.lex_state = 575}, + [2033] = {.lex_state = 575}, + [2034] = {.lex_state = 575}, + [2035] = {.lex_state = 575}, + [2036] = {.lex_state = 575}, + [2037] = {.lex_state = 575}, + [2038] = {.lex_state = 575}, + [2039] = {.lex_state = 575}, + [2040] = {.lex_state = 145}, + [2041] = {.lex_state = 575}, + [2042] = {.lex_state = 575}, + [2043] = {.lex_state = 33, .external_lex_state = 2}, + [2044] = {.lex_state = 575}, + [2045] = {.lex_state = 1184}, + [2046] = {.lex_state = 575}, + [2047] = {.lex_state = 575}, + [2048] = {.lex_state = 145}, + [2049] = {.lex_state = 44, .external_lex_state = 2}, + [2050] = {.lex_state = 575}, + [2051] = {.lex_state = 575}, + [2052] = {.lex_state = 145}, + [2053] = {.lex_state = 575}, + [2054] = {.lex_state = 1184}, + [2055] = {.lex_state = 575}, + [2056] = {.lex_state = 575}, + [2057] = {.lex_state = 575}, + [2058] = {.lex_state = 145}, + [2059] = {.lex_state = 1184}, + [2060] = {.lex_state = 575}, + [2061] = {.lex_state = 44, .external_lex_state = 2}, + [2062] = {.lex_state = 575}, + [2063] = {.lex_state = 575}, + [2064] = {.lex_state = 575}, + [2065] = {.lex_state = 155, .external_lex_state = 2}, + [2066] = {.lex_state = 89}, + [2067] = {.lex_state = 575}, + [2068] = {.lex_state = 575}, + [2069] = {.lex_state = 575}, + [2070] = {.lex_state = 1184}, + [2071] = {.lex_state = 575}, + [2072] = {.lex_state = 575}, + [2073] = {.lex_state = 575}, + [2074] = {.lex_state = 575}, + [2075] = {.lex_state = 575}, + [2076] = {.lex_state = 575}, + [2077] = {.lex_state = 575}, + [2078] = {.lex_state = 44, .external_lex_state = 2}, + [2079] = {.lex_state = 575}, + [2080] = {.lex_state = 575}, + [2081] = {.lex_state = 575}, + [2082] = {.lex_state = 160, .external_lex_state = 2}, + [2083] = {.lex_state = 89}, + [2084] = {.lex_state = 575}, + [2085] = {.lex_state = 160, .external_lex_state = 2}, + [2086] = {.lex_state = 575}, + [2087] = {.lex_state = 145}, + [2088] = {.lex_state = 160, .external_lex_state = 2}, + [2089] = {.lex_state = 145}, + [2090] = {.lex_state = 575}, + [2091] = {.lex_state = 575}, + [2092] = {.lex_state = 575}, + [2093] = {.lex_state = 575}, + [2094] = {.lex_state = 575}, + [2095] = {.lex_state = 575}, [2096] = {.lex_state = 145}, - [2097] = {.lex_state = 145}, - [2098] = {.lex_state = 19}, - [2099] = {.lex_state = 1187}, - [2100] = {.lex_state = 145}, - [2101] = {.lex_state = 1187}, - [2102] = {.lex_state = 155, .external_lex_state = 2}, - [2103] = {.lex_state = 1187}, - [2104] = {.lex_state = 155, .external_lex_state = 2}, - [2105] = {.lex_state = 155, .external_lex_state = 2}, - [2106] = {.lex_state = 44, .external_lex_state = 2}, - [2107] = {.lex_state = 1187}, - [2108] = {.lex_state = 160, .external_lex_state = 2}, - [2109] = {.lex_state = 1187}, - [2110] = {.lex_state = 160, .external_lex_state = 2}, - [2111] = {.lex_state = 163, .external_lex_state = 2}, - [2112] = {.lex_state = 155, .external_lex_state = 2}, - [2113] = {.lex_state = 160, .external_lex_state = 2}, + [2097] = {.lex_state = 575}, + [2098] = {.lex_state = 575}, + [2099] = {.lex_state = 575}, + [2100] = {.lex_state = 575}, + [2101] = {.lex_state = 575}, + [2102] = {.lex_state = 145}, + [2103] = {.lex_state = 575}, + [2104] = {.lex_state = 575}, + [2105] = {.lex_state = 575}, + [2106] = {.lex_state = 575}, + [2107] = {.lex_state = 575}, + [2108] = {.lex_state = 575}, + [2109] = {.lex_state = 575}, + [2110] = {.lex_state = 1184}, + [2111] = {.lex_state = 575}, + [2112] = {.lex_state = 168, .external_lex_state = 2}, + [2113] = {.lex_state = 575}, [2114] = {.lex_state = 168, .external_lex_state = 2}, - [2115] = {.lex_state = 168, .external_lex_state = 2}, - [2116] = {.lex_state = 168, .external_lex_state = 2}, - [2117] = {.lex_state = 44, .external_lex_state = 2}, + [2115] = {.lex_state = 575}, + [2116] = {.lex_state = 33, .external_lex_state = 2}, + [2117] = {.lex_state = 168, .external_lex_state = 2}, [2118] = {.lex_state = 155, .external_lex_state = 2}, [2119] = {.lex_state = 168, .external_lex_state = 2}, - [2120] = {.lex_state = 160, .external_lex_state = 2}, - [2121] = {.lex_state = 37, .external_lex_state = 2}, - [2122] = {.lex_state = 168, .external_lex_state = 2}, - [2123] = {.lex_state = 578}, - [2124] = {.lex_state = 578}, - [2125] = {.lex_state = 145}, - [2126] = {.lex_state = 168, .external_lex_state = 2}, - [2127] = {.lex_state = 163, .external_lex_state = 2}, - [2128] = {.lex_state = 578}, - [2129] = {.lex_state = 578}, - [2130] = {.lex_state = 578}, - [2131] = {.lex_state = 578}, + [2120] = {.lex_state = 163, .external_lex_state = 2}, + [2121] = {.lex_state = 155, .external_lex_state = 2}, + [2122] = {.lex_state = 44, .external_lex_state = 2}, + [2123] = {.lex_state = 160, .external_lex_state = 2}, + [2124] = {.lex_state = 575}, + [2125] = {.lex_state = 163, .external_lex_state = 2}, + [2126] = {.lex_state = 575}, + [2127] = {.lex_state = 145}, + [2128] = {.lex_state = 168, .external_lex_state = 2}, + [2129] = {.lex_state = 160, .external_lex_state = 2}, + [2130] = {.lex_state = 575}, + [2131] = {.lex_state = 575}, [2132] = {.lex_state = 168, .external_lex_state = 2}, [2133] = {.lex_state = 163, .external_lex_state = 2}, [2134] = {.lex_state = 89}, - [2135] = {.lex_state = 37, .external_lex_state = 2}, - [2136] = {.lex_state = 37, .external_lex_state = 2}, - [2137] = {.lex_state = 578}, - [2138] = {.lex_state = 578}, - [2139] = {.lex_state = 578}, - [2140] = {.lex_state = 578}, - [2141] = {.lex_state = 578}, - [2142] = {.lex_state = 578}, - [2143] = {.lex_state = 578}, - [2144] = {.lex_state = 578}, - [2145] = {.lex_state = 578}, - [2146] = {.lex_state = 578}, - [2147] = {.lex_state = 578}, - [2148] = {.lex_state = 37, .external_lex_state = 2}, - [2149] = {.lex_state = 1188}, - [2150] = {.lex_state = 37, .external_lex_state = 2}, - [2151] = {.lex_state = 1188}, - [2152] = {.lex_state = 37, .external_lex_state = 2}, - [2153] = {.lex_state = 44, .external_lex_state = 2}, - [2154] = {.lex_state = 37, .external_lex_state = 2}, - [2155] = {.lex_state = 37, .external_lex_state = 2}, - [2156] = {.lex_state = 37, .external_lex_state = 2}, - [2157] = {.lex_state = 49, .external_lex_state = 2}, - [2158] = {.lex_state = 37, .external_lex_state = 2}, - [2159] = {.lex_state = 49, .external_lex_state = 2}, - [2160] = {.lex_state = 37, .external_lex_state = 2}, - [2161] = {.lex_state = 1188}, - [2162] = {.lex_state = 37, .external_lex_state = 2}, - [2163] = {.lex_state = 37, .external_lex_state = 2}, - [2164] = {.lex_state = 37, .external_lex_state = 2}, - [2165] = {.lex_state = 37, .external_lex_state = 2}, - [2166] = {.lex_state = 37, .external_lex_state = 2}, - [2167] = {.lex_state = 37, .external_lex_state = 2}, - [2168] = {.lex_state = 37, .external_lex_state = 2}, - [2169] = {.lex_state = 578}, - [2170] = {.lex_state = 578}, - [2171] = {.lex_state = 37, .external_lex_state = 2}, - [2172] = {.lex_state = 578}, - [2173] = {.lex_state = 37, .external_lex_state = 2}, - [2174] = {.lex_state = 37, .external_lex_state = 2}, - [2175] = {.lex_state = 578}, - [2176] = {.lex_state = 37, .external_lex_state = 2}, - [2177] = {.lex_state = 578}, - [2178] = {.lex_state = 37, .external_lex_state = 2}, - [2179] = {.lex_state = 37, .external_lex_state = 2}, - [2180] = {.lex_state = 37, .external_lex_state = 2}, - [2181] = {.lex_state = 37, .external_lex_state = 2}, - [2182] = {.lex_state = 37, .external_lex_state = 2}, - [2183] = {.lex_state = 37, .external_lex_state = 2}, - [2184] = {.lex_state = 578}, - [2185] = {.lex_state = 578}, - [2186] = {.lex_state = 578}, - [2187] = {.lex_state = 578}, - [2188] = {.lex_state = 578}, - [2189] = {.lex_state = 578}, - [2190] = {.lex_state = 578}, - [2191] = {.lex_state = 37, .external_lex_state = 2}, - [2192] = {.lex_state = 1188}, - [2193] = {.lex_state = 37, .external_lex_state = 2}, - [2194] = {.lex_state = 37, .external_lex_state = 2}, - [2195] = {.lex_state = 1188}, - [2196] = {.lex_state = 37, .external_lex_state = 2}, - [2197] = {.lex_state = 37, .external_lex_state = 2}, - [2198] = {.lex_state = 37, .external_lex_state = 2}, - [2199] = {.lex_state = 1188}, - [2200] = {.lex_state = 1188}, - [2201] = {.lex_state = 41, .external_lex_state = 2}, - [2202] = {.lex_state = 49, .external_lex_state = 2}, - [2203] = {.lex_state = 37, .external_lex_state = 2}, - [2204] = {.lex_state = 37, .external_lex_state = 2}, - [2205] = {.lex_state = 37, .external_lex_state = 2}, - [2206] = {.lex_state = 37, .external_lex_state = 2}, - [2207] = {.lex_state = 37, .external_lex_state = 2}, - [2208] = {.lex_state = 37, .external_lex_state = 2}, - [2209] = {.lex_state = 37, .external_lex_state = 2}, - [2210] = {.lex_state = 37, .external_lex_state = 2}, - [2211] = {.lex_state = 37, .external_lex_state = 2}, - [2212] = {.lex_state = 578}, - [2213] = {.lex_state = 578}, - [2214] = {.lex_state = 578}, - [2215] = {.lex_state = 578}, - [2216] = {.lex_state = 578}, - [2217] = {.lex_state = 577}, - [2218] = {.lex_state = 578}, - [2219] = {.lex_state = 41, .external_lex_state = 2}, - [2220] = {.lex_state = 578}, - [2221] = {.lex_state = 577}, + [2135] = {.lex_state = 168, .external_lex_state = 2}, + [2136] = {.lex_state = 33, .external_lex_state = 2}, + [2137] = {.lex_state = 1185}, + [2138] = {.lex_state = 33, .external_lex_state = 2}, + [2139] = {.lex_state = 575}, + [2140] = {.lex_state = 33, .external_lex_state = 2}, + [2141] = {.lex_state = 33, .external_lex_state = 2}, + [2142] = {.lex_state = 575}, + [2143] = {.lex_state = 575}, + [2144] = {.lex_state = 33, .external_lex_state = 2}, + [2145] = {.lex_state = 575}, + [2146] = {.lex_state = 575}, + [2147] = {.lex_state = 1185}, + [2148] = {.lex_state = 33, .external_lex_state = 2}, + [2149] = {.lex_state = 33, .external_lex_state = 2}, + [2150] = {.lex_state = 575}, + [2151] = {.lex_state = 575}, + [2152] = {.lex_state = 33, .external_lex_state = 2}, + [2153] = {.lex_state = 575}, + [2154] = {.lex_state = 1185}, + [2155] = {.lex_state = 49, .external_lex_state = 2}, + [2156] = {.lex_state = 1185}, + [2157] = {.lex_state = 33, .external_lex_state = 2}, + [2158] = {.lex_state = 33, .external_lex_state = 2}, + [2159] = {.lex_state = 1185}, + [2160] = {.lex_state = 575}, + [2161] = {.lex_state = 44, .external_lex_state = 2}, + [2162] = {.lex_state = 575}, + [2163] = {.lex_state = 33, .external_lex_state = 2}, + [2164] = {.lex_state = 575}, + [2165] = {.lex_state = 575}, + [2166] = {.lex_state = 33, .external_lex_state = 2}, + [2167] = {.lex_state = 33, .external_lex_state = 2}, + [2168] = {.lex_state = 33, .external_lex_state = 2}, + [2169] = {.lex_state = 33, .external_lex_state = 2}, + [2170] = {.lex_state = 1185}, + [2171] = {.lex_state = 33, .external_lex_state = 2}, + [2172] = {.lex_state = 33, .external_lex_state = 2}, + [2173] = {.lex_state = 33, .external_lex_state = 2}, + [2174] = {.lex_state = 33, .external_lex_state = 2}, + [2175] = {.lex_state = 33, .external_lex_state = 2}, + [2176] = {.lex_state = 575}, + [2177] = {.lex_state = 49, .external_lex_state = 2}, + [2178] = {.lex_state = 33, .external_lex_state = 2}, + [2179] = {.lex_state = 575}, + [2180] = {.lex_state = 33, .external_lex_state = 2}, + [2181] = {.lex_state = 33, .external_lex_state = 2}, + [2182] = {.lex_state = 33, .external_lex_state = 2}, + [2183] = {.lex_state = 575}, + [2184] = {.lex_state = 33, .external_lex_state = 2}, + [2185] = {.lex_state = 575}, + [2186] = {.lex_state = 575}, + [2187] = {.lex_state = 33, .external_lex_state = 2}, + [2188] = {.lex_state = 33, .external_lex_state = 2}, + [2189] = {.lex_state = 575}, + [2190] = {.lex_state = 33, .external_lex_state = 2}, + [2191] = {.lex_state = 41, .external_lex_state = 2}, + [2192] = {.lex_state = 575}, + [2193] = {.lex_state = 33, .external_lex_state = 2}, + [2194] = {.lex_state = 33, .external_lex_state = 2}, + [2195] = {.lex_state = 49, .external_lex_state = 2}, + [2196] = {.lex_state = 33, .external_lex_state = 2}, + [2197] = {.lex_state = 575}, + [2198] = {.lex_state = 33, .external_lex_state = 2}, + [2199] = {.lex_state = 33, .external_lex_state = 2}, + [2200] = {.lex_state = 33, .external_lex_state = 2}, + [2201] = {.lex_state = 33, .external_lex_state = 2}, + [2202] = {.lex_state = 33, .external_lex_state = 2}, + [2203] = {.lex_state = 33, .external_lex_state = 2}, + [2204] = {.lex_state = 33, .external_lex_state = 2}, + [2205] = {.lex_state = 575}, + [2206] = {.lex_state = 575}, + [2207] = {.lex_state = 33, .external_lex_state = 2}, + [2208] = {.lex_state = 33, .external_lex_state = 2}, + [2209] = {.lex_state = 575}, + [2210] = {.lex_state = 33, .external_lex_state = 2}, + [2211] = {.lex_state = 33, .external_lex_state = 2}, + [2212] = {.lex_state = 1185}, + [2213] = {.lex_state = 575}, + [2214] = {.lex_state = 574}, + [2215] = {.lex_state = 575}, + [2216] = {.lex_state = 575}, + [2217] = {.lex_state = 575}, + [2218] = {.lex_state = 575}, + [2219] = {.lex_state = 575}, + [2220] = {.lex_state = 41, .external_lex_state = 2}, + [2221] = {.lex_state = 575}, [2222] = {.lex_state = 157, .external_lex_state = 2}, - [2223] = {.lex_state = 157, .external_lex_state = 2}, + [2223] = {.lex_state = 45, .external_lex_state = 2}, [2224] = {.lex_state = 49, .external_lex_state = 2}, [2225] = {.lex_state = 157, .external_lex_state = 2}, - [2226] = {.lex_state = 45, .external_lex_state = 2}, + [2226] = {.lex_state = 157, .external_lex_state = 2}, [2227] = {.lex_state = 157, .external_lex_state = 2}, - [2228] = {.lex_state = 575}, - [2229] = {.lex_state = 575}, - [2230] = {.lex_state = 575}, - [2231] = {.lex_state = 159, .external_lex_state = 2}, - [2232] = {.lex_state = 159, .external_lex_state = 2}, - [2233] = {.lex_state = 575}, - [2234] = {.lex_state = 159, .external_lex_state = 2}, + [2228] = {.lex_state = 574}, + [2229] = {.lex_state = 159, .external_lex_state = 2}, + [2230] = {.lex_state = 572}, + [2231] = {.lex_state = 572}, + [2232] = {.lex_state = 572}, + [2233] = {.lex_state = 572}, + [2234] = {.lex_state = 572}, [2235] = {.lex_state = 159, .external_lex_state = 2}, [2236] = {.lex_state = 159, .external_lex_state = 2}, - [2237] = {.lex_state = 47, .external_lex_state = 2}, - [2238] = {.lex_state = 159, .external_lex_state = 2}, + [2237] = {.lex_state = 159, .external_lex_state = 2}, + [2238] = {.lex_state = 47, .external_lex_state = 2}, [2239] = {.lex_state = 157, .external_lex_state = 2}, - [2240] = {.lex_state = 157, .external_lex_state = 2}, - [2241] = {.lex_state = 46, .external_lex_state = 2}, - [2242] = {.lex_state = 575}, - [2243] = {.lex_state = 575}, - [2244] = {.lex_state = 45, .external_lex_state = 2}, + [2240] = {.lex_state = 46, .external_lex_state = 2}, + [2241] = {.lex_state = 159, .external_lex_state = 2}, + [2242] = {.lex_state = 159, .external_lex_state = 2}, + [2243] = {.lex_state = 45, .external_lex_state = 2}, + [2244] = {.lex_state = 572}, [2245] = {.lex_state = 159, .external_lex_state = 2}, - [2246] = {.lex_state = 49, .external_lex_state = 2}, - [2247] = {.lex_state = 47, .external_lex_state = 2}, - [2248] = {.lex_state = 159, .external_lex_state = 2}, + [2246] = {.lex_state = 157, .external_lex_state = 2}, + [2247] = {.lex_state = 49, .external_lex_state = 2}, + [2248] = {.lex_state = 49, .external_lex_state = 2}, [2249] = {.lex_state = 49, .external_lex_state = 2}, - [2250] = {.lex_state = 49, .external_lex_state = 2}, - [2251] = {.lex_state = 46, .external_lex_state = 2}, - [2252] = {.lex_state = 159, .external_lex_state = 2}, - [2253] = {.lex_state = 47, .external_lex_state = 2}, - [2254] = {.lex_state = 577}, - [2255] = {.lex_state = 577}, - [2256] = {.lex_state = 577}, - [2257] = {.lex_state = 48, .external_lex_state = 2}, - [2258] = {.lex_state = 91}, + [2250] = {.lex_state = 159, .external_lex_state = 2}, + [2251] = {.lex_state = 159, .external_lex_state = 2}, + [2252] = {.lex_state = 47, .external_lex_state = 2}, + [2253] = {.lex_state = 46, .external_lex_state = 2}, + [2254] = {.lex_state = 47, .external_lex_state = 2}, + [2255] = {.lex_state = 574}, + [2256] = {.lex_state = 574}, + [2257] = {.lex_state = 574}, + [2258] = {.lex_state = 48, .external_lex_state = 2}, [2259] = {.lex_state = 48, .external_lex_state = 2}, - [2260] = {.lex_state = 577}, - [2261] = {.lex_state = 577}, - [2262] = {.lex_state = 577}, - [2263] = {.lex_state = 5}, - [2264] = {.lex_state = 48, .external_lex_state = 2}, + [2260] = {.lex_state = 574}, + [2261] = {.lex_state = 574}, + [2262] = {.lex_state = 91}, + [2263] = {.lex_state = 574}, + [2264] = {.lex_state = 5}, [2265] = {.lex_state = 48, .external_lex_state = 2}, - [2266] = {.lex_state = 48, .external_lex_state = 2}, + [2266] = {.lex_state = 628}, [2267] = {.lex_state = 48, .external_lex_state = 2}, [2268] = {.lex_state = 48, .external_lex_state = 2}, [2269] = {.lex_state = 48, .external_lex_state = 2}, [2270] = {.lex_state = 48, .external_lex_state = 2}, [2271] = {.lex_state = 48, .external_lex_state = 2}, [2272] = {.lex_state = 48, .external_lex_state = 2}, - [2273] = {.lex_state = 578}, + [2273] = {.lex_state = 48, .external_lex_state = 2}, [2274] = {.lex_state = 48, .external_lex_state = 2}, [2275] = {.lex_state = 48, .external_lex_state = 2}, [2276] = {.lex_state = 48, .external_lex_state = 2}, [2277] = {.lex_state = 48, .external_lex_state = 2}, [2278] = {.lex_state = 48, .external_lex_state = 2}, - [2279] = {.lex_state = 48, .external_lex_state = 2}, + [2279] = {.lex_state = 575}, [2280] = {.lex_state = 48, .external_lex_state = 2}, [2281] = {.lex_state = 48, .external_lex_state = 2}, [2282] = {.lex_state = 48, .external_lex_state = 2}, - [2283] = {.lex_state = 631}, + [2283] = {.lex_state = 48, .external_lex_state = 2}, [2284] = {.lex_state = 48, .external_lex_state = 2}, - [2285] = {.lex_state = 48, .external_lex_state = 2}, + [2285] = {.lex_state = 575}, [2286] = {.lex_state = 48, .external_lex_state = 2}, [2287] = {.lex_state = 48, .external_lex_state = 2}, [2288] = {.lex_state = 48, .external_lex_state = 2}, [2289] = {.lex_state = 48, .external_lex_state = 2}, - [2290] = {.lex_state = 578}, - [2291] = {.lex_state = 578}, - [2292] = {.lex_state = 578}, - [2293] = {.lex_state = 578}, - [2294] = {.lex_state = 48, .external_lex_state = 2}, - [2295] = {.lex_state = 48, .external_lex_state = 2}, - [2296] = {.lex_state = 5}, - [2297] = {.lex_state = 581}, - [2298] = {.lex_state = 631}, - [2299] = {.lex_state = 632}, - [2300] = {.lex_state = 632}, - [2301] = {.lex_state = 632}, + [2290] = {.lex_state = 48, .external_lex_state = 2}, + [2291] = {.lex_state = 48, .external_lex_state = 2}, + [2292] = {.lex_state = 48, .external_lex_state = 2}, + [2293] = {.lex_state = 575}, + [2294] = {.lex_state = 575}, + [2295] = {.lex_state = 575}, + [2296] = {.lex_state = 48, .external_lex_state = 2}, + [2297] = {.lex_state = 628}, + [2298] = {.lex_state = 578}, + [2299] = {.lex_state = 629}, + [2300] = {.lex_state = 5}, + [2301] = {.lex_state = 629}, [2302] = {.lex_state = 48, .external_lex_state = 2}, - [2303] = {.lex_state = 48, .external_lex_state = 2}, - [2304] = {.lex_state = 632}, - [2305] = {.lex_state = 48, .external_lex_state = 2}, - [2306] = {.lex_state = 581}, - [2307] = {.lex_state = 581}, - [2308] = {.lex_state = 581}, - [2309] = {.lex_state = 581}, + [2303] = {.lex_state = 629}, + [2304] = {.lex_state = 48, .external_lex_state = 2}, + [2305] = {.lex_state = 629}, + [2306] = {.lex_state = 48, .external_lex_state = 2}, + [2307] = {.lex_state = 48, .external_lex_state = 2}, + [2308] = {.lex_state = 48, .external_lex_state = 2}, + [2309] = {.lex_state = 48, .external_lex_state = 2}, [2310] = {.lex_state = 48, .external_lex_state = 2}, [2311] = {.lex_state = 48, .external_lex_state = 2}, [2312] = {.lex_state = 48, .external_lex_state = 2}, - [2313] = {.lex_state = 630}, - [2314] = {.lex_state = 581}, - [2315] = {.lex_state = 48, .external_lex_state = 2}, - [2316] = {.lex_state = 48, .external_lex_state = 2}, - [2317] = {.lex_state = 48, .external_lex_state = 2}, + [2313] = {.lex_state = 578}, + [2314] = {.lex_state = 578}, + [2315] = {.lex_state = 578}, + [2316] = {.lex_state = 627}, + [2317] = {.lex_state = 578}, [2318] = {.lex_state = 48, .external_lex_state = 2}, - [2319] = {.lex_state = 48, .external_lex_state = 2}, - [2320] = {.lex_state = 48, .external_lex_state = 2}, - [2321] = {.lex_state = 635}, - [2322] = {.lex_state = 639}, - [2323] = {.lex_state = 581}, - [2324] = {.lex_state = 641}, - [2325] = {.lex_state = 630}, - [2326] = {.lex_state = 630}, - [2327] = {.lex_state = 639}, - [2328] = {.lex_state = 635}, - [2329] = {.lex_state = 633}, - [2330] = {.lex_state = 633}, - [2331] = {.lex_state = 643}, - [2332] = {.lex_state = 581}, - [2333] = {.lex_state = 581}, - [2334] = {.lex_state = 581}, - [2335] = {.lex_state = 641}, - [2336] = {.lex_state = 643}, - [2337] = {.lex_state = 645}, - [2338] = {.lex_state = 643}, - [2339] = {.lex_state = 643}, - [2340] = {.lex_state = 630}, - [2341] = {.lex_state = 630}, - [2342] = {.lex_state = 643}, - [2343] = {.lex_state = 630}, + [2319] = {.lex_state = 636}, + [2320] = {.lex_state = 632}, + [2321] = {.lex_state = 48, .external_lex_state = 2}, + [2322] = {.lex_state = 48, .external_lex_state = 2}, + [2323] = {.lex_state = 578}, + [2324] = {.lex_state = 630}, + [2325] = {.lex_state = 638}, + [2326] = {.lex_state = 578}, + [2327] = {.lex_state = 578}, + [2328] = {.lex_state = 578}, + [2329] = {.lex_state = 578}, + [2330] = {.lex_state = 638}, + [2331] = {.lex_state = 627}, + [2332] = {.lex_state = 632}, + [2333] = {.lex_state = 636}, + [2334] = {.lex_state = 627}, + [2335] = {.lex_state = 640}, + [2336] = {.lex_state = 630}, + [2337] = {.lex_state = 640}, + [2338] = {.lex_state = 640}, + [2339] = {.lex_state = 630}, + [2340] = {.lex_state = 638}, + [2341] = {.lex_state = 642}, + [2342] = {.lex_state = 638}, + [2343] = {.lex_state = 633}, [2344] = {.lex_state = 630}, - [2345] = {.lex_state = 630}, - [2346] = {.lex_state = 633}, - [2347] = {.lex_state = 641}, - [2348] = {.lex_state = 637}, - [2349] = {.lex_state = 578}, - [2350] = {.lex_state = 640}, - [2351] = {.lex_state = 578}, - [2352] = {.lex_state = 636}, - [2353] = {.lex_state = 633}, - [2354] = {.lex_state = 641}, - [2355] = {.lex_state = 643}, - [2356] = {.lex_state = 630}, - [2357] = {.lex_state = 636}, - [2358] = {.lex_state = 630}, - [2359] = {.lex_state = 575}, - [2360] = {.lex_state = 647}, + [2345] = {.lex_state = 640}, + [2346] = {.lex_state = 627}, + [2347] = {.lex_state = 637}, + [2348] = {.lex_state = 627}, + [2349] = {.lex_state = 627}, + [2350] = {.lex_state = 627}, + [2351] = {.lex_state = 575}, + [2352] = {.lex_state = 627}, + [2353] = {.lex_state = 634}, + [2354] = {.lex_state = 575}, + [2355] = {.lex_state = 640}, + [2356] = {.lex_state = 627}, + [2357] = {.lex_state = 51}, + [2358] = {.lex_state = 644}, + [2359] = {.lex_state = 640}, + [2360] = {.lex_state = 572}, [2361] = {.lex_state = 172, .external_lex_state = 2}, - [2362] = {.lex_state = 172, .external_lex_state = 2}, - [2363] = {.lex_state = 644}, - [2364] = {.lex_state = 577}, - [2365] = {.lex_state = 645}, - [2366] = {.lex_state = 647}, - [2367] = {.lex_state = 577}, - [2368] = {.lex_state = 640}, - [2369] = {.lex_state = 637}, - [2370] = {.lex_state = 577}, - [2371] = {.lex_state = 642}, + [2362] = {.lex_state = 644}, + [2363] = {.lex_state = 637}, + [2364] = {.lex_state = 172, .external_lex_state = 2}, + [2365] = {.lex_state = 642}, + [2366] = {.lex_state = 627}, + [2367] = {.lex_state = 627}, + [2368] = {.lex_state = 574}, + [2369] = {.lex_state = 639}, + [2370] = {.lex_state = 627}, + [2371] = {.lex_state = 634}, [2372] = {.lex_state = 172, .external_lex_state = 2}, - [2373] = {.lex_state = 172, .external_lex_state = 2}, + [2373] = {.lex_state = 640}, [2374] = {.lex_state = 2}, - [2375] = {.lex_state = 643}, + [2375] = {.lex_state = 574}, [2376] = {.lex_state = 172, .external_lex_state = 2}, - [2377] = {.lex_state = 630}, - [2378] = {.lex_state = 51}, - [2379] = {.lex_state = 643}, - [2380] = {.lex_state = 642}, - [2381] = {.lex_state = 630}, - [2382] = {.lex_state = 577}, - [2383] = {.lex_state = 52}, - [2384] = {.lex_state = 646}, - [2385] = {.lex_state = 172, .external_lex_state = 2}, - [2386] = {.lex_state = 49, .external_lex_state = 2}, - [2387] = {.lex_state = 577}, - [2388] = {.lex_state = 576}, - [2389] = {.lex_state = 577}, - [2390] = {.lex_state = 575}, - [2391] = {.lex_state = 644}, - [2392] = {.lex_state = 51}, - [2393] = {.lex_state = 642}, - [2394] = {.lex_state = 576}, - [2395] = {.lex_state = 53}, - [2396] = {.lex_state = 55}, - [2397] = {.lex_state = 644}, - [2398] = {.lex_state = 649}, - [2399] = {.lex_state = 642}, - [2400] = {.lex_state = 649}, - [2401] = {.lex_state = 649}, - [2402] = {.lex_state = 172, .external_lex_state = 2}, - [2403] = {.lex_state = 575}, - [2404] = {.lex_state = 576}, - [2405] = {.lex_state = 647}, - [2406] = {.lex_state = 649}, - [2407] = {.lex_state = 577}, - [2408] = {.lex_state = 575}, - [2409] = {.lex_state = 649}, - [2410] = {.lex_state = 644}, - [2411] = {.lex_state = 575}, - [2412] = {.lex_state = 576}, - [2413] = {.lex_state = 577}, - [2414] = {.lex_state = 577}, - [2415] = {.lex_state = 577}, - [2416] = {.lex_state = 577}, - [2417] = {.lex_state = 577}, - [2418] = {.lex_state = 52}, - [2419] = {.lex_state = 647}, - [2420] = {.lex_state = 575}, - [2421] = {.lex_state = 644}, - [2422] = {.lex_state = 575}, - [2423] = {.lex_state = 638}, - [2424] = {.lex_state = 649}, - [2425] = {.lex_state = 576}, - [2426] = {.lex_state = 644}, - [2427] = {.lex_state = 51}, - [2428] = {.lex_state = 51}, - [2429] = {.lex_state = 51}, - [2430] = {.lex_state = 576}, - [2431] = {.lex_state = 638}, - [2432] = {.lex_state = 576}, - [2433] = {.lex_state = 649}, - [2434] = {.lex_state = 576}, - [2435] = {.lex_state = 653}, - [2436] = {.lex_state = 649}, - [2437] = {.lex_state = 51}, - [2438] = {.lex_state = 649}, - [2439] = {.lex_state = 49, .external_lex_state = 2}, - [2440] = {.lex_state = 644}, - [2441] = {.lex_state = 576}, - [2442] = {.lex_state = 56}, - [2443] = {.lex_state = 646}, - [2444] = {.lex_state = 57}, - [2445] = {.lex_state = 2}, - [2446] = {.lex_state = 576}, - [2447] = {.lex_state = 651}, - [2448] = {.lex_state = 644}, - [2449] = {.lex_state = 648}, - [2450] = {.lex_state = 644}, - [2451] = {.lex_state = 576}, - [2452] = {.lex_state = 56}, - [2453] = {.lex_state = 649}, - [2454] = {.lex_state = 576}, - [2455] = {.lex_state = 576}, - [2456] = {.lex_state = 576}, - [2457] = {.lex_state = 576}, - [2458] = {.lex_state = 576}, - [2459] = {.lex_state = 575}, - [2460] = {.lex_state = 648}, - [2461] = {.lex_state = 2}, - [2462] = {.lex_state = 576}, - [2463] = {.lex_state = 576}, - [2464] = {.lex_state = 156, .external_lex_state = 2}, - [2465] = {.lex_state = 576}, - [2466] = {.lex_state = 577}, + [2377] = {.lex_state = 172, .external_lex_state = 2}, + [2378] = {.lex_state = 574}, + [2379] = {.lex_state = 574}, + [2380] = {.lex_state = 633}, + [2381] = {.lex_state = 641}, + [2382] = {.lex_state = 640}, + [2383] = {.lex_state = 639}, + [2384] = {.lex_state = 573}, + [2385] = {.lex_state = 639}, + [2386] = {.lex_state = 574}, + [2387] = {.lex_state = 643}, + [2388] = {.lex_state = 572}, + [2389] = {.lex_state = 572}, + [2390] = {.lex_state = 572}, + [2391] = {.lex_state = 572}, + [2392] = {.lex_state = 572}, + [2393] = {.lex_state = 572}, + [2394] = {.lex_state = 574}, + [2395] = {.lex_state = 573}, + [2396] = {.lex_state = 641}, + [2397] = {.lex_state = 641}, + [2398] = {.lex_state = 641}, + [2399] = {.lex_state = 639}, + [2400] = {.lex_state = 641}, + [2401] = {.lex_state = 646}, + [2402] = {.lex_state = 635}, + [2403] = {.lex_state = 644}, + [2404] = {.lex_state = 52}, + [2405] = {.lex_state = 646}, + [2406] = {.lex_state = 53}, + [2407] = {.lex_state = 55}, + [2408] = {.lex_state = 646}, + [2409] = {.lex_state = 172, .external_lex_state = 2}, + [2410] = {.lex_state = 646}, + [2411] = {.lex_state = 574}, + [2412] = {.lex_state = 573}, + [2413] = {.lex_state = 646}, + [2414] = {.lex_state = 172, .external_lex_state = 2}, + [2415] = {.lex_state = 49, .external_lex_state = 2}, + [2416] = {.lex_state = 573}, + [2417] = {.lex_state = 51}, + [2418] = {.lex_state = 574}, + [2419] = {.lex_state = 574}, + [2420] = {.lex_state = 574}, + [2421] = {.lex_state = 574}, + [2422] = {.lex_state = 574}, + [2423] = {.lex_state = 52}, + [2424] = {.lex_state = 644}, + [2425] = {.lex_state = 56}, + [2426] = {.lex_state = 573}, + [2427] = {.lex_state = 646}, + [2428] = {.lex_state = 641}, + [2429] = {.lex_state = 573}, + [2430] = {.lex_state = 573}, + [2431] = {.lex_state = 646}, + [2432] = {.lex_state = 645}, + [2433] = {.lex_state = 646}, + [2434] = {.lex_state = 646}, + [2435] = {.lex_state = 2}, + [2436] = {.lex_state = 641}, + [2437] = {.lex_state = 641}, + [2438] = {.lex_state = 49, .external_lex_state = 2}, + [2439] = {.lex_state = 56}, + [2440] = {.lex_state = 2}, + [2441] = {.lex_state = 572}, + [2442] = {.lex_state = 51}, + [2443] = {.lex_state = 645}, + [2444] = {.lex_state = 650}, + [2445] = {.lex_state = 643}, + [2446] = {.lex_state = 51}, + [2447] = {.lex_state = 51}, + [2448] = {.lex_state = 51}, + [2449] = {.lex_state = 573}, + [2450] = {.lex_state = 573}, + [2451] = {.lex_state = 573}, + [2452] = {.lex_state = 573}, + [2453] = {.lex_state = 57}, + [2454] = {.lex_state = 573}, + [2455] = {.lex_state = 573}, + [2456] = {.lex_state = 641}, + [2457] = {.lex_state = 648}, + [2458] = {.lex_state = 573}, + [2459] = {.lex_state = 573}, + [2460] = {.lex_state = 573}, + [2461] = {.lex_state = 635}, + [2462] = {.lex_state = 646}, + [2463] = {.lex_state = 647}, + [2464] = {.lex_state = 650}, + [2465] = {.lex_state = 156, .external_lex_state = 2}, + [2466] = {.lex_state = 2}, [2467] = {.lex_state = 2}, - [2468] = {.lex_state = 650}, - [2469] = {.lex_state = 644}, - [2470] = {.lex_state = 577}, - [2471] = {.lex_state = 655}, - [2472] = {.lex_state = 576}, + [2468] = {.lex_state = 574}, + [2469] = {.lex_state = 573}, + [2470] = {.lex_state = 574}, + [2471] = {.lex_state = 573}, + [2472] = {.lex_state = 573}, [2473] = {.lex_state = 57}, - [2474] = {.lex_state = 577}, - [2475] = {.lex_state = 577}, - [2476] = {.lex_state = 2}, - [2477] = {.lex_state = 577}, - [2478] = {.lex_state = 577}, - [2479] = {.lex_state = 577}, - [2480] = {.lex_state = 651}, - [2481] = {.lex_state = 577}, - [2482] = {.lex_state = 58}, - [2483] = {.lex_state = 57}, - [2484] = {.lex_state = 156, .external_lex_state = 2}, - [2485] = {.lex_state = 156, .external_lex_state = 2}, - [2486] = {.lex_state = 576}, - [2487] = {.lex_state = 650}, - [2488] = {.lex_state = 54}, - [2489] = {.lex_state = 576}, - [2490] = {.lex_state = 576}, - [2491] = {.lex_state = 2}, - [2492] = {.lex_state = 576}, - [2493] = {.lex_state = 648}, + [2474] = {.lex_state = 573}, + [2475] = {.lex_state = 574}, + [2476] = {.lex_state = 573}, + [2477] = {.lex_state = 573}, + [2478] = {.lex_state = 573}, + [2479] = {.lex_state = 573}, + [2480] = {.lex_state = 57}, + [2481] = {.lex_state = 57}, + [2482] = {.lex_state = 645}, + [2483] = {.lex_state = 2}, + [2484] = {.lex_state = 652}, + [2485] = {.lex_state = 574}, + [2486] = {.lex_state = 647}, + [2487] = {.lex_state = 573}, + [2488] = {.lex_state = 648}, + [2489] = {.lex_state = 156, .external_lex_state = 2}, + [2490] = {.lex_state = 645}, + [2491] = {.lex_state = 574}, + [2492] = {.lex_state = 2}, + [2493] = {.lex_state = 2}, [2494] = {.lex_state = 2}, - [2495] = {.lex_state = 156, .external_lex_state = 2}, - [2496] = {.lex_state = 577}, - [2497] = {.lex_state = 577}, - [2498] = {.lex_state = 2}, - [2499] = {.lex_state = 655}, - [2500] = {.lex_state = 577}, - [2501] = {.lex_state = 577}, - [2502] = {.lex_state = 577}, - [2503] = {.lex_state = 577}, - [2504] = {.lex_state = 653}, - [2505] = {.lex_state = 650}, - [2506] = {.lex_state = 576}, - [2507] = {.lex_state = 57}, - [2508] = {.lex_state = 2}, - [2509] = {.lex_state = 650}, - [2510] = {.lex_state = 648}, - [2511] = {.lex_state = 2}, - [2512] = {.lex_state = 576}, - [2513] = {.lex_state = 577}, - [2514] = {.lex_state = 650}, - [2515] = {.lex_state = 657}, - [2516] = {.lex_state = 576}, - [2517] = {.lex_state = 2}, - [2518] = {.lex_state = 576}, - [2519] = {.lex_state = 576}, - [2520] = {.lex_state = 577}, - [2521] = {.lex_state = 576}, - [2522] = {.lex_state = 657}, - [2523] = {.lex_state = 657}, - [2524] = {.lex_state = 657}, - [2525] = {.lex_state = 59}, + [2495] = {.lex_state = 647}, + [2496] = {.lex_state = 58}, + [2497] = {.lex_state = 574}, + [2498] = {.lex_state = 574}, + [2499] = {.lex_state = 641}, + [2500] = {.lex_state = 2}, + [2501] = {.lex_state = 574}, + [2502] = {.lex_state = 574}, + [2503] = {.lex_state = 574}, + [2504] = {.lex_state = 573}, + [2505] = {.lex_state = 647}, + [2506] = {.lex_state = 574}, + [2507] = {.lex_state = 156, .external_lex_state = 2}, + [2508] = {.lex_state = 54}, + [2509] = {.lex_state = 156, .external_lex_state = 2}, + [2510] = {.lex_state = 647}, + [2511] = {.lex_state = 574}, + [2512] = {.lex_state = 574}, + [2513] = {.lex_state = 574}, + [2514] = {.lex_state = 574}, + [2515] = {.lex_state = 652}, + [2516] = {.lex_state = 647}, + [2517] = {.lex_state = 654}, + [2518] = {.lex_state = 647}, + [2519] = {.lex_state = 654}, + [2520] = {.lex_state = 2}, + [2521] = {.lex_state = 654}, + [2522] = {.lex_state = 654}, + [2523] = {.lex_state = 573}, + [2524] = {.lex_state = 654}, + [2525] = {.lex_state = 573}, [2526] = {.lex_state = 2}, - [2527] = {.lex_state = 657}, - [2528] = {.lex_state = 657}, - [2529] = {.lex_state = 650}, - [2530] = {.lex_state = 2}, - [2531] = {.lex_state = 650}, - [2532] = {.lex_state = 576}, - [2533] = {.lex_state = 657}, - [2534] = {.lex_state = 657}, - [2535] = {.lex_state = 657}, - [2536] = {.lex_state = 2}, - [2537] = {.lex_state = 577}, - [2538] = {.lex_state = 576}, - [2539] = {.lex_state = 576}, + [2527] = {.lex_state = 573}, + [2528] = {.lex_state = 654}, + [2529] = {.lex_state = 2}, + [2530] = {.lex_state = 647}, + [2531] = {.lex_state = 2}, + [2532] = {.lex_state = 2}, + [2533] = {.lex_state = 573}, + [2534] = {.lex_state = 573}, + [2535] = {.lex_state = 59}, + [2536] = {.lex_state = 573}, + [2537] = {.lex_state = 574}, + [2538] = {.lex_state = 573}, + [2539] = {.lex_state = 652}, [2540] = {.lex_state = 2}, - [2541] = {.lex_state = 2}, - [2542] = {.lex_state = 576}, - [2543] = {.lex_state = 654}, - [2544] = {.lex_state = 2}, - [2545] = {.lex_state = 576}, - [2546] = {.lex_state = 657}, - [2547] = {.lex_state = 577}, - [2548] = {.lex_state = 2}, - [2549] = {.lex_state = 576}, - [2550] = {.lex_state = 652}, - [2551] = {.lex_state = 576}, + [2541] = {.lex_state = 59}, + [2542] = {.lex_state = 573}, + [2543] = {.lex_state = 574}, + [2544] = {.lex_state = 654}, + [2545] = {.lex_state = 654}, + [2546] = {.lex_state = 651}, + [2547] = {.lex_state = 574}, + [2548] = {.lex_state = 654}, + [2549] = {.lex_state = 574}, + [2550] = {.lex_state = 573}, + [2551] = {.lex_state = 573}, [2552] = {.lex_state = 2}, - [2553] = {.lex_state = 576}, - [2554] = {.lex_state = 576}, - [2555] = {.lex_state = 655}, - [2556] = {.lex_state = 2}, - [2557] = {.lex_state = 576}, - [2558] = {.lex_state = 657}, - [2559] = {.lex_state = 650}, - [2560] = {.lex_state = 650}, - [2561] = {.lex_state = 2}, - [2562] = {.lex_state = 577}, - [2563] = {.lex_state = 577}, - [2564] = {.lex_state = 577}, - [2565] = {.lex_state = 650}, - [2566] = {.lex_state = 576}, - [2567] = {.lex_state = 577}, - [2568] = {.lex_state = 2}, - [2569] = {.lex_state = 657}, - [2570] = {.lex_state = 2}, - [2571] = {.lex_state = 657}, - [2572] = {.lex_state = 655}, - [2573] = {.lex_state = 576}, - [2574] = {.lex_state = 577}, + [2553] = {.lex_state = 574}, + [2554] = {.lex_state = 574}, + [2555] = {.lex_state = 573}, + [2556] = {.lex_state = 647}, + [2557] = {.lex_state = 574}, + [2558] = {.lex_state = 2}, + [2559] = {.lex_state = 573}, + [2560] = {.lex_state = 2}, + [2561] = {.lex_state = 574}, + [2562] = {.lex_state = 573}, + [2563] = {.lex_state = 2}, + [2564] = {.lex_state = 2}, + [2565] = {.lex_state = 649}, + [2566] = {.lex_state = 2}, + [2567] = {.lex_state = 573}, + [2568] = {.lex_state = 654}, + [2569] = {.lex_state = 573}, + [2570] = {.lex_state = 574}, + [2571] = {.lex_state = 654}, + [2572] = {.lex_state = 573}, + [2573] = {.lex_state = 647}, + [2574] = {.lex_state = 652}, [2575] = {.lex_state = 2}, - [2576] = {.lex_state = 577}, - [2577] = {.lex_state = 59}, - [2578] = {.lex_state = 577}, - [2579] = {.lex_state = 577}, - [2580] = {.lex_state = 577}, - [2581] = {.lex_state = 577}, - [2582] = {.lex_state = 652}, - [2583] = {.lex_state = 657}, - [2584] = {.lex_state = 2}, - [2585] = {.lex_state = 576}, - [2586] = {.lex_state = 656}, - [2587] = {.lex_state = 657}, - [2588] = {.lex_state = 60}, - [2589] = {.lex_state = 60}, - [2590] = {.lex_state = 112}, - [2591] = {.lex_state = 657}, - [2592] = {.lex_state = 2}, - [2593] = {.lex_state = 577}, - [2594] = {.lex_state = 576}, - [2595] = {.lex_state = 657}, - [2596] = {.lex_state = 640}, - [2597] = {.lex_state = 659}, - [2598] = {.lex_state = 640}, - [2599] = {.lex_state = 576}, - [2600] = {.lex_state = 657}, - [2601] = {.lex_state = 640}, - [2602] = {.lex_state = 576}, - [2603] = {.lex_state = 657}, - [2604] = {.lex_state = 640}, - [2605] = {.lex_state = 640}, - [2606] = {.lex_state = 640}, - [2607] = {.lex_state = 640}, - [2608] = {.lex_state = 640}, - [2609] = {.lex_state = 576}, - [2610] = {.lex_state = 60}, - [2611] = {.lex_state = 576}, - [2612] = {.lex_state = 60}, - [2613] = {.lex_state = 577}, - [2614] = {.lex_state = 657}, - [2615] = {.lex_state = 640}, - [2616] = {.lex_state = 2}, - [2617] = {.lex_state = 576}, - [2618] = {.lex_state = 657}, - [2619] = {.lex_state = 657}, - [2620] = {.lex_state = 657}, - [2621] = {.lex_state = 2}, - [2622] = {.lex_state = 640}, - [2623] = {.lex_state = 2}, - [2624] = {.lex_state = 2}, - [2625] = {.lex_state = 576}, - [2626] = {.lex_state = 657}, - [2627] = {.lex_state = 640}, - [2628] = {.lex_state = 576}, - [2629] = {.lex_state = 654}, - [2630] = {.lex_state = 576}, - [2631] = {.lex_state = 2}, - [2632] = {.lex_state = 577}, - [2633] = {.lex_state = 576}, - [2634] = {.lex_state = 576}, - [2635] = {.lex_state = 576}, - [2636] = {.lex_state = 576}, - [2637] = {.lex_state = 60}, - [2638] = {.lex_state = 656}, - [2639] = {.lex_state = 657}, - [2640] = {.lex_state = 576}, - [2641] = {.lex_state = 657}, - [2642] = {.lex_state = 657}, - [2643] = {.lex_state = 577}, - [2644] = {.lex_state = 640}, - [2645] = {.lex_state = 640}, - [2646] = {.lex_state = 577}, - [2647] = {.lex_state = 577}, - [2648] = {.lex_state = 577}, - [2649] = {.lex_state = 577}, - [2650] = {.lex_state = 577}, - [2651] = {.lex_state = 62}, - [2652] = {.lex_state = 577}, - [2653] = {.lex_state = 577}, - [2654] = {.lex_state = 577}, - [2655] = {.lex_state = 577}, - [2656] = {.lex_state = 577}, - [2657] = {.lex_state = 577}, - [2658] = {.lex_state = 577}, - [2659] = {.lex_state = 577}, - [2660] = {.lex_state = 577}, - [2661] = {.lex_state = 577}, - [2662] = {.lex_state = 577}, - [2663] = {.lex_state = 577}, - [2664] = {.lex_state = 577}, - [2665] = {.lex_state = 577}, - [2666] = {.lex_state = 577}, - [2667] = {.lex_state = 577}, - [2668] = {.lex_state = 577}, - [2669] = {.lex_state = 577}, - [2670] = {.lex_state = 577}, - [2671] = {.lex_state = 577}, - [2672] = {.lex_state = 577}, - [2673] = {.lex_state = 577}, - [2674] = {.lex_state = 577}, - [2675] = {.lex_state = 577}, - [2676] = {.lex_state = 577}, - [2677] = {.lex_state = 577}, - [2678] = {.lex_state = 577}, - [2679] = {.lex_state = 577}, - [2680] = {.lex_state = 577}, - [2681] = {.lex_state = 652}, - [2682] = {.lex_state = 640}, - [2683] = {.lex_state = 61}, - [2684] = {.lex_state = 577}, - [2685] = {.lex_state = 577}, - [2686] = {.lex_state = 577}, - [2687] = {.lex_state = 577}, - [2688] = {.lex_state = 577}, - [2689] = {.lex_state = 577}, - [2690] = {.lex_state = 577}, - [2691] = {.lex_state = 577}, - [2692] = {.lex_state = 577}, - [2693] = {.lex_state = 577}, - [2694] = {.lex_state = 577}, - [2695] = {.lex_state = 658}, - [2696] = {.lex_state = 656}, - [2697] = {.lex_state = 577}, - [2698] = {.lex_state = 577}, - [2699] = {.lex_state = 658}, - [2700] = {.lex_state = 577}, - [2701] = {.lex_state = 640}, - [2702] = {.lex_state = 577}, - [2703] = {.lex_state = 577}, - [2704] = {.lex_state = 640}, - [2705] = {.lex_state = 640}, - [2706] = {.lex_state = 640}, - [2707] = {.lex_state = 658}, - [2708] = {.lex_state = 658}, - [2709] = {.lex_state = 656}, - [2710] = {.lex_state = 658}, - [2711] = {.lex_state = 576}, - [2712] = {.lex_state = 577}, - [2713] = {.lex_state = 658}, - [2714] = {.lex_state = 577}, - [2715] = {.lex_state = 577}, - [2716] = {.lex_state = 658}, - [2717] = {.lex_state = 658}, - [2718] = {.lex_state = 577}, - [2719] = {.lex_state = 577}, - [2720] = {.lex_state = 577}, - [2721] = {.lex_state = 659}, - [2722] = {.lex_state = 658}, - [2723] = {.lex_state = 658}, - [2724] = {.lex_state = 577}, - [2725] = {.lex_state = 577}, - [2726] = {.lex_state = 577}, - [2727] = {.lex_state = 577}, - [2728] = {.lex_state = 640}, - [2729] = {.lex_state = 577}, - [2730] = {.lex_state = 577}, - [2731] = {.lex_state = 577}, - [2732] = {.lex_state = 577}, - [2733] = {.lex_state = 630}, - [2734] = {.lex_state = 630}, - [2735] = {.lex_state = 577}, - [2736] = {.lex_state = 630}, - [2737] = {.lex_state = 630}, - [2738] = {.lex_state = 577}, - [2739] = {.lex_state = 577}, - [2740] = {.lex_state = 577}, - [2741] = {.lex_state = 577}, - [2742] = {.lex_state = 577}, - [2743] = {.lex_state = 577}, - [2744] = {.lex_state = 577}, - [2745] = {.lex_state = 577}, - [2746] = {.lex_state = 577}, - [2747] = {.lex_state = 577}, - [2748] = {.lex_state = 577}, - [2749] = {.lex_state = 577}, - [2750] = {.lex_state = 577}, - [2751] = {.lex_state = 577}, - [2752] = {.lex_state = 577}, - [2753] = {.lex_state = 577}, - [2754] = {.lex_state = 577}, - [2755] = {.lex_state = 577}, - [2756] = {.lex_state = 640}, - [2757] = {.lex_state = 577}, - [2758] = {.lex_state = 577}, - [2759] = {.lex_state = 577}, - [2760] = {.lex_state = 576}, - [2761] = {.lex_state = 640}, - [2762] = {.lex_state = 630}, - [2763] = {.lex_state = 577}, - [2764] = {.lex_state = 658}, - [2765] = {.lex_state = 577}, - [2766] = {.lex_state = 577}, - [2767] = {.lex_state = 577}, - [2768] = {.lex_state = 658}, - [2769] = {.lex_state = 658}, - [2770] = {.lex_state = 577}, - [2771] = {.lex_state = 577}, - [2772] = {.lex_state = 577}, - [2773] = {.lex_state = 577}, - [2774] = {.lex_state = 577}, - [2775] = {.lex_state = 577}, - [2776] = {.lex_state = 577}, - [2777] = {.lex_state = 577}, - [2778] = {.lex_state = 577}, - [2779] = {.lex_state = 577}, - [2780] = {.lex_state = 577}, - [2781] = {.lex_state = 577}, - [2782] = {.lex_state = 577}, - [2783] = {.lex_state = 577}, - [2784] = {.lex_state = 640}, - [2785] = {.lex_state = 2}, - [2786] = {.lex_state = 577}, - [2787] = {.lex_state = 2}, - [2788] = {.lex_state = 577}, - [2789] = {.lex_state = 576}, - [2790] = {.lex_state = 576}, - [2791] = {.lex_state = 2}, - [2792] = {.lex_state = 2}, + [2576] = {.lex_state = 574}, + [2577] = {.lex_state = 574}, + [2578] = {.lex_state = 574}, + [2579] = {.lex_state = 574}, + [2580] = {.lex_state = 654}, + [2581] = {.lex_state = 2}, + [2582] = {.lex_state = 654}, + [2583] = {.lex_state = 573}, + [2584] = {.lex_state = 573}, + [2585] = {.lex_state = 654}, + [2586] = {.lex_state = 654}, + [2587] = {.lex_state = 654}, + [2588] = {.lex_state = 633}, + [2589] = {.lex_state = 654}, + [2590] = {.lex_state = 2}, + [2591] = {.lex_state = 573}, + [2592] = {.lex_state = 633}, + [2593] = {.lex_state = 2}, + [2594] = {.lex_state = 574}, + [2595] = {.lex_state = 574}, + [2596] = {.lex_state = 654}, + [2597] = {.lex_state = 2}, + [2598] = {.lex_state = 2}, + [2599] = {.lex_state = 2}, + [2600] = {.lex_state = 653}, + [2601] = {.lex_state = 651}, + [2602] = {.lex_state = 654}, + [2603] = {.lex_state = 573}, + [2604] = {.lex_state = 654}, + [2605] = {.lex_state = 633}, + [2606] = {.lex_state = 654}, + [2607] = {.lex_state = 574}, + [2608] = {.lex_state = 654}, + [2609] = {.lex_state = 653}, + [2610] = {.lex_state = 656}, + [2611] = {.lex_state = 573}, + [2612] = {.lex_state = 654}, + [2613] = {.lex_state = 573}, + [2614] = {.lex_state = 573}, + [2615] = {.lex_state = 633}, + [2616] = {.lex_state = 60}, + [2617] = {.lex_state = 633}, + [2618] = {.lex_state = 633}, + [2619] = {.lex_state = 633}, + [2620] = {.lex_state = 633}, + [2621] = {.lex_state = 633}, + [2622] = {.lex_state = 654}, + [2623] = {.lex_state = 112}, + [2624] = {.lex_state = 654}, + [2625] = {.lex_state = 573}, + [2626] = {.lex_state = 573}, + [2627] = {.lex_state = 2}, + [2628] = {.lex_state = 2}, + [2629] = {.lex_state = 60}, + [2630] = {.lex_state = 649}, + [2631] = {.lex_state = 60}, + [2632] = {.lex_state = 633}, + [2633] = {.lex_state = 654}, + [2634] = {.lex_state = 60}, + [2635] = {.lex_state = 60}, + [2636] = {.lex_state = 573}, + [2637] = {.lex_state = 573}, + [2638] = {.lex_state = 573}, + [2639] = {.lex_state = 654}, + [2640] = {.lex_state = 573}, + [2641] = {.lex_state = 573}, + [2642] = {.lex_state = 573}, + [2643] = {.lex_state = 633}, + [2644] = {.lex_state = 655}, + [2645] = {.lex_state = 574}, + [2646] = {.lex_state = 574}, + [2647] = {.lex_state = 574}, + [2648] = {.lex_state = 574}, + [2649] = {.lex_state = 574}, + [2650] = {.lex_state = 2}, + [2651] = {.lex_state = 574}, + [2652] = {.lex_state = 574}, + [2653] = {.lex_state = 627}, + [2654] = {.lex_state = 633}, + [2655] = {.lex_state = 656}, + [2656] = {.lex_state = 633}, + [2657] = {.lex_state = 633}, + [2658] = {.lex_state = 574}, + [2659] = {.lex_state = 574}, + [2660] = {.lex_state = 574}, + [2661] = {.lex_state = 574}, + [2662] = {.lex_state = 574}, + [2663] = {.lex_state = 574}, + [2664] = {.lex_state = 574}, + [2665] = {.lex_state = 633}, + [2666] = {.lex_state = 633}, + [2667] = {.lex_state = 633}, + [2668] = {.lex_state = 574}, + [2669] = {.lex_state = 574}, + [2670] = {.lex_state = 574}, + [2671] = {.lex_state = 574}, + [2672] = {.lex_state = 655}, + [2673] = {.lex_state = 574}, + [2674] = {.lex_state = 574}, + [2675] = {.lex_state = 574}, + [2676] = {.lex_state = 574}, + [2677] = {.lex_state = 574}, + [2678] = {.lex_state = 574}, + [2679] = {.lex_state = 574}, + [2680] = {.lex_state = 574}, + [2681] = {.lex_state = 627}, + [2682] = {.lex_state = 627}, + [2683] = {.lex_state = 574}, + [2684] = {.lex_state = 627}, + [2685] = {.lex_state = 627}, + [2686] = {.lex_state = 574}, + [2687] = {.lex_state = 574}, + [2688] = {.lex_state = 574}, + [2689] = {.lex_state = 574}, + [2690] = {.lex_state = 574}, + [2691] = {.lex_state = 574}, + [2692] = {.lex_state = 574}, + [2693] = {.lex_state = 574}, + [2694] = {.lex_state = 574}, + [2695] = {.lex_state = 574}, + [2696] = {.lex_state = 574}, + [2697] = {.lex_state = 574}, + [2698] = {.lex_state = 574}, + [2699] = {.lex_state = 574}, + [2700] = {.lex_state = 574}, + [2701] = {.lex_state = 574}, + [2702] = {.lex_state = 633}, + [2703] = {.lex_state = 655}, + [2704] = {.lex_state = 655}, + [2705] = {.lex_state = 574}, + [2706] = {.lex_state = 574}, + [2707] = {.lex_state = 655}, + [2708] = {.lex_state = 574}, + [2709] = {.lex_state = 574}, + [2710] = {.lex_state = 574}, + [2711] = {.lex_state = 574}, + [2712] = {.lex_state = 633}, + [2713] = {.lex_state = 655}, + [2714] = {.lex_state = 574}, + [2715] = {.lex_state = 62}, + [2716] = {.lex_state = 574}, + [2717] = {.lex_state = 574}, + [2718] = {.lex_state = 574}, + [2719] = {.lex_state = 574}, + [2720] = {.lex_state = 574}, + [2721] = {.lex_state = 574}, + [2722] = {.lex_state = 574}, + [2723] = {.lex_state = 574}, + [2724] = {.lex_state = 574}, + [2725] = {.lex_state = 574}, + [2726] = {.lex_state = 574}, + [2727] = {.lex_state = 574}, + [2728] = {.lex_state = 633}, + [2729] = {.lex_state = 574}, + [2730] = {.lex_state = 574}, + [2731] = {.lex_state = 574}, + [2732] = {.lex_state = 574}, + [2733] = {.lex_state = 574}, + [2734] = {.lex_state = 574}, + [2735] = {.lex_state = 574}, + [2736] = {.lex_state = 574}, + [2737] = {.lex_state = 574}, + [2738] = {.lex_state = 574}, + [2739] = {.lex_state = 574}, + [2740] = {.lex_state = 574}, + [2741] = {.lex_state = 574}, + [2742] = {.lex_state = 633}, + [2743] = {.lex_state = 574}, + [2744] = {.lex_state = 574}, + [2745] = {.lex_state = 574}, + [2746] = {.lex_state = 574}, + [2747] = {.lex_state = 574}, + [2748] = {.lex_state = 574}, + [2749] = {.lex_state = 574}, + [2750] = {.lex_state = 574}, + [2751] = {.lex_state = 574}, + [2752] = {.lex_state = 574}, + [2753] = {.lex_state = 574}, + [2754] = {.lex_state = 574}, + [2755] = {.lex_state = 649}, + [2756] = {.lex_state = 574}, + [2757] = {.lex_state = 61}, + [2758] = {.lex_state = 574}, + [2759] = {.lex_state = 574}, + [2760] = {.lex_state = 574}, + [2761] = {.lex_state = 573}, + [2762] = {.lex_state = 655}, + [2763] = {.lex_state = 653}, + [2764] = {.lex_state = 573}, + [2765] = {.lex_state = 574}, + [2766] = {.lex_state = 655}, + [2767] = {.lex_state = 574}, + [2768] = {.lex_state = 574}, + [2769] = {.lex_state = 633}, + [2770] = {.lex_state = 574}, + [2771] = {.lex_state = 574}, + [2772] = {.lex_state = 574}, + [2773] = {.lex_state = 574}, + [2774] = {.lex_state = 574}, + [2775] = {.lex_state = 574}, + [2776] = {.lex_state = 2}, + [2777] = {.lex_state = 574}, + [2778] = {.lex_state = 574}, + [2779] = {.lex_state = 574}, + [2780] = {.lex_state = 574}, + [2781] = {.lex_state = 574}, + [2782] = {.lex_state = 574}, + [2783] = {.lex_state = 654}, + [2784] = {.lex_state = 574}, + [2785] = {.lex_state = 574}, + [2786] = {.lex_state = 574}, + [2787] = {.lex_state = 573}, + [2788] = {.lex_state = 574}, + [2789] = {.lex_state = 574}, + [2790] = {.lex_state = 573}, + [2791] = {.lex_state = 574}, + [2792] = {.lex_state = 574}, [2793] = {.lex_state = 2}, [2794] = {.lex_state = 2}, [2795] = {.lex_state = 2}, [2796] = {.lex_state = 2}, - [2797] = {.lex_state = 577}, - [2798] = {.lex_state = 577}, - [2799] = {.lex_state = 577}, - [2800] = {.lex_state = 577}, - [2801] = {.lex_state = 577}, - [2802] = {.lex_state = 577}, - [2803] = {.lex_state = 577}, - [2804] = {.lex_state = 577}, - [2805] = {.lex_state = 577}, - [2806] = {.lex_state = 577}, - [2807] = {.lex_state = 577}, - [2808] = {.lex_state = 577}, - [2809] = {.lex_state = 577}, - [2810] = {.lex_state = 577}, - [2811] = {.lex_state = 577}, - [2812] = {.lex_state = 577}, - [2813] = {.lex_state = 577}, - [2814] = {.lex_state = 577}, - [2815] = {.lex_state = 657}, - [2816] = {.lex_state = 658}, - [2817] = {.lex_state = 658}, - [2818] = {.lex_state = 577}, - [2819] = {.lex_state = 658}, - [2820] = {.lex_state = 630}, - [2821] = {.lex_state = 2}, - [2822] = {.lex_state = 576}, - [2823] = {.lex_state = 577}, - [2824] = {.lex_state = 630}, + [2797] = {.lex_state = 2}, + [2798] = {.lex_state = 2}, + [2799] = {.lex_state = 574}, + [2800] = {.lex_state = 574}, + [2801] = {.lex_state = 655}, + [2802] = {.lex_state = 655}, + [2803] = {.lex_state = 653}, + [2804] = {.lex_state = 574}, + [2805] = {.lex_state = 574}, + [2806] = {.lex_state = 574}, + [2807] = {.lex_state = 655}, + [2808] = {.lex_state = 574}, + [2809] = {.lex_state = 574}, + [2810] = {.lex_state = 655}, + [2811] = {.lex_state = 655}, + [2812] = {.lex_state = 574}, + [2813] = {.lex_state = 574}, + [2814] = {.lex_state = 574}, + [2815] = {.lex_state = 574}, + [2816] = {.lex_state = 574}, + [2817] = {.lex_state = 655}, + [2818] = {.lex_state = 2}, + [2819] = {.lex_state = 649}, + [2820] = {.lex_state = 63}, + [2821] = {.lex_state = 112}, + [2822] = {.lex_state = 627}, + [2823] = {.lex_state = 573}, + [2824] = {.lex_state = 627}, [2825] = {.lex_state = 63}, [2826] = {.lex_state = 2}, - [2827] = {.lex_state = 577}, - [2828] = {.lex_state = 2}, - [2829] = {.lex_state = 112}, - [2830] = {.lex_state = 576}, - [2831] = {.lex_state = 577}, - [2832] = {.lex_state = 630}, - [2833] = {.lex_state = 576}, - [2834] = {.lex_state = 630}, - [2835] = {.lex_state = 112}, - [2836] = {.lex_state = 658}, - [2837] = {.lex_state = 658}, - [2838] = {.lex_state = 658}, - [2839] = {.lex_state = 624}, - [2840] = {.lex_state = 624}, - [2841] = {.lex_state = 577}, - [2842] = {.lex_state = 112}, - [2843] = {.lex_state = 2}, - [2844] = {.lex_state = 577}, - [2845] = {.lex_state = 577}, - [2846] = {.lex_state = 577}, - [2847] = {.lex_state = 2}, - [2848] = {.lex_state = 126, .external_lex_state = 2}, - [2849] = {.lex_state = 577}, - [2850] = {.lex_state = 577}, - [2851] = {.lex_state = 577}, + [2827] = {.lex_state = 2}, + [2828] = {.lex_state = 573}, + [2829] = {.lex_state = 2}, + [2830] = {.lex_state = 66}, + [2831] = {.lex_state = 2}, + [2832] = {.lex_state = 627}, + [2833] = {.lex_state = 573}, + [2834] = {.lex_state = 573}, + [2835] = {.lex_state = 574}, + [2836] = {.lex_state = 574}, + [2837] = {.lex_state = 655}, + [2838] = {.lex_state = 655}, + [2839] = {.lex_state = 2}, + [2840] = {.lex_state = 2}, + [2841] = {.lex_state = 2}, + [2842] = {.lex_state = 574}, + [2843] = {.lex_state = 573}, + [2844] = {.lex_state = 655}, + [2845] = {.lex_state = 71}, + [2846] = {.lex_state = 627}, + [2847] = {.lex_state = 574}, + [2848] = {.lex_state = 112}, + [2849] = {.lex_state = 655}, + [2850] = {.lex_state = 627}, + [2851] = {.lex_state = 573}, [2852] = {.lex_state = 2}, - [2853] = {.lex_state = 577}, - [2854] = {.lex_state = 577}, - [2855] = {.lex_state = 577}, - [2856] = {.lex_state = 577}, - [2857] = {.lex_state = 624}, - [2858] = {.lex_state = 577}, - [2859] = {.lex_state = 577}, - [2860] = {.lex_state = 577}, - [2861] = {.lex_state = 577}, - [2862] = {.lex_state = 577}, - [2863] = {.lex_state = 2}, - [2864] = {.lex_state = 577}, - [2865] = {.lex_state = 577}, - [2866] = {.lex_state = 2}, - [2867] = {.lex_state = 624}, + [2853] = {.lex_state = 621}, + [2854] = {.lex_state = 2}, + [2855] = {.lex_state = 574}, + [2856] = {.lex_state = 2}, + [2857] = {.lex_state = 2}, + [2858] = {.lex_state = 574}, + [2859] = {.lex_state = 2}, + [2860] = {.lex_state = 112}, + [2861] = {.lex_state = 574}, + [2862] = {.lex_state = 574}, + [2863] = {.lex_state = 655}, + [2864] = {.lex_state = 126, .external_lex_state = 2}, + [2865] = {.lex_state = 573}, + [2866] = {.lex_state = 574}, + [2867] = {.lex_state = 574}, [2868] = {.lex_state = 2}, - [2869] = {.lex_state = 112}, - [2870] = {.lex_state = 112}, - [2871] = {.lex_state = 2}, - [2872] = {.lex_state = 658}, - [2873] = {.lex_state = 658}, - [2874] = {.lex_state = 112}, - [2875] = {.lex_state = 658}, - [2876] = {.lex_state = 658}, - [2877] = {.lex_state = 630}, - [2878] = {.lex_state = 630}, + [2869] = {.lex_state = 2}, + [2870] = {.lex_state = 574}, + [2871] = {.lex_state = 655}, + [2872] = {.lex_state = 621}, + [2873] = {.lex_state = 2}, + [2874] = {.lex_state = 2}, + [2875] = {.lex_state = 574}, + [2876] = {.lex_state = 2}, + [2877] = {.lex_state = 574}, + [2878] = {.lex_state = 621}, [2879] = {.lex_state = 2}, - [2880] = {.lex_state = 2}, - [2881] = {.lex_state = 630}, - [2882] = {.lex_state = 652}, - [2883] = {.lex_state = 63}, - [2884] = {.lex_state = 2}, - [2885] = {.lex_state = 576}, - [2886] = {.lex_state = 2}, - [2887] = {.lex_state = 2}, - [2888] = {.lex_state = 658}, - [2889] = {.lex_state = 2}, - [2890] = {.lex_state = 577}, - [2891] = {.lex_state = 577}, - [2892] = {.lex_state = 66}, - [2893] = {.lex_state = 576}, - [2894] = {.lex_state = 658}, - [2895] = {.lex_state = 576}, - [2896] = {.lex_state = 658}, - [2897] = {.lex_state = 576}, - [2898] = {.lex_state = 71}, + [2880] = {.lex_state = 574}, + [2881] = {.lex_state = 655}, + [2882] = {.lex_state = 574}, + [2883] = {.lex_state = 112}, + [2884] = {.lex_state = 574}, + [2885] = {.lex_state = 574}, + [2886] = {.lex_state = 627}, + [2887] = {.lex_state = 574}, + [2888] = {.lex_state = 574}, + [2889] = {.lex_state = 574}, + [2890] = {.lex_state = 2}, + [2891] = {.lex_state = 573}, + [2892] = {.lex_state = 655}, + [2893] = {.lex_state = 627}, + [2894] = {.lex_state = 627}, + [2895] = {.lex_state = 655}, + [2896] = {.lex_state = 2}, + [2897] = {.lex_state = 574}, + [2898] = {.lex_state = 574}, [2899] = {.lex_state = 2}, - [2900] = {.lex_state = 2}, + [2900] = {.lex_state = 655}, [2901] = {.lex_state = 2}, - [2902] = {.lex_state = 2}, - [2903] = {.lex_state = 658}, - [2904] = {.lex_state = 630}, - [2905] = {.lex_state = 624}, + [2902] = {.lex_state = 573}, + [2903] = {.lex_state = 574}, + [2904] = {.lex_state = 573}, + [2905] = {.lex_state = 2}, [2906] = {.lex_state = 2}, - [2907] = {.lex_state = 576}, - [2908] = {.lex_state = 576}, - [2909] = {.lex_state = 2}, - [2910] = {.lex_state = 2}, - [2911] = {.lex_state = 576}, - [2912] = {.lex_state = 2}, + [2907] = {.lex_state = 655}, + [2908] = {.lex_state = 574}, + [2909] = {.lex_state = 112}, + [2910] = {.lex_state = 112}, + [2911] = {.lex_state = 655}, + [2912] = {.lex_state = 574}, [2913] = {.lex_state = 2}, - [2914] = {.lex_state = 2}, - [2915] = {.lex_state = 577}, - [2916] = {.lex_state = 2}, - [2917] = {.lex_state = 624}, - [2918] = {.lex_state = 577}, - [2919] = {.lex_state = 577}, - [2920] = {.lex_state = 624}, - [2921] = {.lex_state = 624}, - [2922] = {.lex_state = 576}, - [2923] = {.lex_state = 61}, - [2924] = {.lex_state = 2}, - [2925] = {.lex_state = 2}, - [2926] = {.lex_state = 624}, - [2927] = {.lex_state = 60}, + [2914] = {.lex_state = 621}, + [2915] = {.lex_state = 621}, + [2916] = {.lex_state = 655}, + [2917] = {.lex_state = 2}, + [2918] = {.lex_state = 64}, + [2919] = {.lex_state = 573}, + [2920] = {.lex_state = 621}, + [2921] = {.lex_state = 2}, + [2922] = {.lex_state = 574}, + [2923] = {.lex_state = 2}, + [2924] = {.lex_state = 621}, + [2925] = {.lex_state = 621}, + [2926] = {.lex_state = 621}, + [2927] = {.lex_state = 621}, [2928] = {.lex_state = 60}, - [2929] = {.lex_state = 624}, - [2930] = {.lex_state = 624}, - [2931] = {.lex_state = 624}, - [2932] = {.lex_state = 624}, - [2933] = {.lex_state = 624}, - [2934] = {.lex_state = 2}, - [2935] = {.lex_state = 630}, + [2929] = {.lex_state = 574}, + [2930] = {.lex_state = 64}, + [2931] = {.lex_state = 65}, + [2932] = {.lex_state = 621}, + [2933] = {.lex_state = 621}, + [2934] = {.lex_state = 621}, + [2935] = {.lex_state = 621}, [2936] = {.lex_state = 2}, - [2937] = {.lex_state = 577}, - [2938] = {.lex_state = 577}, - [2939] = {.lex_state = 577}, - [2940] = {.lex_state = 576}, - [2941] = {.lex_state = 66}, + [2937] = {.lex_state = 573}, + [2938] = {.lex_state = 621}, + [2939] = {.lex_state = 621}, + [2940] = {.lex_state = 621}, + [2941] = {.lex_state = 574}, [2942] = {.lex_state = 2}, [2943] = {.lex_state = 2}, - [2944] = {.lex_state = 577}, - [2945] = {.lex_state = 60}, - [2946] = {.lex_state = 577}, - [2947] = {.lex_state = 624}, + [2944] = {.lex_state = 627}, + [2945] = {.lex_state = 574}, + [2946] = {.lex_state = 2}, + [2947] = {.lex_state = 621}, [2948] = {.lex_state = 60}, - [2949] = {.lex_state = 190}, - [2950] = {.lex_state = 577}, - [2951] = {.lex_state = 2}, - [2952] = {.lex_state = 2}, - [2953] = {.lex_state = 577}, - [2954] = {.lex_state = 2}, - [2955] = {.lex_state = 624}, - [2956] = {.lex_state = 624}, - [2957] = {.lex_state = 624}, - [2958] = {.lex_state = 576}, - [2959] = {.lex_state = 576}, - [2960] = {.lex_state = 65}, - [2961] = {.lex_state = 60}, - [2962] = {.lex_state = 624}, - [2963] = {.lex_state = 577}, - [2964] = {.lex_state = 577}, - [2965] = {.lex_state = 576}, - [2966] = {.lex_state = 577}, - [2967] = {.lex_state = 624}, - [2968] = {.lex_state = 624}, - [2969] = {.lex_state = 60}, - [2970] = {.lex_state = 624}, - [2971] = {.lex_state = 624}, - [2972] = {.lex_state = 624}, - [2973] = {.lex_state = 624}, - [2974] = {.lex_state = 624}, - [2975] = {.lex_state = 624}, - [2976] = {.lex_state = 577}, - [2977] = {.lex_state = 624}, - [2978] = {.lex_state = 64}, - [2979] = {.lex_state = 624}, - [2980] = {.lex_state = 64}, - [2981] = {.lex_state = 624}, - [2982] = {.lex_state = 624}, - [2983] = {.lex_state = 64}, - [2984] = {.lex_state = 64}, - [2985] = {.lex_state = 624}, - [2986] = {.lex_state = 577}, - [2987] = {.lex_state = 624}, - [2988] = {.lex_state = 624}, - [2989] = {.lex_state = 64}, - [2990] = {.lex_state = 2}, - [2991] = {.lex_state = 64}, - [2992] = {.lex_state = 2}, - [2993] = {.lex_state = 64}, - [2994] = {.lex_state = 64}, - [2995] = {.lex_state = 64}, - [2996] = {.lex_state = 624}, - [2997] = {.lex_state = 624}, - [2998] = {.lex_state = 624}, - [2999] = {.lex_state = 67}, - [3000] = {.lex_state = 2}, - [3001] = {.lex_state = 658}, - [3002] = {.lex_state = 2}, - [3003] = {.lex_state = 624}, - [3004] = {.lex_state = 69}, - [3005] = {.lex_state = 624}, - [3006] = {.lex_state = 624}, - [3007] = {.lex_state = 64}, - [3008] = {.lex_state = 624}, - [3009] = {.lex_state = 624}, - [3010] = {.lex_state = 624}, - [3011] = {.lex_state = 624}, - [3012] = {.lex_state = 624}, - [3013] = {.lex_state = 624}, - [3014] = {.lex_state = 64}, - [3015] = {.lex_state = 64}, - [3016] = {.lex_state = 624}, - [3017] = {.lex_state = 624}, - [3018] = {.lex_state = 624}, - [3019] = {.lex_state = 624}, - [3020] = {.lex_state = 624}, - [3021] = {.lex_state = 624}, - [3022] = {.lex_state = 624}, - [3023] = {.lex_state = 624}, - [3024] = {.lex_state = 60}, - [3025] = {.lex_state = 624}, - [3026] = {.lex_state = 2}, - [3027] = {.lex_state = 624}, - [3028] = {.lex_state = 577}, - [3029] = {.lex_state = 577}, - [3030] = {.lex_state = 624}, - [3031] = {.lex_state = 624}, - [3032] = {.lex_state = 2}, - [3033] = {.lex_state = 624}, - [3034] = {.lex_state = 2}, - [3035] = {.lex_state = 2}, - [3036] = {.lex_state = 624}, - [3037] = {.lex_state = 624}, - [3038] = {.lex_state = 2}, - [3039] = {.lex_state = 69}, - [3040] = {.lex_state = 577}, - [3041] = {.lex_state = 577}, - [3042] = {.lex_state = 577}, - [3043] = {.lex_state = 624}, - [3044] = {.lex_state = 577}, - [3045] = {.lex_state = 630}, - [3046] = {.lex_state = 576}, - [3047] = {.lex_state = 577}, - [3048] = {.lex_state = 577}, - [3049] = {.lex_state = 624}, - [3050] = {.lex_state = 624}, - [3051] = {.lex_state = 624}, - [3052] = {.lex_state = 624}, - [3053] = {.lex_state = 2}, - [3054] = {.lex_state = 2}, - [3055] = {.lex_state = 64}, - [3056] = {.lex_state = 2}, - [3057] = {.lex_state = 577}, + [2949] = {.lex_state = 2}, + [2950] = {.lex_state = 621}, + [2951] = {.lex_state = 621}, + [2952] = {.lex_state = 60}, + [2953] = {.lex_state = 621}, + [2954] = {.lex_state = 574}, + [2955] = {.lex_state = 2}, + [2956] = {.lex_state = 60}, + [2957] = {.lex_state = 60}, + [2958] = {.lex_state = 2}, + [2959] = {.lex_state = 2}, + [2960] = {.lex_state = 2}, + [2961] = {.lex_state = 621}, + [2962] = {.lex_state = 621}, + [2963] = {.lex_state = 621}, + [2964] = {.lex_state = 2}, + [2965] = {.lex_state = 621}, + [2966] = {.lex_state = 69}, + [2967] = {.lex_state = 621}, + [2968] = {.lex_state = 2}, + [2969] = {.lex_state = 2}, + [2970] = {.lex_state = 621}, + [2971] = {.lex_state = 621}, + [2972] = {.lex_state = 574}, + [2973] = {.lex_state = 621}, + [2974] = {.lex_state = 621}, + [2975] = {.lex_state = 621}, + [2976] = {.lex_state = 621}, + [2977] = {.lex_state = 2}, + [2978] = {.lex_state = 61}, + [2979] = {.lex_state = 2}, + [2980] = {.lex_state = 574}, + [2981] = {.lex_state = 627}, + [2982] = {.lex_state = 621}, + [2983] = {.lex_state = 573}, + [2984] = {.lex_state = 574}, + [2985] = {.lex_state = 64}, + [2986] = {.lex_state = 574}, + [2987] = {.lex_state = 574}, + [2988] = {.lex_state = 621}, + [2989] = {.lex_state = 574}, + [2990] = {.lex_state = 574}, + [2991] = {.lex_state = 574}, + [2992] = {.lex_state = 621}, + [2993] = {.lex_state = 574}, + [2994] = {.lex_state = 621}, + [2995] = {.lex_state = 621}, + [2996] = {.lex_state = 574}, + [2997] = {.lex_state = 621}, + [2998] = {.lex_state = 621}, + [2999] = {.lex_state = 655}, + [3000] = {.lex_state = 621}, + [3001] = {.lex_state = 621}, + [3002] = {.lex_state = 60}, + [3003] = {.lex_state = 574}, + [3004] = {.lex_state = 621}, + [3005] = {.lex_state = 66}, + [3006] = {.lex_state = 2}, + [3007] = {.lex_state = 621}, + [3008] = {.lex_state = 621}, + [3009] = {.lex_state = 621}, + [3010] = {.lex_state = 621}, + [3011] = {.lex_state = 621}, + [3012] = {.lex_state = 574}, + [3013] = {.lex_state = 64}, + [3014] = {.lex_state = 621}, + [3015] = {.lex_state = 621}, + [3016] = {.lex_state = 64}, + [3017] = {.lex_state = 621}, + [3018] = {.lex_state = 621}, + [3019] = {.lex_state = 2}, + [3020] = {.lex_state = 573}, + [3021] = {.lex_state = 573}, + [3022] = {.lex_state = 621}, + [3023] = {.lex_state = 574}, + [3024] = {.lex_state = 574}, + [3025] = {.lex_state = 64}, + [3026] = {.lex_state = 64}, + [3027] = {.lex_state = 621}, + [3028] = {.lex_state = 621}, + [3029] = {.lex_state = 621}, + [3030] = {.lex_state = 64}, + [3031] = {.lex_state = 621}, + [3032] = {.lex_state = 574}, + [3033] = {.lex_state = 574}, + [3034] = {.lex_state = 621}, + [3035] = {.lex_state = 573}, + [3036] = {.lex_state = 574}, + [3037] = {.lex_state = 621}, + [3038] = {.lex_state = 621}, + [3039] = {.lex_state = 621}, + [3040] = {.lex_state = 48, .external_lex_state = 2}, + [3041] = {.lex_state = 621}, + [3042] = {.lex_state = 621}, + [3043] = {.lex_state = 621}, + [3044] = {.lex_state = 64}, + [3045] = {.lex_state = 621}, + [3046] = {.lex_state = 621}, + [3047] = {.lex_state = 69}, + [3048] = {.lex_state = 64}, + [3049] = {.lex_state = 621}, + [3050] = {.lex_state = 621}, + [3051] = {.lex_state = 621}, + [3052] = {.lex_state = 64}, + [3053] = {.lex_state = 621}, + [3054] = {.lex_state = 621}, + [3055] = {.lex_state = 621}, + [3056] = {.lex_state = 64}, + [3057] = {.lex_state = 574}, [3058] = {.lex_state = 2}, - [3059] = {.lex_state = 624}, - [3060] = {.lex_state = 624}, + [3059] = {.lex_state = 621}, + [3060] = {.lex_state = 574}, [3061] = {.lex_state = 2}, [3062] = {.lex_state = 2}, - [3063] = {.lex_state = 624}, - [3064] = {.lex_state = 630}, - [3065] = {.lex_state = 48, .external_lex_state = 2}, - [3066] = {.lex_state = 624}, - [3067] = {.lex_state = 624}, + [3063] = {.lex_state = 627}, + [3064] = {.lex_state = 67}, + [3065] = {.lex_state = 621}, + [3066] = {.lex_state = 2}, + [3067] = {.lex_state = 60}, [3068] = {.lex_state = 2}, - [3069] = {.lex_state = 577}, - [3070] = {.lex_state = 624}, - [3071] = {.lex_state = 577}, - [3072] = {.lex_state = 2}, - [3073] = {.lex_state = 624}, - [3074] = {.lex_state = 624}, - [3075] = {.lex_state = 66}, - [3076] = {.lex_state = 577}, - [3077] = {.lex_state = 2}, - [3078] = {.lex_state = 624}, - [3079] = {.lex_state = 577}, - [3080] = {.lex_state = 184}, - [3081] = {.lex_state = 624}, - [3082] = {.lex_state = 66}, - [3083] = {.lex_state = 2}, - [3084] = {.lex_state = 624}, - [3085] = {.lex_state = 624}, - [3086] = {.lex_state = 624}, - [3087] = {.lex_state = 577}, - [3088] = {.lex_state = 2}, - [3089] = {.lex_state = 624}, - [3090] = {.lex_state = 68}, - [3091] = {.lex_state = 624}, - [3092] = {.lex_state = 624}, - [3093] = {.lex_state = 2}, - [3094] = {.lex_state = 624}, - [3095] = {.lex_state = 2}, - [3096] = {.lex_state = 577}, - [3097] = {.lex_state = 624}, - [3098] = {.lex_state = 624}, - [3099] = {.lex_state = 187}, - [3100] = {.lex_state = 577}, - [3101] = {.lex_state = 624}, - [3102] = {.lex_state = 577}, - [3103] = {.lex_state = 624}, - [3104] = {.lex_state = 48, .external_lex_state = 2}, - [3105] = {.lex_state = 2}, - [3106] = {.lex_state = 577}, - [3107] = {.lex_state = 624}, - [3108] = {.lex_state = 630}, - [3109] = {.lex_state = 577}, - [3110] = {.lex_state = 624}, - [3111] = {.lex_state = 624}, - [3112] = {.lex_state = 624}, - [3113] = {.lex_state = 577}, - [3114] = {.lex_state = 577}, - [3115] = {.lex_state = 577}, - [3116] = {.lex_state = 2}, - [3117] = {.lex_state = 71}, - [3118] = {.lex_state = 577}, - [3119] = {.lex_state = 190}, - [3120] = {.lex_state = 2}, - [3121] = {.lex_state = 624}, - [3122] = {.lex_state = 624}, - [3123] = {.lex_state = 624}, - [3124] = {.lex_state = 624}, - [3125] = {.lex_state = 624}, - [3126] = {.lex_state = 624}, - [3127] = {.lex_state = 68}, - [3128] = {.lex_state = 64}, - [3129] = {.lex_state = 60}, - [3130] = {.lex_state = 624}, - [3131] = {.lex_state = 2}, - [3132] = {.lex_state = 624}, - [3133] = {.lex_state = 624}, - [3134] = {.lex_state = 577}, - [3135] = {.lex_state = 624}, - [3136] = {.lex_state = 577}, - [3137] = {.lex_state = 2}, - [3138] = {.lex_state = 624}, - [3139] = {.lex_state = 2}, + [3069] = {.lex_state = 621}, + [3070] = {.lex_state = 64}, + [3071] = {.lex_state = 574}, + [3072] = {.lex_state = 190}, + [3073] = {.lex_state = 2}, + [3074] = {.lex_state = 2}, + [3075] = {.lex_state = 2}, + [3076] = {.lex_state = 621}, + [3077] = {.lex_state = 621}, + [3078] = {.lex_state = 621}, + [3079] = {.lex_state = 621}, + [3080] = {.lex_state = 621}, + [3081] = {.lex_state = 621}, + [3082] = {.lex_state = 621}, + [3083] = {.lex_state = 621}, + [3084] = {.lex_state = 187}, + [3085] = {.lex_state = 621}, + [3086] = {.lex_state = 621}, + [3087] = {.lex_state = 574}, + [3088] = {.lex_state = 621}, + [3089] = {.lex_state = 621}, + [3090] = {.lex_state = 621}, + [3091] = {.lex_state = 621}, + [3092] = {.lex_state = 621}, + [3093] = {.lex_state = 621}, + [3094] = {.lex_state = 621}, + [3095] = {.lex_state = 621}, + [3096] = {.lex_state = 621}, + [3097] = {.lex_state = 574}, + [3098] = {.lex_state = 574}, + [3099] = {.lex_state = 574}, + [3100] = {.lex_state = 574}, + [3101] = {.lex_state = 574}, + [3102] = {.lex_state = 621}, + [3103] = {.lex_state = 621}, + [3104] = {.lex_state = 60}, + [3105] = {.lex_state = 66}, + [3106] = {.lex_state = 621}, + [3107] = {.lex_state = 621}, + [3108] = {.lex_state = 621}, + [3109] = {.lex_state = 621}, + [3110] = {.lex_state = 621}, + [3111] = {.lex_state = 621}, + [3112] = {.lex_state = 70}, + [3113] = {.lex_state = 66}, + [3114] = {.lex_state = 66}, + [3115] = {.lex_state = 66}, + [3116] = {.lex_state = 574}, + [3117] = {.lex_state = 621}, + [3118] = {.lex_state = 621}, + [3119] = {.lex_state = 574}, + [3120] = {.lex_state = 574}, + [3121] = {.lex_state = 621}, + [3122] = {.lex_state = 70}, + [3123] = {.lex_state = 574}, + [3124] = {.lex_state = 574}, + [3125] = {.lex_state = 574}, + [3126] = {.lex_state = 574}, + [3127] = {.lex_state = 2}, + [3128] = {.lex_state = 574}, + [3129] = {.lex_state = 621}, + [3130] = {.lex_state = 627}, + [3131] = {.lex_state = 621}, + [3132] = {.lex_state = 621}, + [3133] = {.lex_state = 574}, + [3134] = {.lex_state = 621}, + [3135] = {.lex_state = 184}, + [3136] = {.lex_state = 2}, + [3137] = {.lex_state = 574}, + [3138] = {.lex_state = 574}, + [3139] = {.lex_state = 574}, [3140] = {.lex_state = 2}, - [3141] = {.lex_state = 624}, + [3141] = {.lex_state = 2}, [3142] = {.lex_state = 2}, - [3143] = {.lex_state = 624}, + [3143] = {.lex_state = 190}, [3144] = {.lex_state = 2}, - [3145] = {.lex_state = 577}, - [3146] = {.lex_state = 577}, - [3147] = {.lex_state = 624}, - [3148] = {.lex_state = 624}, - [3149] = {.lex_state = 70}, - [3150] = {.lex_state = 624}, + [3145] = {.lex_state = 621}, + [3146] = {.lex_state = 68}, + [3147] = {.lex_state = 621}, + [3148] = {.lex_state = 621}, + [3149] = {.lex_state = 621}, + [3150] = {.lex_state = 574}, [3151] = {.lex_state = 2}, - [3152] = {.lex_state = 624}, - [3153] = {.lex_state = 624}, - [3154] = {.lex_state = 66}, - [3155] = {.lex_state = 624}, - [3156] = {.lex_state = 624}, - [3157] = {.lex_state = 60}, + [3152] = {.lex_state = 621}, + [3153] = {.lex_state = 574}, + [3154] = {.lex_state = 2}, + [3155] = {.lex_state = 2}, + [3156] = {.lex_state = 68}, + [3157] = {.lex_state = 2}, [3158] = {.lex_state = 2}, - [3159] = {.lex_state = 577}, - [3160] = {.lex_state = 66}, - [3161] = {.lex_state = 577}, - [3162] = {.lex_state = 624}, - [3163] = {.lex_state = 624}, - [3164] = {.lex_state = 70}, - [3165] = {.lex_state = 624}, - [3166] = {.lex_state = 624}, - [3167] = {.lex_state = 577}, - [3168] = {.lex_state = 624}, - [3169] = {.lex_state = 577}, - [3170] = {.lex_state = 624}, - [3171] = {.lex_state = 2}, - [3172] = {.lex_state = 2}, - [3173] = {.lex_state = 577}, - [3174] = {.lex_state = 2}, - [3175] = {.lex_state = 187}, - [3176] = {.lex_state = 624}, - [3177] = {.lex_state = 624}, - [3178] = {.lex_state = 188}, - [3179] = {.lex_state = 2}, - [3180] = {.lex_state = 624}, - [3181] = {.lex_state = 624}, - [3182] = {.lex_state = 624}, - [3183] = {.lex_state = 577}, - [3184] = {.lex_state = 577}, - [3185] = {.lex_state = 577}, - [3186] = {.lex_state = 577}, - [3187] = {.lex_state = 577}, - [3188] = {.lex_state = 577}, - [3189] = {.lex_state = 577}, - [3190] = {.lex_state = 577}, - [3191] = {.lex_state = 577}, - [3192] = {.lex_state = 577}, - [3193] = {.lex_state = 577}, - [3194] = {.lex_state = 577}, - [3195] = {.lex_state = 624}, - [3196] = {.lex_state = 624}, - [3197] = {.lex_state = 624}, - [3198] = {.lex_state = 2}, - [3199] = {.lex_state = 624}, - [3200] = {.lex_state = 184}, - [3201] = {.lex_state = 624}, - [3202] = {.lex_state = 2}, - [3203] = {.lex_state = 624}, - [3204] = {.lex_state = 624}, - [3205] = {.lex_state = 624}, - [3206] = {.lex_state = 624}, - [3207] = {.lex_state = 577}, - [3208] = {.lex_state = 624}, - [3209] = {.lex_state = 577}, - [3210] = {.lex_state = 624}, - [3211] = {.lex_state = 577}, - [3212] = {.lex_state = 624}, - [3213] = {.lex_state = 624}, - [3214] = {.lex_state = 577}, - [3215] = {.lex_state = 577}, - [3216] = {.lex_state = 2129}, - [3217] = {.lex_state = 577}, - [3218] = {.lex_state = 577}, - [3219] = {.lex_state = 2}, - [3220] = {.lex_state = 2}, + [3159] = {.lex_state = 2}, + [3160] = {.lex_state = 2}, + [3161] = {.lex_state = 2}, + [3162] = {.lex_state = 621}, + [3163] = {.lex_state = 2}, + [3164] = {.lex_state = 71}, + [3165] = {.lex_state = 2}, + [3166] = {.lex_state = 574}, + [3167] = {.lex_state = 621}, + [3168] = {.lex_state = 188}, + [3169] = {.lex_state = 621}, + [3170] = {.lex_state = 621}, + [3171] = {.lex_state = 64}, + [3172] = {.lex_state = 60}, + [3173] = {.lex_state = 574}, + [3174] = {.lex_state = 621}, + [3175] = {.lex_state = 621}, + [3176] = {.lex_state = 621}, + [3177] = {.lex_state = 621}, + [3178] = {.lex_state = 574}, + [3179] = {.lex_state = 48, .external_lex_state = 2}, + [3180] = {.lex_state = 184}, + [3181] = {.lex_state = 621}, + [3182] = {.lex_state = 2}, + [3183] = {.lex_state = 621}, + [3184] = {.lex_state = 574}, + [3185] = {.lex_state = 2}, + [3186] = {.lex_state = 187}, + [3187] = {.lex_state = 621}, + [3188] = {.lex_state = 621}, + [3189] = {.lex_state = 621}, + [3190] = {.lex_state = 621}, + [3191] = {.lex_state = 621}, + [3192] = {.lex_state = 574}, + [3193] = {.lex_state = 574}, + [3194] = {.lex_state = 574}, + [3195] = {.lex_state = 574}, + [3196] = {.lex_state = 574}, + [3197] = {.lex_state = 574}, + [3198] = {.lex_state = 574}, + [3199] = {.lex_state = 574}, + [3200] = {.lex_state = 574}, + [3201] = {.lex_state = 574}, + [3202] = {.lex_state = 574}, + [3203] = {.lex_state = 574}, + [3204] = {.lex_state = 621}, + [3205] = {.lex_state = 2}, + [3206] = {.lex_state = 621}, + [3207] = {.lex_state = 621}, + [3208] = {.lex_state = 621}, + [3209] = {.lex_state = 621}, + [3210] = {.lex_state = 2}, + [3211] = {.lex_state = 2}, + [3212] = {.lex_state = 2}, + [3213] = {.lex_state = 621}, + [3214] = {.lex_state = 621}, + [3215] = {.lex_state = 574}, + [3216] = {.lex_state = 2}, + [3217] = {.lex_state = 574}, + [3218] = {.lex_state = 574}, + [3219] = {.lex_state = 186}, + [3220] = {.lex_state = 190}, [3221] = {.lex_state = 2}, - [3222] = {.lex_state = 577}, - [3223] = {.lex_state = 577}, - [3224] = {.lex_state = 577}, - [3225] = {.lex_state = 577}, - [3226] = {.lex_state = 2}, - [3227] = {.lex_state = 577}, - [3228] = {.lex_state = 577}, - [3229] = {.lex_state = 577}, - [3230] = {.lex_state = 577}, - [3231] = {.lex_state = 2}, - [3232] = {.lex_state = 577}, - [3233] = {.lex_state = 2}, - [3234] = {.lex_state = 2}, - [3235] = {.lex_state = 190}, - [3236] = {.lex_state = 190}, - [3237] = {.lex_state = 190}, - [3238] = {.lex_state = 630}, - [3239] = {.lex_state = 2}, - [3240] = {.lex_state = 630}, - [3241] = {.lex_state = 2}, - [3242] = {.lex_state = 2}, - [3243] = {.lex_state = 2}, - [3244] = {.lex_state = 2}, - [3245] = {.lex_state = 577}, - [3246] = {.lex_state = 577}, - [3247] = {.lex_state = 577}, - [3248] = {.lex_state = 94}, - [3249] = {.lex_state = 577}, - [3250] = {.lex_state = 577}, - [3251] = {.lex_state = 2}, - [3252] = {.lex_state = 577}, - [3253] = {.lex_state = 98}, + [3222] = {.lex_state = 574}, + [3223] = {.lex_state = 574}, + [3224] = {.lex_state = 2}, + [3225] = {.lex_state = 574}, + [3226] = {.lex_state = 574}, + [3227] = {.lex_state = 574}, + [3228] = {.lex_state = 2}, + [3229] = {.lex_state = 185}, + [3230] = {.lex_state = 574}, + [3231] = {.lex_state = 574}, + [3232] = {.lex_state = 574}, + [3233] = {.lex_state = 574}, + [3234] = {.lex_state = 574}, + [3235] = {.lex_state = 203}, + [3236] = {.lex_state = 183}, + [3237] = {.lex_state = 2}, + [3238] = {.lex_state = 574}, + [3239] = {.lex_state = 574}, + [3240] = {.lex_state = 574}, + [3241] = {.lex_state = 190}, + [3242] = {.lex_state = 574}, + [3243] = {.lex_state = 574}, + [3244] = {.lex_state = 574}, + [3245] = {.lex_state = 574}, + [3246] = {.lex_state = 574}, + [3247] = {.lex_state = 2}, + [3248] = {.lex_state = 190}, + [3249] = {.lex_state = 77}, + [3250] = {.lex_state = 574}, + [3251] = {.lex_state = 574}, + [3252] = {.lex_state = 574}, + [3253] = {.lex_state = 574}, [3254] = {.lex_state = 2}, - [3255] = {.lex_state = 577}, - [3256] = {.lex_state = 2}, - [3257] = {.lex_state = 577}, - [3258] = {.lex_state = 577}, - [3259] = {.lex_state = 577}, - [3260] = {.lex_state = 2}, - [3261] = {.lex_state = 577}, - [3262] = {.lex_state = 577}, - [3263] = {.lex_state = 577}, - [3264] = {.lex_state = 630}, - [3265] = {.lex_state = 577}, - [3266] = {.lex_state = 577}, - [3267] = {.lex_state = 77}, - [3268] = {.lex_state = 130}, - [3269] = {.lex_state = 2}, - [3270] = {.lex_state = 79}, + [3255] = {.lex_state = 2}, + [3256] = {.lex_state = 574}, + [3257] = {.lex_state = 574}, + [3258] = {.lex_state = 574}, + [3259] = {.lex_state = 574}, + [3260] = {.lex_state = 2126}, + [3261] = {.lex_state = 2}, + [3262] = {.lex_state = 574}, + [3263] = {.lex_state = 574}, + [3264] = {.lex_state = 574}, + [3265] = {.lex_state = 574}, + [3266] = {.lex_state = 574}, + [3267] = {.lex_state = 574}, + [3268] = {.lex_state = 574}, + [3269] = {.lex_state = 574}, + [3270] = {.lex_state = 184}, [3271] = {.lex_state = 2}, - [3272] = {.lex_state = 577}, - [3273] = {.lex_state = 185}, - [3274] = {.lex_state = 2}, - [3275] = {.lex_state = 2}, - [3276] = {.lex_state = 195}, - [3277] = {.lex_state = 190}, - [3278] = {.lex_state = 577}, + [3272] = {.lex_state = 2126}, + [3273] = {.lex_state = 574}, + [3274] = {.lex_state = 98}, + [3275] = {.lex_state = 185}, + [3276] = {.lex_state = 574}, + [3277] = {.lex_state = 574}, + [3278] = {.lex_state = 574}, [3279] = {.lex_state = 2}, - [3280] = {.lex_state = 577}, - [3281] = {.lex_state = 577}, - [3282] = {.lex_state = 577}, - [3283] = {.lex_state = 577}, - [3284] = {.lex_state = 2}, - [3285] = {.lex_state = 2}, - [3286] = {.lex_state = 185}, - [3287] = {.lex_state = 577}, - [3288] = {.lex_state = 577}, - [3289] = {.lex_state = 577}, - [3290] = {.lex_state = 2}, - [3291] = {.lex_state = 577}, - [3292] = {.lex_state = 630}, - [3293] = {.lex_state = 124}, - [3294] = {.lex_state = 577}, - [3295] = {.lex_state = 577}, - [3296] = {.lex_state = 577}, - [3297] = {.lex_state = 577}, - [3298] = {.lex_state = 203}, - [3299] = {.lex_state = 577}, - [3300] = {.lex_state = 2}, - [3301] = {.lex_state = 577}, - [3302] = {.lex_state = 577}, - [3303] = {.lex_state = 577}, + [3280] = {.lex_state = 190}, + [3281] = {.lex_state = 574}, + [3282] = {.lex_state = 627}, + [3283] = {.lex_state = 574}, + [3284] = {.lex_state = 574}, + [3285] = {.lex_state = 574}, + [3286] = {.lex_state = 574}, + [3287] = {.lex_state = 574}, + [3288] = {.lex_state = 574}, + [3289] = {.lex_state = 574}, + [3290] = {.lex_state = 574}, + [3291] = {.lex_state = 2}, + [3292] = {.lex_state = 574}, + [3293] = {.lex_state = 574}, + [3294] = {.lex_state = 574}, + [3295] = {.lex_state = 574}, + [3296] = {.lex_state = 574}, + [3297] = {.lex_state = 79}, + [3298] = {.lex_state = 574}, + [3299] = {.lex_state = 574}, + [3300] = {.lex_state = 574}, + [3301] = {.lex_state = 574}, + [3302] = {.lex_state = 186}, + [3303] = {.lex_state = 190}, [3304] = {.lex_state = 2}, - [3305] = {.lex_state = 2}, - [3306] = {.lex_state = 2}, - [3307] = {.lex_state = 577}, - [3308] = {.lex_state = 577}, - [3309] = {.lex_state = 577}, - [3310] = {.lex_state = 577}, - [3311] = {.lex_state = 577}, - [3312] = {.lex_state = 577}, - [3313] = {.lex_state = 577}, + [3305] = {.lex_state = 574}, + [3306] = {.lex_state = 574}, + [3307] = {.lex_state = 574}, + [3308] = {.lex_state = 574}, + [3309] = {.lex_state = 574}, + [3310] = {.lex_state = 574}, + [3311] = {.lex_state = 574}, + [3312] = {.lex_state = 574}, + [3313] = {.lex_state = 574}, [3314] = {.lex_state = 2}, - [3315] = {.lex_state = 577}, - [3316] = {.lex_state = 577}, - [3317] = {.lex_state = 577}, - [3318] = {.lex_state = 577}, - [3319] = {.lex_state = 577}, - [3320] = {.lex_state = 577}, - [3321] = {.lex_state = 577}, - [3322] = {.lex_state = 577}, - [3323] = {.lex_state = 577}, - [3324] = {.lex_state = 577}, - [3325] = {.lex_state = 577}, - [3326] = {.lex_state = 577}, - [3327] = {.lex_state = 577}, + [3315] = {.lex_state = 195}, + [3316] = {.lex_state = 574}, + [3317] = {.lex_state = 124}, + [3318] = {.lex_state = 130}, + [3319] = {.lex_state = 574}, + [3320] = {.lex_state = 574}, + [3321] = {.lex_state = 196}, + [3322] = {.lex_state = 204}, + [3323] = {.lex_state = 574}, + [3324] = {.lex_state = 574}, + [3325] = {.lex_state = 2}, + [3326] = {.lex_state = 2}, + [3327] = {.lex_state = 2}, [3328] = {.lex_state = 2}, - [3329] = {.lex_state = 577}, - [3330] = {.lex_state = 577}, - [3331] = {.lex_state = 183}, - [3332] = {.lex_state = 577}, - [3333] = {.lex_state = 577}, - [3334] = {.lex_state = 577}, - [3335] = {.lex_state = 190}, - [3336] = {.lex_state = 190}, + [3329] = {.lex_state = 190}, + [3330] = {.lex_state = 2}, + [3331] = {.lex_state = 2}, + [3332] = {.lex_state = 2}, + [3333] = {.lex_state = 190}, + [3334] = {.lex_state = 627}, + [3335] = {.lex_state = 627}, + [3336] = {.lex_state = 627}, [3337] = {.lex_state = 190}, - [3338] = {.lex_state = 190}, - [3339] = {.lex_state = 2129}, - [3340] = {.lex_state = 577}, - [3341] = {.lex_state = 577}, - [3342] = {.lex_state = 186}, + [3338] = {.lex_state = 574}, + [3339] = {.lex_state = 574}, + [3340] = {.lex_state = 2}, + [3341] = {.lex_state = 574}, + [3342] = {.lex_state = 2}, [3343] = {.lex_state = 2}, - [3344] = {.lex_state = 184}, + [3344] = {.lex_state = 2}, [3345] = {.lex_state = 2}, - [3346] = {.lex_state = 577}, + [3346] = {.lex_state = 2}, [3347] = {.lex_state = 2}, - [3348] = {.lex_state = 196}, - [3349] = {.lex_state = 577}, - [3350] = {.lex_state = 204}, + [3348] = {.lex_state = 2}, + [3349] = {.lex_state = 2}, + [3350] = {.lex_state = 2}, [3351] = {.lex_state = 2}, - [3352] = {.lex_state = 577}, - [3353] = {.lex_state = 186}, - [3354] = {.lex_state = 577}, - [3355] = {.lex_state = 611}, - [3356] = {.lex_state = 2}, - [3357] = {.lex_state = 208}, - [3358] = {.lex_state = 80}, - [3359] = {.lex_state = 611}, - [3360] = {.lex_state = 205}, - [3361] = {.lex_state = 189}, - [3362] = {.lex_state = 95}, - [3363] = {.lex_state = 2}, - [3364] = {.lex_state = 234}, - [3365] = {.lex_state = 577}, - [3366] = {.lex_state = 81}, - [3367] = {.lex_state = 2}, - [3368] = {.lex_state = 100}, - [3369] = {.lex_state = 124}, - [3370] = {.lex_state = 205}, - [3371] = {.lex_state = 2}, + [3352] = {.lex_state = 94}, + [3353] = {.lex_state = 2}, + [3354] = {.lex_state = 2}, + [3355] = {.lex_state = 574}, + [3356] = {.lex_state = 608}, + [3357] = {.lex_state = 205}, + [3358] = {.lex_state = 189}, + [3359] = {.lex_state = 2}, + [3360] = {.lex_state = 2}, + [3361] = {.lex_state = 234}, + [3362] = {.lex_state = 130}, + [3363] = {.lex_state = 95}, + [3364] = {.lex_state = 2}, + [3365] = {.lex_state = 99}, + [3366] = {.lex_state = 190}, + [3367] = {.lex_state = 235}, + [3368] = {.lex_state = 608}, + [3369] = {.lex_state = 2}, + [3370] = {.lex_state = 189}, + [3371] = {.lex_state = 608}, [3372] = {.lex_state = 130}, - [3373] = {.lex_state = 100}, + [3373] = {.lex_state = 130}, [3374] = {.lex_state = 2}, - [3375] = {.lex_state = 581}, - [3376] = {.lex_state = 130}, - [3377] = {.lex_state = 130}, - [3378] = {.lex_state = 124}, + [3375] = {.lex_state = 574}, + [3376] = {.lex_state = 80}, + [3377] = {.lex_state = 608}, + [3378] = {.lex_state = 130}, [3379] = {.lex_state = 130}, - [3380] = {.lex_state = 124}, - [3381] = {.lex_state = 611}, - [3382] = {.lex_state = 130}, - [3383] = {.lex_state = 130}, - [3384] = {.lex_state = 2}, - [3385] = {.lex_state = 189}, - [3386] = {.lex_state = 124}, - [3387] = {.lex_state = 190}, - [3388] = {.lex_state = 80}, - [3389] = {.lex_state = 190}, - [3390] = {.lex_state = 99}, - [3391] = {.lex_state = 2}, + [3380] = {.lex_state = 205}, + [3381] = {.lex_state = 130}, + [3382] = {.lex_state = 124}, + [3383] = {.lex_state = 578}, + [3384] = {.lex_state = 190}, + [3385] = {.lex_state = 124}, + [3386] = {.lex_state = 2}, + [3387] = {.lex_state = 124}, + [3388] = {.lex_state = 124}, + [3389] = {.lex_state = 2}, + [3390] = {.lex_state = 206}, + [3391] = {.lex_state = 208}, [3392] = {.lex_state = 197}, - [3393] = {.lex_state = 611}, - [3394] = {.lex_state = 2}, - [3395] = {.lex_state = 577}, - [3396] = {.lex_state = 611}, - [3397] = {.lex_state = 219}, - [3398] = {.lex_state = 206}, - [3399] = {.lex_state = 206}, - [3400] = {.lex_state = 235}, - [3401] = {.lex_state = 2130}, - [3402] = {.lex_state = 1727, .external_lex_state = 2}, - [3403] = {.lex_state = 1727, .external_lex_state = 2}, - [3404] = {.lex_state = 1727, .external_lex_state = 2}, - [3405] = {.lex_state = 2071}, - [3406] = {.lex_state = 2071}, - [3407] = {.lex_state = 81}, - [3408] = {.lex_state = 1727, .external_lex_state = 2}, - [3409] = {.lex_state = 2130}, - [3410] = {.lex_state = 2130}, - [3411] = {.lex_state = 2071}, - [3412] = {.lex_state = 101}, - [3413] = {.lex_state = 82}, - [3414] = {.lex_state = 81}, - [3415] = {.lex_state = 1727, .external_lex_state = 2}, - [3416] = {.lex_state = 199}, - [3417] = {.lex_state = 2}, - [3418] = {.lex_state = 221}, - [3419] = {.lex_state = 236}, - [3420] = {.lex_state = 2071}, - [3421] = {.lex_state = 2071}, - [3422] = {.lex_state = 1727, .external_lex_state = 2}, - [3423] = {.lex_state = 209}, - [3424] = {.lex_state = 207}, - [3425] = {.lex_state = 102}, - [3426] = {.lex_state = 104}, - [3427] = {.lex_state = 581}, - [3428] = {.lex_state = 581}, - [3429] = {.lex_state = 207}, - [3430] = {.lex_state = 2071}, - [3431] = {.lex_state = 2071}, - [3432] = {.lex_state = 581}, - [3433] = {.lex_state = 1727, .external_lex_state = 2}, - [3434] = {.lex_state = 581}, - [3435] = {.lex_state = 130}, - [3436] = {.lex_state = 2071}, - [3437] = {.lex_state = 2071}, - [3438] = {.lex_state = 1727, .external_lex_state = 2}, - [3439] = {.lex_state = 198}, - [3440] = {.lex_state = 236}, - [3441] = {.lex_state = 1727, .external_lex_state = 2}, - [3442] = {.lex_state = 2071}, - [3443] = {.lex_state = 2071}, - [3444] = {.lex_state = 1727, .external_lex_state = 2}, - [3445] = {.lex_state = 101}, - [3446] = {.lex_state = 2071}, - [3447] = {.lex_state = 2071}, - [3448] = {.lex_state = 102}, - [3449] = {.lex_state = 2175}, - [3450] = {.lex_state = 220}, - [3451] = {.lex_state = 2071}, + [3393] = {.lex_state = 206}, + [3394] = {.lex_state = 608}, + [3395] = {.lex_state = 574}, + [3396] = {.lex_state = 81}, + [3397] = {.lex_state = 100}, + [3398] = {.lex_state = 219}, + [3399] = {.lex_state = 100}, + [3400] = {.lex_state = 2}, + [3401] = {.lex_state = 80}, + [3402] = {.lex_state = 2068}, + [3403] = {.lex_state = 1724, .external_lex_state = 2}, + [3404] = {.lex_state = 220}, + [3405] = {.lex_state = 101}, + [3406] = {.lex_state = 2068}, + [3407] = {.lex_state = 2068}, + [3408] = {.lex_state = 2068}, + [3409] = {.lex_state = 2068}, + [3410] = {.lex_state = 1724, .external_lex_state = 2}, + [3411] = {.lex_state = 2068}, + [3412] = {.lex_state = 2127}, + [3413] = {.lex_state = 2127}, + [3414] = {.lex_state = 209}, + [3415] = {.lex_state = 2068}, + [3416] = {.lex_state = 2068}, + [3417] = {.lex_state = 1724, .external_lex_state = 2}, + [3418] = {.lex_state = 2068}, + [3419] = {.lex_state = 2068}, + [3420] = {.lex_state = 1724, .external_lex_state = 2}, + [3421] = {.lex_state = 2068}, + [3422] = {.lex_state = 2068}, + [3423] = {.lex_state = 1724, .external_lex_state = 2}, + [3424] = {.lex_state = 2068}, + [3425] = {.lex_state = 2068}, + [3426] = {.lex_state = 1724, .external_lex_state = 2}, + [3427] = {.lex_state = 2068}, + [3428] = {.lex_state = 2068}, + [3429] = {.lex_state = 1724, .external_lex_state = 2}, + [3430] = {.lex_state = 2068}, + [3431] = {.lex_state = 2068}, + [3432] = {.lex_state = 1724, .external_lex_state = 2}, + [3433] = {.lex_state = 2068}, + [3434] = {.lex_state = 2068}, + [3435] = {.lex_state = 1724, .external_lex_state = 2}, + [3436] = {.lex_state = 1724, .external_lex_state = 2}, + [3437] = {.lex_state = 1724, .external_lex_state = 2}, + [3438] = {.lex_state = 1724, .external_lex_state = 2}, + [3439] = {.lex_state = 1724, .external_lex_state = 2}, + [3440] = {.lex_state = 1724, .external_lex_state = 2}, + [3441] = {.lex_state = 1724, .external_lex_state = 2}, + [3442] = {.lex_state = 236}, + [3443] = {.lex_state = 1724, .external_lex_state = 2}, + [3444] = {.lex_state = 2068}, + [3445] = {.lex_state = 2068}, + [3446] = {.lex_state = 1724, .external_lex_state = 2}, + [3447] = {.lex_state = 207}, + [3448] = {.lex_state = 578}, + [3449] = {.lex_state = 2}, + [3450] = {.lex_state = 102}, + [3451] = {.lex_state = 578}, [3452] = {.lex_state = 207}, - [3453] = {.lex_state = 2071}, - [3454] = {.lex_state = 1727, .external_lex_state = 2}, - [3455] = {.lex_state = 2071}, - [3456] = {.lex_state = 207}, - [3457] = {.lex_state = 2175}, - [3458] = {.lex_state = 2071}, - [3459] = {.lex_state = 1727, .external_lex_state = 2}, - [3460] = {.lex_state = 220}, - [3461] = {.lex_state = 2175}, - [3462] = {.lex_state = 2175}, - [3463] = {.lex_state = 2071}, - [3464] = {.lex_state = 2071}, - [3465] = {.lex_state = 2071}, - [3466] = {.lex_state = 2071}, - [3467] = {.lex_state = 1727, .external_lex_state = 2}, - [3468] = {.lex_state = 2071}, - [3469] = {.lex_state = 2071}, - [3470] = {.lex_state = 78}, - [3471] = {.lex_state = 2071}, - [3472] = {.lex_state = 2071}, - [3473] = {.lex_state = 2071}, - [3474] = {.lex_state = 2071}, - [3475] = {.lex_state = 2071}, - [3476] = {.lex_state = 1727, .external_lex_state = 2}, - [3477] = {.lex_state = 1727, .external_lex_state = 2}, - [3478] = {.lex_state = 2130}, - [3479] = {.lex_state = 1727, .external_lex_state = 2}, - [3480] = {.lex_state = 96}, - [3481] = {.lex_state = 208}, - [3482] = {.lex_state = 210}, - [3483] = {.lex_state = 1727, .external_lex_state = 2}, - [3484] = {.lex_state = 208}, - [3485] = {.lex_state = 208}, - [3486] = {.lex_state = 1727, .external_lex_state = 2}, - [3487] = {.lex_state = 102}, + [3453] = {.lex_state = 578}, + [3454] = {.lex_state = 96}, + [3455] = {.lex_state = 199}, + [3456] = {.lex_state = 81}, + [3457] = {.lex_state = 101}, + [3458] = {.lex_state = 198}, + [3459] = {.lex_state = 104}, + [3460] = {.lex_state = 207}, + [3461] = {.lex_state = 81}, + [3462] = {.lex_state = 82}, + [3463] = {.lex_state = 102}, + [3464] = {.lex_state = 2127}, + [3465] = {.lex_state = 102}, + [3466] = {.lex_state = 2068}, + [3467] = {.lex_state = 1724, .external_lex_state = 2}, + [3468] = {.lex_state = 81}, + [3469] = {.lex_state = 2068}, + [3470] = {.lex_state = 2068}, + [3471] = {.lex_state = 130}, + [3472] = {.lex_state = 2172}, + [3473] = {.lex_state = 220}, + [3474] = {.lex_state = 208}, + [3475] = {.lex_state = 210}, + [3476] = {.lex_state = 1724, .external_lex_state = 2}, + [3477] = {.lex_state = 208}, + [3478] = {.lex_state = 2127}, + [3479] = {.lex_state = 207}, + [3480] = {.lex_state = 236}, + [3481] = {.lex_state = 2172}, + [3482] = {.lex_state = 208}, + [3483] = {.lex_state = 78}, + [3484] = {.lex_state = 221}, + [3485] = {.lex_state = 2172}, + [3486] = {.lex_state = 2172}, + [3487] = {.lex_state = 2068}, [3488] = {.lex_state = 102}, - [3489] = {.lex_state = 81}, - [3490] = {.lex_state = 1727, .external_lex_state = 2}, - [3491] = {.lex_state = 221}, - [3492] = {.lex_state = 103}, - [3493] = {.lex_state = 89}, - [3494] = {.lex_state = 581}, - [3495] = {.lex_state = 581}, - [3496] = {.lex_state = 89}, - [3497] = {.lex_state = 221}, - [3498] = {.lex_state = 581}, - [3499] = {.lex_state = 581}, - [3500] = {.lex_state = 211}, - [3501] = {.lex_state = 103}, - [3502] = {.lex_state = 581}, - [3503] = {.lex_state = 581}, - [3504] = {.lex_state = 581}, - [3505] = {.lex_state = 131}, - [3506] = {.lex_state = 581}, - [3507] = {.lex_state = 581}, - [3508] = {.lex_state = 131}, - [3509] = {.lex_state = 581}, - [3510] = {.lex_state = 581}, - [3511] = {.lex_state = 131}, - [3512] = {.lex_state = 581}, - [3513] = {.lex_state = 581}, - [3514] = {.lex_state = 105}, - [3515] = {.lex_state = 581}, - [3516] = {.lex_state = 581}, - [3517] = {.lex_state = 581}, - [3518] = {.lex_state = 241}, - [3519] = {.lex_state = 581}, - [3520] = {.lex_state = 581}, - [3521] = {.lex_state = 581}, - [3522] = {.lex_state = 581}, - [3523] = {.lex_state = 581}, - [3524] = {.lex_state = 581}, - [3525] = {.lex_state = 581}, - [3526] = {.lex_state = 81}, - [3527] = {.lex_state = 581}, - [3528] = {.lex_state = 131}, - [3529] = {.lex_state = 581}, - [3530] = {.lex_state = 581}, - [3531] = {.lex_state = 581}, - [3532] = {.lex_state = 625}, - [3533] = {.lex_state = 581}, - [3534] = {.lex_state = 106}, - [3535] = {.lex_state = 581}, - [3536] = {.lex_state = 106}, - [3537] = {.lex_state = 581}, - [3538] = {.lex_state = 237}, - [3539] = {.lex_state = 581}, - [3540] = {.lex_state = 581}, - [3541] = {.lex_state = 237}, - [3542] = {.lex_state = 221}, - [3543] = {.lex_state = 581}, - [3544] = {.lex_state = 237}, - [3545] = {.lex_state = 581}, - [3546] = {.lex_state = 237}, - [3547] = {.lex_state = 581}, - [3548] = {.lex_state = 83}, - [3549] = {.lex_state = 103}, - [3550] = {.lex_state = 581}, - [3551] = {.lex_state = 581}, - [3552] = {.lex_state = 581}, - [3553] = {.lex_state = 211}, - [3554] = {.lex_state = 97}, + [3489] = {.lex_state = 2068}, + [3490] = {.lex_state = 2068}, + [3491] = {.lex_state = 578}, + [3492] = {.lex_state = 578}, + [3493] = {.lex_state = 103}, + [3494] = {.lex_state = 578}, + [3495] = {.lex_state = 131}, + [3496] = {.lex_state = 578}, + [3497] = {.lex_state = 211}, + [3498] = {.lex_state = 578}, + [3499] = {.lex_state = 578}, + [3500] = {.lex_state = 578}, + [3501] = {.lex_state = 89}, + [3502] = {.lex_state = 237}, + [3503] = {.lex_state = 578}, + [3504] = {.lex_state = 131}, + [3505] = {.lex_state = 89}, + [3506] = {.lex_state = 97}, + [3507] = {.lex_state = 578}, + [3508] = {.lex_state = 578}, + [3509] = {.lex_state = 578}, + [3510] = {.lex_state = 578}, + [3511] = {.lex_state = 237}, + [3512] = {.lex_state = 622}, + [3513] = {.lex_state = 131}, + [3514] = {.lex_state = 578}, + [3515] = {.lex_state = 106}, + [3516] = {.lex_state = 221}, + [3517] = {.lex_state = 578}, + [3518] = {.lex_state = 578}, + [3519] = {.lex_state = 578}, + [3520] = {.lex_state = 221}, + [3521] = {.lex_state = 578}, + [3522] = {.lex_state = 578}, + [3523] = {.lex_state = 103}, + [3524] = {.lex_state = 89}, + [3525] = {.lex_state = 106}, + [3526] = {.lex_state = 211}, + [3527] = {.lex_state = 131}, + [3528] = {.lex_state = 578}, + [3529] = {.lex_state = 578}, + [3530] = {.lex_state = 578}, + [3531] = {.lex_state = 241}, + [3532] = {.lex_state = 103}, + [3533] = {.lex_state = 131}, + [3534] = {.lex_state = 578}, + [3535] = {.lex_state = 578}, + [3536] = {.lex_state = 578}, + [3537] = {.lex_state = 622}, + [3538] = {.lex_state = 578}, + [3539] = {.lex_state = 103}, + [3540] = {.lex_state = 578}, + [3541] = {.lex_state = 578}, + [3542] = {.lex_state = 83}, + [3543] = {.lex_state = 222}, + [3544] = {.lex_state = 578}, + [3545] = {.lex_state = 578}, + [3546] = {.lex_state = 578}, + [3547] = {.lex_state = 213}, + [3548] = {.lex_state = 578}, + [3549] = {.lex_state = 578}, + [3550] = {.lex_state = 578}, + [3551] = {.lex_state = 578}, + [3552] = {.lex_state = 578}, + [3553] = {.lex_state = 213}, + [3554] = {.lex_state = 578}, [3555] = {.lex_state = 208}, - [3556] = {.lex_state = 581}, - [3557] = {.lex_state = 581}, - [3558] = {.lex_state = 581}, - [3559] = {.lex_state = 222}, - [3560] = {.lex_state = 131}, - [3561] = {.lex_state = 103}, - [3562] = {.lex_state = 89}, - [3563] = {.lex_state = 83}, - [3564] = {.lex_state = 247}, - [3565] = {.lex_state = 213}, - [3566] = {.lex_state = 581}, - [3567] = {.lex_state = 581}, - [3568] = {.lex_state = 131}, - [3569] = {.lex_state = 213}, - [3570] = {.lex_state = 625}, - [3571] = {.lex_state = 200}, - [3572] = {.lex_state = 89}, - [3573] = {.lex_state = 245}, - [3574] = {.lex_state = 245}, - [3575] = {.lex_state = 108}, - [3576] = {.lex_state = 245}, - [3577] = {.lex_state = 107}, - [3578] = {.lex_state = 212}, - [3579] = {.lex_state = 107}, + [3556] = {.lex_state = 83}, + [3557] = {.lex_state = 105}, + [3558] = {.lex_state = 578}, + [3559] = {.lex_state = 578}, + [3560] = {.lex_state = 237}, + [3561] = {.lex_state = 131}, + [3562] = {.lex_state = 578}, + [3563] = {.lex_state = 89}, + [3564] = {.lex_state = 578}, + [3565] = {.lex_state = 578}, + [3566] = {.lex_state = 578}, + [3567] = {.lex_state = 81}, + [3568] = {.lex_state = 221}, + [3569] = {.lex_state = 200}, + [3570] = {.lex_state = 237}, + [3571] = {.lex_state = 578}, + [3572] = {.lex_state = 247}, + [3573] = {.lex_state = 578}, + [3574] = {.lex_state = 242}, + [3575] = {.lex_state = 84}, + [3576] = {.lex_state = 575}, + [3577] = {.lex_state = 214}, + [3578] = {.lex_state = 245}, + [3579] = {.lex_state = 214}, [3580] = {.lex_state = 245}, - [3581] = {.lex_state = 129}, - [3582] = {.lex_state = 2}, - [3583] = {.lex_state = 212}, - [3584] = {.lex_state = 212}, - [3585] = {.lex_state = 107}, + [3581] = {.lex_state = 107}, + [3582] = {.lex_state = 129}, + [3583] = {.lex_state = 107}, + [3584] = {.lex_state = 223}, + [3585] = {.lex_state = 277}, [3586] = {.lex_state = 245}, [3587] = {.lex_state = 245}, - [3588] = {.lex_state = 107}, - [3589] = {.lex_state = 248}, - [3590] = {.lex_state = 223}, - [3591] = {.lex_state = 578}, - [3592] = {.lex_state = 89}, - [3593] = {.lex_state = 89}, + [3588] = {.lex_state = 245}, + [3589] = {.lex_state = 89}, + [3590] = {.lex_state = 89}, + [3591] = {.lex_state = 248}, + [3592] = {.lex_state = 107}, + [3593] = {.lex_state = 84}, [3594] = {.lex_state = 245}, - [3595] = {.lex_state = 108}, + [3595] = {.lex_state = 245}, [3596] = {.lex_state = 84}, - [3597] = {.lex_state = 84}, - [3598] = {.lex_state = 84}, - [3599] = {.lex_state = 277}, - [3600] = {.lex_state = 107}, - [3601] = {.lex_state = 248}, - [3602] = {.lex_state = 245}, + [3597] = {.lex_state = 245}, + [3598] = {.lex_state = 245}, + [3599] = {.lex_state = 108}, + [3600] = {.lex_state = 212}, + [3601] = {.lex_state = 212}, + [3602] = {.lex_state = 212}, [3603] = {.lex_state = 214}, - [3604] = {.lex_state = 223}, + [3604] = {.lex_state = 245}, [3605] = {.lex_state = 245}, [3606] = {.lex_state = 214}, - [3607] = {.lex_state = 245}, - [3608] = {.lex_state = 84}, + [3607] = {.lex_state = 84}, + [3608] = {.lex_state = 245}, [3609] = {.lex_state = 259}, - [3610] = {.lex_state = 131}, - [3611] = {.lex_state = 242}, - [3612] = {.lex_state = 245}, - [3613] = {.lex_state = 578}, - [3614] = {.lex_state = 84}, - [3615] = {.lex_state = 245}, - [3616] = {.lex_state = 214}, - [3617] = {.lex_state = 214}, - [3618] = {.lex_state = 214}, - [3619] = {.lex_state = 245}, + [3610] = {.lex_state = 248}, + [3611] = {.lex_state = 107}, + [3612] = {.lex_state = 223}, + [3613] = {.lex_state = 108}, + [3614] = {.lex_state = 214}, + [3615] = {.lex_state = 84}, + [3616] = {.lex_state = 245}, + [3617] = {.lex_state = 575}, + [3618] = {.lex_state = 131}, + [3619] = {.lex_state = 2}, [3620] = {.lex_state = 129}, [3621] = {.lex_state = 131}, - [3622] = {.lex_state = 243}, - [3623] = {.lex_state = 276}, - [3624] = {.lex_state = 131}, - [3625] = {.lex_state = 578}, - [3626] = {.lex_state = 224}, - [3627] = {.lex_state = 46}, - [3628] = {.lex_state = 46}, - [3629] = {.lex_state = 46}, - [3630] = {.lex_state = 86}, - [3631] = {.lex_state = 110}, - [3632] = {.lex_state = 124}, - [3633] = {.lex_state = 46}, - [3634] = {.lex_state = 578}, - [3635] = {.lex_state = 578}, - [3636] = {.lex_state = 578}, - [3637] = {.lex_state = 215}, - [3638] = {.lex_state = 124}, - [3639] = {.lex_state = 224}, - [3640] = {.lex_state = 131}, - [3641] = {.lex_state = 46}, + [3622] = {.lex_state = 107}, + [3623] = {.lex_state = 124}, + [3624] = {.lex_state = 46}, + [3625] = {.lex_state = 212}, + [3626] = {.lex_state = 575}, + [3627] = {.lex_state = 575}, + [3628] = {.lex_state = 31}, + [3629] = {.lex_state = 89}, + [3630] = {.lex_state = 131}, + [3631] = {.lex_state = 131}, + [3632] = {.lex_state = 131}, + [3633] = {.lex_state = 109}, + [3634] = {.lex_state = 129}, + [3635] = {.lex_state = 575}, + [3636] = {.lex_state = 575}, + [3637] = {.lex_state = 575}, + [3638] = {.lex_state = 46}, + [3639] = {.lex_state = 46}, + [3640] = {.lex_state = 46}, + [3641] = {.lex_state = 243}, [3642] = {.lex_state = 46}, - [3643] = {.lex_state = 246}, - [3644] = {.lex_state = 260}, - [3645] = {.lex_state = 109}, - [3646] = {.lex_state = 31}, - [3647] = {.lex_state = 124}, - [3648] = {.lex_state = 46}, + [3643] = {.lex_state = 250}, + [3644] = {.lex_state = 224}, + [3645] = {.lex_state = 46}, + [3646] = {.lex_state = 124}, + [3647] = {.lex_state = 129}, + [3648] = {.lex_state = 124}, [3649] = {.lex_state = 224}, - [3650] = {.lex_state = 31}, - [3651] = {.lex_state = 46}, - [3652] = {.lex_state = 249}, - [3653] = {.lex_state = 89}, - [3654] = {.lex_state = 46}, - [3655] = {.lex_state = 124}, + [3650] = {.lex_state = 218}, + [3651] = {.lex_state = 31}, + [3652] = {.lex_state = 131}, + [3653] = {.lex_state = 124}, + [3654] = {.lex_state = 124}, + [3655] = {.lex_state = 46}, [3656] = {.lex_state = 31}, - [3657] = {.lex_state = 46}, + [3657] = {.lex_state = 85}, [3658] = {.lex_state = 46}, - [3659] = {.lex_state = 46}, - [3660] = {.lex_state = 129}, - [3661] = {.lex_state = 124}, - [3662] = {.lex_state = 276}, - [3663] = {.lex_state = 124}, - [3664] = {.lex_state = 124}, + [3659] = {.lex_state = 31}, + [3660] = {.lex_state = 46}, + [3661] = {.lex_state = 46}, + [3662] = {.lex_state = 131}, + [3663] = {.lex_state = 89}, + [3664] = {.lex_state = 46}, [3665] = {.lex_state = 31}, - [3666] = {.lex_state = 46}, - [3667] = {.lex_state = 131}, - [3668] = {.lex_state = 131}, - [3669] = {.lex_state = 124}, - [3670] = {.lex_state = 31}, - [3671] = {.lex_state = 277}, - [3672] = {.lex_state = 207}, - [3673] = {.lex_state = 212}, + [3666] = {.lex_state = 31}, + [3667] = {.lex_state = 46}, + [3668] = {.lex_state = 249}, + [3669] = {.lex_state = 129}, + [3670] = {.lex_state = 131}, + [3671] = {.lex_state = 31}, + [3672] = {.lex_state = 224}, + [3673] = {.lex_state = 124}, [3674] = {.lex_state = 46}, - [3675] = {.lex_state = 31}, - [3676] = {.lex_state = 130}, - [3677] = {.lex_state = 129}, - [3678] = {.lex_state = 85}, - [3679] = {.lex_state = 218}, - [3680] = {.lex_state = 109}, - [3681] = {.lex_state = 250}, - [3682] = {.lex_state = 124}, - [3683] = {.lex_state = 109}, - [3684] = {.lex_state = 124}, - [3685] = {.lex_state = 31}, - [3686] = {.lex_state = 277}, - [3687] = {.lex_state = 109}, - [3688] = {.lex_state = 46}, - [3689] = {.lex_state = 276}, - [3690] = {.lex_state = 89}, - [3691] = {.lex_state = 46}, - [3692] = {.lex_state = 124}, - [3693] = {.lex_state = 224}, - [3694] = {.lex_state = 224}, - [3695] = {.lex_state = 277}, - [3696] = {.lex_state = 131}, + [3675] = {.lex_state = 124}, + [3676] = {.lex_state = 246}, + [3677] = {.lex_state = 124}, + [3678] = {.lex_state = 46}, + [3679] = {.lex_state = 249}, + [3680] = {.lex_state = 46}, + [3681] = {.lex_state = 124}, + [3682] = {.lex_state = 277}, + [3683] = {.lex_state = 276}, + [3684] = {.lex_state = 249}, + [3685] = {.lex_state = 212}, + [3686] = {.lex_state = 124}, + [3687] = {.lex_state = 124}, + [3688] = {.lex_state = 124}, + [3689] = {.lex_state = 260}, + [3690] = {.lex_state = 46}, + [3691] = {.lex_state = 89}, + [3692] = {.lex_state = 224}, + [3693] = {.lex_state = 117}, + [3694] = {.lex_state = 203}, + [3695] = {.lex_state = 46}, + [3696] = {.lex_state = 207}, [3697] = {.lex_state = 31}, - [3698] = {.lex_state = 257}, - [3699] = {.lex_state = 89}, - [3700] = {.lex_state = 117}, + [3698] = {.lex_state = 109}, + [3699] = {.lex_state = 257}, + [3700] = {.lex_state = 46}, [3701] = {.lex_state = 131}, - [3702] = {.lex_state = 31}, - [3703] = {.lex_state = 89}, - [3704] = {.lex_state = 129}, - [3705] = {.lex_state = 109}, - [3706] = {.lex_state = 46}, - [3707] = {.lex_state = 131}, + [3702] = {.lex_state = 276}, + [3703] = {.lex_state = 224}, + [3704] = {.lex_state = 46}, + [3705] = {.lex_state = 260}, + [3706] = {.lex_state = 86}, + [3707] = {.lex_state = 46}, [3708] = {.lex_state = 46}, - [3709] = {.lex_state = 31}, + [3709] = {.lex_state = 109}, [3710] = {.lex_state = 249}, - [3711] = {.lex_state = 124}, - [3712] = {.lex_state = 131}, - [3713] = {.lex_state = 46}, - [3714] = {.lex_state = 578}, - [3715] = {.lex_state = 578}, - [3716] = {.lex_state = 46}, - [3717] = {.lex_state = 249}, + [3711] = {.lex_state = 31}, + [3712] = {.lex_state = 31}, + [3713] = {.lex_state = 277}, + [3714] = {.lex_state = 109}, + [3715] = {.lex_state = 89}, + [3716] = {.lex_state = 277}, + [3717] = {.lex_state = 31}, [3718] = {.lex_state = 124}, - [3719] = {.lex_state = 212}, - [3720] = {.lex_state = 277}, - [3721] = {.lex_state = 46}, - [3722] = {.lex_state = 277}, - [3723] = {.lex_state = 260}, - [3724] = {.lex_state = 46}, - [3725] = {.lex_state = 277}, - [3726] = {.lex_state = 124}, - [3727] = {.lex_state = 46}, - [3728] = {.lex_state = 31}, - [3729] = {.lex_state = 46}, - [3730] = {.lex_state = 249}, - [3731] = {.lex_state = 276}, - [3732] = {.lex_state = 0}, - [3733] = {.lex_state = 577}, + [3719] = {.lex_state = 131}, + [3720] = {.lex_state = 110}, + [3721] = {.lex_state = 277}, + [3722] = {.lex_state = 215}, + [3723] = {.lex_state = 277}, + [3724] = {.lex_state = 109}, + [3725] = {.lex_state = 46}, + [3726] = {.lex_state = 277}, + [3727] = {.lex_state = 575}, + [3728] = {.lex_state = 46}, + [3729] = {.lex_state = 124}, + [3730] = {.lex_state = 276}, + [3731] = {.lex_state = 46}, + [3732] = {.lex_state = 276}, + [3733] = {.lex_state = 0}, [3734] = {.lex_state = 0}, [3735] = {.lex_state = 0}, [3736] = {.lex_state = 0}, - [3737] = {.lex_state = 659}, - [3738] = {.lex_state = 640}, - [3739] = {.lex_state = 625}, - [3740] = {.lex_state = 625}, - [3741] = {.lex_state = 244}, - [3742] = {.lex_state = 111}, - [3743] = {.lex_state = 276}, + [3737] = {.lex_state = 574}, + [3738] = {.lex_state = 656}, + [3739] = {.lex_state = 633}, + [3740] = {.lex_state = 244}, + [3741] = {.lex_state = 622}, + [3742] = {.lex_state = 622}, + [3743] = {.lex_state = 111}, [3744] = {.lex_state = 276}, [3745] = {.lex_state = 276}, - [3746] = {.lex_state = 225}, - [3747] = {.lex_state = 182}, - [3748] = {.lex_state = 2072}, - [3749] = {.lex_state = 2072}, - [3750] = {.lex_state = 249}, - [3751] = {.lex_state = 258}, + [3746] = {.lex_state = 276}, + [3747] = {.lex_state = 225}, + [3748] = {.lex_state = 182}, + [3749] = {.lex_state = 2069}, + [3750] = {.lex_state = 2069}, + [3751] = {.lex_state = 249}, [3752] = {.lex_state = 182}, - [3753] = {.lex_state = 31}, + [3753] = {.lex_state = 258}, [3754] = {.lex_state = 31}, - [3755] = {.lex_state = 129}, - [3756] = {.lex_state = 124}, + [3755] = {.lex_state = 31}, + [3756] = {.lex_state = 129}, [3757] = {.lex_state = 124}, - [3758] = {.lex_state = 129}, - [3759] = {.lex_state = 251}, - [3760] = {.lex_state = 182}, - [3761] = {.lex_state = 0}, - [3762] = {.lex_state = 31}, + [3758] = {.lex_state = 124}, + [3759] = {.lex_state = 129}, + [3760] = {.lex_state = 251}, + [3761] = {.lex_state = 182}, + [3762] = {.lex_state = 0}, [3763] = {.lex_state = 0}, [3764] = {.lex_state = 0}, [3765] = {.lex_state = 201}, @@ -36792,561 +36790,561 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3768] = {.lex_state = 31}, [3769] = {.lex_state = 31}, [3770] = {.lex_state = 124}, - [3771] = {.lex_state = 89}, + [3771] = {.lex_state = 31}, [3772] = {.lex_state = 130}, - [3773] = {.lex_state = 124}, - [3774] = {.lex_state = 190}, - [3775] = {.lex_state = 276}, + [3773] = {.lex_state = 89}, + [3774] = {.lex_state = 124}, + [3775] = {.lex_state = 190}, [3776] = {.lex_state = 130}, [3777] = {.lex_state = 130}, - [3778] = {.lex_state = 124}, - [3779] = {.lex_state = 130}, + [3778] = {.lex_state = 130}, + [3779] = {.lex_state = 124}, [3780] = {.lex_state = 124}, [3781] = {.lex_state = 182}, - [3782] = {.lex_state = 2072}, - [3783] = {.lex_state = 2072}, - [3784] = {.lex_state = 276}, - [3785] = {.lex_state = 182}, - [3786] = {.lex_state = 276}, + [3782] = {.lex_state = 2069}, + [3783] = {.lex_state = 2069}, + [3784] = {.lex_state = 182}, + [3785] = {.lex_state = 276}, + [3786] = {.lex_state = 0}, [3787] = {.lex_state = 0}, - [3788] = {.lex_state = 0}, + [3788] = {.lex_state = 276}, [3789] = {.lex_state = 0}, [3790] = {.lex_state = 0}, [3791] = {.lex_state = 129}, - [3792] = {.lex_state = 31}, + [3792] = {.lex_state = 276}, [3793] = {.lex_state = 119}, - [3794] = {.lex_state = 124}, + [3794] = {.lex_state = 129}, [3795] = {.lex_state = 129}, - [3796] = {.lex_state = 129}, + [3796] = {.lex_state = 31}, [3797] = {.lex_state = 124}, - [3798] = {.lex_state = 129}, + [3798] = {.lex_state = 124}, [3799] = {.lex_state = 129}, [3800] = {.lex_state = 129}, - [3801] = {.lex_state = 119}, - [3802] = {.lex_state = 276}, - [3803] = {.lex_state = 577}, - [3804] = {.lex_state = 276}, - [3805] = {.lex_state = 2072}, - [3806] = {.lex_state = 2072}, - [3807] = {.lex_state = 124}, - [3808] = {.lex_state = 124}, - [3809] = {.lex_state = 124}, - [3810] = {.lex_state = 87}, - [3811] = {.lex_state = 249}, + [3801] = {.lex_state = 129}, + [3802] = {.lex_state = 119}, + [3803] = {.lex_state = 124}, + [3804] = {.lex_state = 124}, + [3805] = {.lex_state = 124}, + [3806] = {.lex_state = 276}, + [3807] = {.lex_state = 574}, + [3808] = {.lex_state = 87}, + [3809] = {.lex_state = 276}, + [3810] = {.lex_state = 2069}, + [3811] = {.lex_state = 2069}, [3812] = {.lex_state = 131}, [3813] = {.lex_state = 87}, - [3814] = {.lex_state = 182}, - [3815] = {.lex_state = 276}, - [3816] = {.lex_state = 276}, - [3817] = {.lex_state = 114}, - [3818] = {.lex_state = 258}, + [3814] = {.lex_state = 249}, + [3815] = {.lex_state = 131}, + [3816] = {.lex_state = 182}, + [3817] = {.lex_state = 276}, + [3818] = {.lex_state = 114}, [3819] = {.lex_state = 182}, - [3820] = {.lex_state = 31}, - [3821] = {.lex_state = 2072}, - [3822] = {.lex_state = 2072}, - [3823] = {.lex_state = 182}, - [3824] = {.lex_state = 0}, - [3825] = {.lex_state = 182}, - [3826] = {.lex_state = 2072}, - [3827] = {.lex_state = 2072}, - [3828] = {.lex_state = 182}, + [3820] = {.lex_state = 2069}, + [3821] = {.lex_state = 2069}, + [3822] = {.lex_state = 182}, + [3823] = {.lex_state = 31}, + [3824] = {.lex_state = 258}, + [3825] = {.lex_state = 0}, + [3826] = {.lex_state = 182}, + [3827] = {.lex_state = 2069}, + [3828] = {.lex_state = 2069}, [3829] = {.lex_state = 182}, - [3830] = {.lex_state = 2072}, - [3831] = {.lex_state = 2072}, - [3832] = {.lex_state = 182}, + [3830] = {.lex_state = 182}, + [3831] = {.lex_state = 2069}, + [3832] = {.lex_state = 2069}, [3833] = {.lex_state = 182}, [3834] = {.lex_state = 182}, [3835] = {.lex_state = 182}, - [3836] = {.lex_state = 124}, + [3836] = {.lex_state = 182}, [3837] = {.lex_state = 182}, [3838] = {.lex_state = 228}, [3839] = {.lex_state = 182}, [3840] = {.lex_state = 182}, - [3841] = {.lex_state = 2176}, - [3842] = {.lex_state = 2176}, - [3843] = {.lex_state = 261}, - [3844] = {.lex_state = 239}, - [3845] = {.lex_state = 31}, - [3846] = {.lex_state = 124}, + [3841] = {.lex_state = 124}, + [3842] = {.lex_state = 2173}, + [3843] = {.lex_state = 2173}, + [3844] = {.lex_state = 261}, + [3845] = {.lex_state = 239}, + [3846] = {.lex_state = 31}, [3847] = {.lex_state = 124}, - [3848] = {.lex_state = 640}, + [3848] = {.lex_state = 633}, [3849] = {.lex_state = 216}, [3850] = {.lex_state = 216}, - [3851] = {.lex_state = 202}, - [3852] = {.lex_state = 251}, - [3853] = {.lex_state = 640}, - [3854] = {.lex_state = 261}, + [3851] = {.lex_state = 124}, + [3852] = {.lex_state = 202}, + [3853] = {.lex_state = 633}, + [3854] = {.lex_state = 251}, [3855] = {.lex_state = 261}, [3856] = {.lex_state = 261}, - [3857] = {.lex_state = 124}, + [3857] = {.lex_state = 261}, [3858] = {.lex_state = 124}, - [3859] = {.lex_state = 190}, - [3860] = {.lex_state = 124}, + [3859] = {.lex_state = 124}, + [3860] = {.lex_state = 190}, [3861] = {.lex_state = 124}, [3862] = {.lex_state = 124}, [3863] = {.lex_state = 124}, - [3864] = {.lex_state = 182}, + [3864] = {.lex_state = 124}, [3865] = {.lex_state = 276}, [3866] = {.lex_state = 276}, [3867] = {.lex_state = 276}, [3868] = {.lex_state = 262}, - [3869] = {.lex_state = 640}, - [3870] = {.lex_state = 640}, + [3869] = {.lex_state = 633}, + [3870] = {.lex_state = 633}, [3871] = {.lex_state = 31}, - [3872] = {.lex_state = 640}, - [3873] = {.lex_state = 611}, + [3872] = {.lex_state = 633}, + [3873] = {.lex_state = 608}, [3874] = {.lex_state = 256}, - [3875] = {.lex_state = 31}, + [3875] = {.lex_state = 276}, [3876] = {.lex_state = 276}, [3877] = {.lex_state = 276}, - [3878] = {.lex_state = 276}, + [3878] = {.lex_state = 31}, [3879] = {.lex_state = 31}, [3880] = {.lex_state = 118}, [3881] = {.lex_state = 276}, [3882] = {.lex_state = 276}, - [3883] = {.lex_state = 131}, - [3884] = {.lex_state = 131}, - [3885] = {.lex_state = 88}, - [3886] = {.lex_state = 88}, - [3887] = {.lex_state = 278}, - [3888] = {.lex_state = 625}, - [3889] = {.lex_state = 129}, - [3890] = {.lex_state = 252}, - [3891] = {.lex_state = 625}, - [3892] = {.lex_state = 252}, - [3893] = {.lex_state = 2}, - [3894] = {.lex_state = 625}, - [3895] = {.lex_state = 625}, - [3896] = {.lex_state = 126}, - [3897] = {.lex_state = 622}, - [3898] = {.lex_state = 625}, - [3899] = {.lex_state = 126}, - [3900] = {.lex_state = 120}, - [3901] = {.lex_state = 201}, - [3902] = {.lex_state = 0}, - [3903] = {.lex_state = 190}, - [3904] = {.lex_state = 226}, - [3905] = {.lex_state = 124}, + [3883] = {.lex_state = 276}, + [3884] = {.lex_state = 182}, + [3885] = {.lex_state = 89}, + [3886] = {.lex_state = 619}, + [3887] = {.lex_state = 129}, + [3888] = {.lex_state = 252}, + [3889] = {.lex_state = 180}, + [3890] = {.lex_state = 622}, + [3891] = {.lex_state = 622}, + [3892] = {.lex_state = 126}, + [3893] = {.lex_state = 278}, + [3894] = {.lex_state = 622}, + [3895] = {.lex_state = 120}, + [3896] = {.lex_state = 622}, + [3897] = {.lex_state = 126}, + [3898] = {.lex_state = 2}, + [3899] = {.lex_state = 252}, + [3900] = {.lex_state = 201}, + [3901] = {.lex_state = 2}, + [3902] = {.lex_state = 190}, + [3903] = {.lex_state = 226}, + [3904] = {.lex_state = 619}, + [3905] = {.lex_state = 0}, [3906] = {.lex_state = 124}, [3907] = {.lex_state = 124}, - [3908] = {.lex_state = 120}, - [3909] = {.lex_state = 120}, - [3910] = {.lex_state = 278}, + [3908] = {.lex_state = 124}, + [3909] = {.lex_state = 0}, + [3910] = {.lex_state = 120}, [3911] = {.lex_state = 124}, [3912] = {.lex_state = 180}, [3913] = {.lex_state = 278}, [3914] = {.lex_state = 120}, - [3915] = {.lex_state = 622}, - [3916] = {.lex_state = 227}, - [3917] = {.lex_state = 278}, - [3918] = {.lex_state = 31}, - [3919] = {.lex_state = 120}, - [3920] = {.lex_state = 123}, - [3921] = {.lex_state = 217}, - [3922] = {.lex_state = 217}, - [3923] = {.lex_state = 120}, - [3924] = {.lex_state = 149}, - [3925] = {.lex_state = 149}, - [3926] = {.lex_state = 120}, - [3927] = {.lex_state = 217}, - [3928] = {.lex_state = 217}, - [3929] = {.lex_state = 120}, + [3915] = {.lex_state = 619}, + [3916] = {.lex_state = 278}, + [3917] = {.lex_state = 622}, + [3918] = {.lex_state = 278}, + [3919] = {.lex_state = 227}, + [3920] = {.lex_state = 2}, + [3921] = {.lex_state = 31}, + [3922] = {.lex_state = 120}, + [3923] = {.lex_state = 217}, + [3924] = {.lex_state = 120}, + [3925] = {.lex_state = 123}, + [3926] = {.lex_state = 217}, + [3927] = {.lex_state = 120}, + [3928] = {.lex_state = 149}, + [3929] = {.lex_state = 149}, [3930] = {.lex_state = 217}, - [3931] = {.lex_state = 120}, - [3932] = {.lex_state = 217}, - [3933] = {.lex_state = 622}, - [3934] = {.lex_state = 126}, + [3931] = {.lex_state = 217}, + [3932] = {.lex_state = 120}, + [3933] = {.lex_state = 120}, + [3934] = {.lex_state = 217}, [3935] = {.lex_state = 120}, - [3936] = {.lex_state = 120}, - [3937] = {.lex_state = 124}, - [3938] = {.lex_state = 217}, - [3939] = {.lex_state = 276}, - [3940] = {.lex_state = 622}, - [3941] = {.lex_state = 88}, - [3942] = {.lex_state = 0}, - [3943] = {.lex_state = 217}, - [3944] = {.lex_state = 217}, - [3945] = {.lex_state = 278}, - [3946] = {.lex_state = 88}, - [3947] = {.lex_state = 131}, + [3936] = {.lex_state = 217}, + [3937] = {.lex_state = 619}, + [3938] = {.lex_state = 126}, + [3939] = {.lex_state = 124}, + [3940] = {.lex_state = 217}, + [3941] = {.lex_state = 120}, + [3942] = {.lex_state = 131}, + [3943] = {.lex_state = 120}, + [3944] = {.lex_state = 88}, + [3945] = {.lex_state = 217}, + [3946] = {.lex_state = 217}, + [3947] = {.lex_state = 276}, [3948] = {.lex_state = 88}, - [3949] = {.lex_state = 131}, - [3950] = {.lex_state = 88}, - [3951] = {.lex_state = 0}, - [3952] = {.lex_state = 625}, - [3953] = {.lex_state = 581}, - [3954] = {.lex_state = 124}, - [3955] = {.lex_state = 180}, - [3956] = {.lex_state = 278}, - [3957] = {.lex_state = 622}, - [3958] = {.lex_state = 89}, - [3959] = {.lex_state = 0}, + [3949] = {.lex_state = 0}, + [3950] = {.lex_state = 131}, + [3951] = {.lex_state = 88}, + [3952] = {.lex_state = 131}, + [3953] = {.lex_state = 88}, + [3954] = {.lex_state = 278}, + [3955] = {.lex_state = 622}, + [3956] = {.lex_state = 0}, + [3957] = {.lex_state = 180}, + [3958] = {.lex_state = 278}, + [3959] = {.lex_state = 619}, [3960] = {.lex_state = 278}, [3961] = {.lex_state = 88}, - [3962] = {.lex_state = 160}, - [3963] = {.lex_state = 0}, - [3964] = {.lex_state = 160}, - [3965] = {.lex_state = 124}, - [3966] = {.lex_state = 180}, - [3967] = {.lex_state = 278}, - [3968] = {.lex_state = 33}, - [3969] = {.lex_state = 180}, - [3970] = {.lex_state = 581}, - [3971] = {.lex_state = 120}, - [3972] = {.lex_state = 89}, - [3973] = {.lex_state = 120}, - [3974] = {.lex_state = 180}, - [3975] = {.lex_state = 278}, - [3976] = {.lex_state = 124}, - [3977] = {.lex_state = 252}, - [3978] = {.lex_state = 278}, - [3979] = {.lex_state = 180}, - [3980] = {.lex_state = 278}, - [3981] = {.lex_state = 278}, - [3982] = {.lex_state = 278}, - [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 0}, - [3985] = {.lex_state = 230}, + [3962] = {.lex_state = 88}, + [3963] = {.lex_state = 160}, + [3964] = {.lex_state = 180}, + [3965] = {.lex_state = 278}, + [3966] = {.lex_state = 578}, + [3967] = {.lex_state = 578}, + [3968] = {.lex_state = 89}, + [3969] = {.lex_state = 35}, + [3970] = {.lex_state = 0}, + [3971] = {.lex_state = 160}, + [3972] = {.lex_state = 124}, + [3973] = {.lex_state = 2}, + [3974] = {.lex_state = 120}, + [3975] = {.lex_state = 180}, + [3976] = {.lex_state = 278}, + [3977] = {.lex_state = 120}, + [3978] = {.lex_state = 0}, + [3979] = {.lex_state = 278}, + [3980] = {.lex_state = 124}, + [3981] = {.lex_state = 180}, + [3982] = {.lex_state = 180}, + [3983] = {.lex_state = 278}, + [3984] = {.lex_state = 252}, + [3985] = {.lex_state = 278}, [3986] = {.lex_state = 180}, [3987] = {.lex_state = 278}, - [3988] = {.lex_state = 278}, + [3988] = {.lex_state = 230}, [3989] = {.lex_state = 0}, - [3990] = {.lex_state = 252}, - [3991] = {.lex_state = 180}, - [3992] = {.lex_state = 278}, - [3993] = {.lex_state = 129}, - [3994] = {.lex_state = 278}, - [3995] = {.lex_state = 230}, - [3996] = {.lex_state = 180}, - [3997] = {.lex_state = 31}, - [3998] = {.lex_state = 180}, - [3999] = {.lex_state = 180}, + [3990] = {.lex_state = 0}, + [3991] = {.lex_state = 278}, + [3992] = {.lex_state = 129}, + [3993] = {.lex_state = 227}, + [3994] = {.lex_state = 180}, + [3995] = {.lex_state = 278}, + [3996] = {.lex_state = 252}, + [3997] = {.lex_state = 278}, + [3998] = {.lex_state = 88}, + [3999] = {.lex_state = 230}, [4000] = {.lex_state = 180}, - [4001] = {.lex_state = 625}, - [4002] = {.lex_state = 227}, - [4003] = {.lex_state = 180}, + [4001] = {.lex_state = 88}, + [4002] = {.lex_state = 180}, + [4003] = {.lex_state = 31}, [4004] = {.lex_state = 180}, - [4005] = {.lex_state = 124}, + [4005] = {.lex_state = 180}, [4006] = {.lex_state = 180}, - [4007] = {.lex_state = 625}, + [4007] = {.lex_state = 622}, [4008] = {.lex_state = 180}, - [4009] = {.lex_state = 180}, + [4009] = {.lex_state = 278}, [4010] = {.lex_state = 180}, [4011] = {.lex_state = 180}, - [4012] = {.lex_state = 88}, - [4013] = {.lex_state = 88}, + [4012] = {.lex_state = 180}, + [4013] = {.lex_state = 180}, [4014] = {.lex_state = 622}, - [4015] = {.lex_state = 217}, - [4016] = {.lex_state = 120}, - [4017] = {.lex_state = 217}, + [4015] = {.lex_state = 180}, + [4016] = {.lex_state = 124}, + [4017] = {.lex_state = 619}, [4018] = {.lex_state = 217}, - [4019] = {.lex_state = 278}, - [4020] = {.lex_state = 88}, - [4021] = {.lex_state = 31}, - [4022] = {.lex_state = 217}, - [4023] = {.lex_state = 276}, - [4024] = {.lex_state = 252}, - [4025] = {.lex_state = 89}, - [4026] = {.lex_state = 88}, - [4027] = {.lex_state = 33}, - [4028] = {.lex_state = 577}, - [4029] = {.lex_state = 31}, - [4030] = {.lex_state = 88}, - [4031] = {.lex_state = 88}, - [4032] = {.lex_state = 263}, - [4033] = {.lex_state = 124}, - [4034] = {.lex_state = 2}, + [4019] = {.lex_state = 217}, + [4020] = {.lex_state = 217}, + [4021] = {.lex_state = 252}, + [4022] = {.lex_state = 88}, + [4023] = {.lex_state = 278}, + [4024] = {.lex_state = 217}, + [4025] = {.lex_state = 88}, + [4026] = {.lex_state = 120}, + [4027] = {.lex_state = 89}, + [4028] = {.lex_state = 35}, + [4029] = {.lex_state = 88}, + [4030] = {.lex_state = 574}, + [4031] = {.lex_state = 31}, + [4032] = {.lex_state = 31}, + [4033] = {.lex_state = 88}, + [4034] = {.lex_state = 124}, [4035] = {.lex_state = 263}, - [4036] = {.lex_state = 180}, - [4037] = {.lex_state = 124}, - [4038] = {.lex_state = 37}, - [4039] = {.lex_state = 46}, - [4040] = {.lex_state = 2}, - [4041] = {.lex_state = 2}, - [4042] = {.lex_state = 652}, - [4043] = {.lex_state = 121}, - [4044] = {.lex_state = 121}, - [4045] = {.lex_state = 2}, - [4046] = {.lex_state = 2}, - [4047] = {.lex_state = 278}, - [4048] = {.lex_state = 124}, + [4036] = {.lex_state = 2}, + [4037] = {.lex_state = 276}, + [4038] = {.lex_state = 263}, + [4039] = {.lex_state = 124}, + [4040] = {.lex_state = 33}, + [4041] = {.lex_state = 46}, + [4042] = {.lex_state = 2}, + [4043] = {.lex_state = 124}, + [4044] = {.lex_state = 649}, + [4045] = {.lex_state = 121}, + [4046] = {.lex_state = 88}, + [4047] = {.lex_state = 121}, + [4048] = {.lex_state = 278}, [4049] = {.lex_state = 31}, - [4050] = {.lex_state = 245}, - [4051] = {.lex_state = 268}, + [4050] = {.lex_state = 31}, + [4051] = {.lex_state = 31}, [4052] = {.lex_state = 31}, - [4053] = {.lex_state = 31}, - [4054] = {.lex_state = 31}, + [4053] = {.lex_state = 268}, + [4054] = {.lex_state = 149}, [4055] = {.lex_state = 149}, [4056] = {.lex_state = 238}, [4057] = {.lex_state = 122}, - [4058] = {.lex_state = 190}, + [4058] = {.lex_state = 42}, [4059] = {.lex_state = 126}, - [4060] = {.lex_state = 93}, - [4061] = {.lex_state = 238}, - [4062] = {.lex_state = 238}, - [4063] = {.lex_state = 0}, - [4064] = {.lex_state = 149}, - [4065] = {.lex_state = 126}, - [4066] = {.lex_state = 0}, - [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 31}, - [4069] = {.lex_state = 31}, - [4070] = {.lex_state = 31}, - [4071] = {.lex_state = 190}, - [4072] = {.lex_state = 149}, - [4073] = {.lex_state = 149}, - [4074] = {.lex_state = 190}, - [4075] = {.lex_state = 190}, - [4076] = {.lex_state = 0}, - [4077] = {.lex_state = 88}, - [4078] = {.lex_state = 31}, - [4079] = {.lex_state = 190}, - [4080] = {.lex_state = 0}, + [4060] = {.lex_state = 190}, + [4061] = {.lex_state = 93}, + [4062] = {.lex_state = 245}, + [4063] = {.lex_state = 238}, + [4064] = {.lex_state = 238}, + [4065] = {.lex_state = 149}, + [4066] = {.lex_state = 149}, + [4067] = {.lex_state = 126}, + [4068] = {.lex_state = 93}, + [4069] = {.lex_state = 190}, + [4070] = {.lex_state = 0}, + [4071] = {.lex_state = 0}, + [4072] = {.lex_state = 190}, + [4073] = {.lex_state = 190}, + [4074] = {.lex_state = 0}, + [4075] = {.lex_state = 31}, + [4076] = {.lex_state = 31}, + [4077] = {.lex_state = 190}, + [4078] = {.lex_state = 0}, + [4079] = {.lex_state = 0}, + [4080] = {.lex_state = 31}, [4081] = {.lex_state = 31}, [4082] = {.lex_state = 31}, [4083] = {.lex_state = 31}, - [4084] = {.lex_state = 31}, - [4085] = {.lex_state = 31}, + [4084] = {.lex_state = 245}, + [4085] = {.lex_state = 88}, [4086] = {.lex_state = 31}, [4087] = {.lex_state = 122}, - [4088] = {.lex_state = 264}, - [4089] = {.lex_state = 180}, + [4088] = {.lex_state = 31}, + [4089] = {.lex_state = 31}, [4090] = {.lex_state = 31}, [4091] = {.lex_state = 31}, [4092] = {.lex_state = 31}, [4093] = {.lex_state = 31}, - [4094] = {.lex_state = 31}, + [4094] = {.lex_state = 264}, [4095] = {.lex_state = 31}, [4096] = {.lex_state = 190}, - [4097] = {.lex_state = 124}, - [4098] = {.lex_state = 31}, + [4097] = {.lex_state = 180}, + [4098] = {.lex_state = 124}, [4099] = {.lex_state = 31}, - [4100] = {.lex_state = 149}, + [4100] = {.lex_state = 31}, [4101] = {.lex_state = 31}, [4102] = {.lex_state = 149}, - [4103] = {.lex_state = 124}, + [4103] = {.lex_state = 149}, [4104] = {.lex_state = 231}, [4105] = {.lex_state = 190}, [4106] = {.lex_state = 190}, [4107] = {.lex_state = 190}, - [4108] = {.lex_state = 129}, + [4108] = {.lex_state = 124}, [4109] = {.lex_state = 190}, [4110] = {.lex_state = 31}, - [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 122}, + [4111] = {.lex_state = 122}, + [4112] = {.lex_state = 0}, [4113] = {.lex_state = 190}, - [4114] = {.lex_state = 31}, + [4114] = {.lex_state = 129}, [4115] = {.lex_state = 190}, [4116] = {.lex_state = 190}, - [4117] = {.lex_state = 190}, - [4118] = {.lex_state = 122}, - [4119] = {.lex_state = 190}, - [4120] = {.lex_state = 122}, + [4117] = {.lex_state = 122}, + [4118] = {.lex_state = 190}, + [4119] = {.lex_state = 122}, + [4120] = {.lex_state = 190}, [4121] = {.lex_state = 190}, [4122] = {.lex_state = 190}, - [4123] = {.lex_state = 190}, - [4124] = {.lex_state = 122}, + [4123] = {.lex_state = 122}, + [4124] = {.lex_state = 190}, [4125] = {.lex_state = 122}, - [4126] = {.lex_state = 123}, - [4127] = {.lex_state = 122}, + [4126] = {.lex_state = 122}, + [4127] = {.lex_state = 31}, [4128] = {.lex_state = 149}, - [4129] = {.lex_state = 31}, - [4130] = {.lex_state = 231}, - [4131] = {.lex_state = 123}, - [4132] = {.lex_state = 123}, - [4133] = {.lex_state = 252}, - [4134] = {.lex_state = 217}, - [4135] = {.lex_state = 577}, - [4136] = {.lex_state = 31}, - [4137] = {.lex_state = 31}, - [4138] = {.lex_state = 31}, - [4139] = {.lex_state = 31}, - [4140] = {.lex_state = 126}, - [4141] = {.lex_state = 245}, - [4142] = {.lex_state = 31}, - [4143] = {.lex_state = 226}, - [4144] = {.lex_state = 31}, - [4145] = {.lex_state = 226}, - [4146] = {.lex_state = 122}, - [4147] = {.lex_state = 0}, + [4129] = {.lex_state = 621}, + [4130] = {.lex_state = 31}, + [4131] = {.lex_state = 31}, + [4132] = {.lex_state = 574}, + [4133] = {.lex_state = 123}, + [4134] = {.lex_state = 31}, + [4135] = {.lex_state = 180}, + [4136] = {.lex_state = 123}, + [4137] = {.lex_state = 123}, + [4138] = {.lex_state = 252}, + [4139] = {.lex_state = 231}, + [4140] = {.lex_state = 31}, + [4141] = {.lex_state = 190}, + [4142] = {.lex_state = 245}, + [4143] = {.lex_state = 31}, + [4144] = {.lex_state = 126}, + [4145] = {.lex_state = 217}, + [4146] = {.lex_state = 0}, + [4147] = {.lex_state = 122}, [4148] = {.lex_state = 253}, [4149] = {.lex_state = 31}, - [4150] = {.lex_state = 126}, - [4151] = {.lex_state = 31}, - [4152] = {.lex_state = 0}, - [4153] = {.lex_state = 126}, - [4154] = {.lex_state = 31}, - [4155] = {.lex_state = 0}, - [4156] = {.lex_state = 31}, + [4150] = {.lex_state = 622}, + [4151] = {.lex_state = 126}, + [4152] = {.lex_state = 126}, + [4153] = {.lex_state = 0}, + [4154] = {.lex_state = 226}, + [4155] = {.lex_state = 226}, + [4156] = {.lex_state = 122}, [4157] = {.lex_state = 122}, - [4158] = {.lex_state = 122}, - [4159] = {.lex_state = 231}, - [4160] = {.lex_state = 126}, + [4158] = {.lex_state = 31}, + [4159] = {.lex_state = 0}, + [4160] = {.lex_state = 31}, [4161] = {.lex_state = 126}, [4162] = {.lex_state = 126}, - [4163] = {.lex_state = 190}, + [4163] = {.lex_state = 126}, [4164] = {.lex_state = 31}, - [4165] = {.lex_state = 190}, - [4166] = {.lex_state = 124}, - [4167] = {.lex_state = 0}, - [4168] = {.lex_state = 0}, - [4169] = {.lex_state = 245}, - [4170] = {.lex_state = 31}, + [4165] = {.lex_state = 31}, + [4166] = {.lex_state = 0}, + [4167] = {.lex_state = 226}, + [4168] = {.lex_state = 245}, + [4169] = {.lex_state = 231}, + [4170] = {.lex_state = 190}, [4171] = {.lex_state = 31}, - [4172] = {.lex_state = 31}, - [4173] = {.lex_state = 124}, - [4174] = {.lex_state = 231}, + [4172] = {.lex_state = 190}, + [4173] = {.lex_state = 0}, + [4174] = {.lex_state = 31}, [4175] = {.lex_state = 31}, - [4176] = {.lex_state = 149}, - [4177] = {.lex_state = 231}, - [4178] = {.lex_state = 577}, - [4179] = {.lex_state = 252}, - [4180] = {.lex_state = 245}, - [4181] = {.lex_state = 42}, - [4182] = {.lex_state = 31}, - [4183] = {.lex_state = 577}, - [4184] = {.lex_state = 124}, - [4185] = {.lex_state = 0}, - [4186] = {.lex_state = 577}, - [4187] = {.lex_state = 577}, - [4188] = {.lex_state = 31}, - [4189] = {.lex_state = 622}, - [4190] = {.lex_state = 190}, - [4191] = {.lex_state = 124}, - [4192] = {.lex_state = 124}, - [4193] = {.lex_state = 245}, - [4194] = {.lex_state = 190}, - [4195] = {.lex_state = 182}, - [4196] = {.lex_state = 124}, - [4197] = {.lex_state = 190}, - [4198] = {.lex_state = 624}, - [4199] = {.lex_state = 190}, - [4200] = {.lex_state = 231}, - [4201] = {.lex_state = 31}, + [4176] = {.lex_state = 231}, + [4177] = {.lex_state = 149}, + [4178] = {.lex_state = 31}, + [4179] = {.lex_state = 574}, + [4180] = {.lex_state = 574}, + [4181] = {.lex_state = 245}, + [4182] = {.lex_state = 124}, + [4183] = {.lex_state = 42}, + [4184] = {.lex_state = 574}, + [4185] = {.lex_state = 124}, + [4186] = {.lex_state = 231}, + [4187] = {.lex_state = 0}, + [4188] = {.lex_state = 124}, + [4189] = {.lex_state = 124}, + [4190] = {.lex_state = 124}, + [4191] = {.lex_state = 31}, + [4192] = {.lex_state = 190}, + [4193] = {.lex_state = 190}, + [4194] = {.lex_state = 245}, + [4195] = {.lex_state = 0}, + [4196] = {.lex_state = 190}, + [4197] = {.lex_state = 31}, + [4198] = {.lex_state = 252}, + [4199] = {.lex_state = 619}, + [4200] = {.lex_state = 31}, + [4201] = {.lex_state = 149}, [4202] = {.lex_state = 31}, - [4203] = {.lex_state = 124}, - [4204] = {.lex_state = 245}, - [4205] = {.lex_state = 182}, - [4206] = {.lex_state = 149}, - [4207] = {.lex_state = 577}, + [4203] = {.lex_state = 245}, + [4204] = {.lex_state = 231}, + [4205] = {.lex_state = 190}, + [4206] = {.lex_state = 124}, + [4207] = {.lex_state = 149}, [4208] = {.lex_state = 231}, - [4209] = {.lex_state = 231}, - [4210] = {.lex_state = 149}, - [4211] = {.lex_state = 0}, - [4212] = {.lex_state = 31}, + [4209] = {.lex_state = 0}, + [4210] = {.lex_state = 31}, + [4211] = {.lex_state = 574}, + [4212] = {.lex_state = 238}, [4213] = {.lex_state = 245}, - [4214] = {.lex_state = 149}, - [4215] = {.lex_state = 624}, - [4216] = {.lex_state = 124}, - [4217] = {.lex_state = 31}, - [4218] = {.lex_state = 231}, - [4219] = {.lex_state = 238}, + [4214] = {.lex_state = 231}, + [4215] = {.lex_state = 621}, + [4216] = {.lex_state = 231}, + [4217] = {.lex_state = 238}, + [4218] = {.lex_state = 149}, + [4219] = {.lex_state = 31}, [4220] = {.lex_state = 31}, - [4221] = {.lex_state = 231}, + [4221] = {.lex_state = 31}, [4222] = {.lex_state = 231}, - [4223] = {.lex_state = 238}, - [4224] = {.lex_state = 245}, - [4225] = {.lex_state = 31}, - [4226] = {.lex_state = 31}, - [4227] = {.lex_state = 31}, + [4223] = {.lex_state = 231}, + [4224] = {.lex_state = 0}, + [4225] = {.lex_state = 190}, + [4226] = {.lex_state = 245}, + [4227] = {.lex_state = 124}, [4228] = {.lex_state = 31}, - [4229] = {.lex_state = 226}, - [4230] = {.lex_state = 245}, - [4231] = {.lex_state = 31}, - [4232] = {.lex_state = 577}, - [4233] = {.lex_state = 0}, - [4234] = {.lex_state = 190}, - [4235] = {.lex_state = 124}, - [4236] = {.lex_state = 124}, - [4237] = {.lex_state = 31}, - [4238] = {.lex_state = 124}, - [4239] = {.lex_state = 149}, - [4240] = {.lex_state = 31}, + [4229] = {.lex_state = 31}, + [4230] = {.lex_state = 0}, + [4231] = {.lex_state = 245}, + [4232] = {.lex_state = 31}, + [4233] = {.lex_state = 31}, + [4234] = {.lex_state = 31}, + [4235] = {.lex_state = 31}, + [4236] = {.lex_state = 31}, + [4237] = {.lex_state = 190}, + [4238] = {.lex_state = 245}, + [4239] = {.lex_state = 31}, + [4240] = {.lex_state = 124}, [4241] = {.lex_state = 31}, - [4242] = {.lex_state = 245}, - [4243] = {.lex_state = 31}, - [4244] = {.lex_state = 31}, - [4245] = {.lex_state = 226}, - [4246] = {.lex_state = 0}, + [4242] = {.lex_state = 31}, + [4243] = {.lex_state = 231}, + [4244] = {.lex_state = 124}, + [4245] = {.lex_state = 149}, + [4246] = {.lex_state = 231}, [4247] = {.lex_state = 124}, - [4248] = {.lex_state = 0}, - [4249] = {.lex_state = 231}, - [4250] = {.lex_state = 31}, - [4251] = {.lex_state = 31}, + [4248] = {.lex_state = 31}, + [4249] = {.lex_state = 31}, + [4250] = {.lex_state = 0}, + [4251] = {.lex_state = 0}, [4252] = {.lex_state = 31}, - [4253] = {.lex_state = 231}, - [4254] = {.lex_state = 245}, - [4255] = {.lex_state = 577}, - [4256] = {.lex_state = 124}, - [4257] = {.lex_state = 31}, - [4258] = {.lex_state = 180}, - [4259] = {.lex_state = 31}, - [4260] = {.lex_state = 124}, - [4261] = {.lex_state = 0}, + [4253] = {.lex_state = 31}, + [4254] = {.lex_state = 31}, + [4255] = {.lex_state = 245}, + [4256] = {.lex_state = 129}, + [4257] = {.lex_state = 574}, + [4258] = {.lex_state = 31}, + [4259] = {.lex_state = 124}, + [4260] = {.lex_state = 31}, + [4261] = {.lex_state = 124}, [4262] = {.lex_state = 226}, - [4263] = {.lex_state = 226}, - [4264] = {.lex_state = 217}, - [4265] = {.lex_state = 31}, - [4266] = {.lex_state = 129}, - [4267] = {.lex_state = 0}, - [4268] = {.lex_state = 89}, - [4269] = {.lex_state = 31}, - [4270] = {.lex_state = 31}, - [4271] = {.lex_state = 0}, - [4272] = {.lex_state = 0}, - [4273] = {.lex_state = 31}, - [4274] = {.lex_state = 129}, - [4275] = {.lex_state = 124}, - [4276] = {.lex_state = 0}, - [4277] = {.lex_state = 124}, - [4278] = {.lex_state = 624}, - [4279] = {.lex_state = 31}, - [4280] = {.lex_state = 0}, - [4281] = {.lex_state = 625}, - [4282] = {.lex_state = 31}, - [4283] = {.lex_state = 245}, - [4284] = {.lex_state = 190}, - [4285] = {.lex_state = 31}, + [4263] = {.lex_state = 124}, + [4264] = {.lex_state = 574}, + [4265] = {.lex_state = 226}, + [4266] = {.lex_state = 182}, + [4267] = {.lex_state = 31}, + [4268] = {.lex_state = 217}, + [4269] = {.lex_state = 124}, + [4270] = {.lex_state = 0}, + [4271] = {.lex_state = 89}, + [4272] = {.lex_state = 574}, + [4273] = {.lex_state = 0}, + [4274] = {.lex_state = 31}, + [4275] = {.lex_state = 0}, + [4276] = {.lex_state = 182}, + [4277] = {.lex_state = 129}, + [4278] = {.lex_state = 0}, + [4279] = {.lex_state = 0}, + [4280] = {.lex_state = 124}, + [4281] = {.lex_state = 31}, + [4282] = {.lex_state = 124}, + [4283] = {.lex_state = 226}, + [4284] = {.lex_state = 31}, + [4285] = {.lex_state = 124}, [4286] = {.lex_state = 226}, [4287] = {.lex_state = 31}, - [4288] = {.lex_state = 31}, - [4289] = {.lex_state = 31}, - [4290] = {.lex_state = 190}, - [4291] = {.lex_state = 226}, - [4292] = {.lex_state = 182}, + [4288] = {.lex_state = 182}, + [4289] = {.lex_state = 226}, + [4290] = {.lex_state = 31}, + [4291] = {.lex_state = 31}, + [4292] = {.lex_state = 31}, [4293] = {.lex_state = 31}, - [4294] = {.lex_state = 31}, - [4295] = {.lex_state = 190}, + [4294] = {.lex_state = 238}, + [4295] = {.lex_state = 31}, [4296] = {.lex_state = 190}, - [4297] = {.lex_state = 31}, - [4298] = {.lex_state = 124}, - [4299] = {.lex_state = 31}, - [4300] = {.lex_state = 124}, - [4301] = {.lex_state = 238}, + [4297] = {.lex_state = 190}, + [4298] = {.lex_state = 190}, + [4299] = {.lex_state = 0}, + [4300] = {.lex_state = 31}, + [4301] = {.lex_state = 124}, [4302] = {.lex_state = 31}, - [4303] = {.lex_state = 226}, + [4303] = {.lex_state = 31}, [4304] = {.lex_state = 31}, - [4305] = {.lex_state = 0}, - [4306] = {.lex_state = 149}, - [4307] = {.lex_state = 31}, - [4308] = {.lex_state = 42}, + [4305] = {.lex_state = 226}, + [4306] = {.lex_state = 0}, + [4307] = {.lex_state = 124}, + [4308] = {.lex_state = 31}, [4309] = {.lex_state = 31}, [4310] = {.lex_state = 264}, [4311] = {.lex_state = 31}, - [4312] = {.lex_state = 0}, - [4313] = {.lex_state = 245}, - [4314] = {.lex_state = 264}, - [4315] = {.lex_state = 245}, + [4312] = {.lex_state = 245}, + [4313] = {.lex_state = 131}, + [4314] = {.lex_state = 245}, + [4315] = {.lex_state = 264}, [4316] = {.lex_state = 31}, [4317] = {.lex_state = 264}, - [4318] = {.lex_state = 131}, - [4319] = {.lex_state = 42}, + [4318] = {.lex_state = 31}, + [4319] = {.lex_state = 31}, [4320] = {.lex_state = 31}, [4321] = {.lex_state = 31}, [4322] = {.lex_state = 31}, - [4323] = {.lex_state = 264}, + [4323] = {.lex_state = 42}, [4324] = {.lex_state = 31}, - [4325] = {.lex_state = 31}, + [4325] = {.lex_state = 264}, [4326] = {.lex_state = 31}, [4327] = {.lex_state = 31}, [4328] = {.lex_state = 31}, @@ -37356,875 +37354,877 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [4332] = {.lex_state = 0}, [4333] = {.lex_state = 0}, [4334] = {.lex_state = 31}, - [4335] = {.lex_state = 149}, - [4336] = {.lex_state = 31}, + [4335] = {.lex_state = 31}, + [4336] = {.lex_state = 149}, [4337] = {.lex_state = 31}, [4338] = {.lex_state = 31}, - [4339] = {.lex_state = 31}, + [4339] = {.lex_state = 149}, [4340] = {.lex_state = 31}, [4341] = {.lex_state = 31}, - [4342] = {.lex_state = 122}, - [4343] = {.lex_state = 245}, - [4344] = {.lex_state = 31}, - [4345] = {.lex_state = 31}, + [4342] = {.lex_state = 31}, + [4343] = {.lex_state = 31}, + [4344] = {.lex_state = 245}, + [4345] = {.lex_state = 122}, [4346] = {.lex_state = 31}, [4347] = {.lex_state = 31}, [4348] = {.lex_state = 31}, - [4349] = {.lex_state = 122}, - [4350] = {.lex_state = 226}, + [4349] = {.lex_state = 31}, + [4350] = {.lex_state = 122}, [4351] = {.lex_state = 31}, [4352] = {.lex_state = 0}, [4353] = {.lex_state = 122}, - [4354] = {.lex_state = 226}, - [4355] = {.lex_state = 0}, + [4354] = {.lex_state = 621}, + [4355] = {.lex_state = 226}, [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 226}, + [4357] = {.lex_state = 0}, [4358] = {.lex_state = 0}, - [4359] = {.lex_state = 124}, - [4360] = {.lex_state = 0}, - [4361] = {.lex_state = 0}, + [4359] = {.lex_state = 31}, + [4360] = {.lex_state = 226}, + [4361] = {.lex_state = 226}, [4362] = {.lex_state = 0}, [4363] = {.lex_state = 0}, - [4364] = {.lex_state = 93}, - [4365] = {.lex_state = 190}, - [4366] = {.lex_state = 245}, - [4367] = {.lex_state = 124}, - [4368] = {.lex_state = 129}, - [4369] = {.lex_state = 31}, - [4370] = {.lex_state = 31}, - [4371] = {.lex_state = 31}, - [4372] = {.lex_state = 31}, - [4373] = {.lex_state = 577}, - [4374] = {.lex_state = 124}, - [4375] = {.lex_state = 126}, - [4376] = {.lex_state = 0}, - [4377] = {.lex_state = 124}, + [4364] = {.lex_state = 0}, + [4365] = {.lex_state = 0}, + [4366] = {.lex_state = 124}, + [4367] = {.lex_state = 245}, + [4368] = {.lex_state = 0}, + [4369] = {.lex_state = 129}, + [4370] = {.lex_state = 0}, + [4371] = {.lex_state = 149}, + [4372] = {.lex_state = 0}, + [4373] = {.lex_state = 123}, + [4374] = {.lex_state = 626}, + [4375] = {.lex_state = 31}, + [4376] = {.lex_state = 126}, + [4377] = {.lex_state = 0}, [4378] = {.lex_state = 89}, - [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 124}, - [4381] = {.lex_state = 93}, - [4382] = {.lex_state = 46}, - [4383] = {.lex_state = 0}, - [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 0}, - [4386] = {.lex_state = 124}, - [4387] = {.lex_state = 0}, + [4379] = {.lex_state = 93}, + [4380] = {.lex_state = 31}, + [4381] = {.lex_state = 124}, + [4382] = {.lex_state = 124}, + [4383] = {.lex_state = 31}, + [4384] = {.lex_state = 93}, + [4385] = {.lex_state = 46}, + [4386] = {.lex_state = 31}, + [4387] = {.lex_state = 31}, [4388] = {.lex_state = 124}, - [4389] = {.lex_state = 0}, + [4389] = {.lex_state = 574}, [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 624}, - [4392] = {.lex_state = 0}, - [4393] = {.lex_state = 123}, + [4391] = {.lex_state = 124}, + [4392] = {.lex_state = 124}, + [4393] = {.lex_state = 93}, [4394] = {.lex_state = 0}, [4395] = {.lex_state = 0}, - [4396] = {.lex_state = 0}, + [4396] = {.lex_state = 124}, [4397] = {.lex_state = 0}, [4398] = {.lex_state = 126}, [4399] = {.lex_state = 0}, - [4400] = {.lex_state = 46}, - [4401] = {.lex_state = 34}, - [4402] = {.lex_state = 34}, + [4400] = {.lex_state = 621}, + [4401] = {.lex_state = 0}, + [4402] = {.lex_state = 123}, [4403] = {.lex_state = 0}, [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 31}, - [4406] = {.lex_state = 0}, - [4407] = {.lex_state = 123}, - [4408] = {.lex_state = 34}, + [4405] = {.lex_state = 124}, + [4406] = {.lex_state = 46}, + [4407] = {.lex_state = 36}, + [4408] = {.lex_state = 0}, [4409] = {.lex_state = 0}, - [4410] = {.lex_state = 0}, - [4411] = {.lex_state = 93}, + [4410] = {.lex_state = 278}, + [4411] = {.lex_state = 36}, [4412] = {.lex_state = 0}, - [4413] = {.lex_state = 93}, - [4414] = {.lex_state = 190}, - [4415] = {.lex_state = 0}, - [4416] = {.lex_state = 0}, - [4417] = {.lex_state = 0}, - [4418] = {.lex_state = 0}, + [4413] = {.lex_state = 0}, + [4414] = {.lex_state = 0}, + [4415] = {.lex_state = 42}, + [4416] = {.lex_state = 93}, + [4417] = {.lex_state = 190}, + [4418] = {.lex_state = 93}, [4419] = {.lex_state = 0}, - [4420] = {.lex_state = 0}, - [4421] = {.lex_state = 129}, + [4420] = {.lex_state = 129}, + [4421] = {.lex_state = 0}, [4422] = {.lex_state = 0}, - [4423] = {.lex_state = 31}, + [4423] = {.lex_state = 0}, [4424] = {.lex_state = 124}, [4425] = {.lex_state = 124}, [4426] = {.lex_state = 124}, [4427] = {.lex_state = 0}, - [4428] = {.lex_state = 271}, - [4429] = {.lex_state = 0}, - [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 34}, + [4428] = {.lex_state = 0}, + [4429] = {.lex_state = 271}, + [4430] = {.lex_state = 123}, + [4431] = {.lex_state = 0}, [4432] = {.lex_state = 0}, [4433] = {.lex_state = 0}, [4434] = {.lex_state = 0}, - [4435] = {.lex_state = 0}, - [4436] = {.lex_state = 124}, + [4435] = {.lex_state = 36}, + [4436] = {.lex_state = 0}, [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 233}, - [4439] = {.lex_state = 149}, + [4438] = {.lex_state = 124}, + [4439] = {.lex_state = 0}, [4440] = {.lex_state = 0}, - [4441] = {.lex_state = 149}, + [4441] = {.lex_state = 0}, [4442] = {.lex_state = 0}, [4443] = {.lex_state = 0}, [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 149}, - [4446] = {.lex_state = 229}, - [4447] = {.lex_state = 123}, + [4445] = {.lex_state = 0}, + [4446] = {.lex_state = 0}, + [4447] = {.lex_state = 0}, [4448] = {.lex_state = 149}, - [4449] = {.lex_state = 190}, - [4450] = {.lex_state = 124}, - [4451] = {.lex_state = 124}, - [4452] = {.lex_state = 124}, - [4453] = {.lex_state = 124}, - [4454] = {.lex_state = 149}, - [4455] = {.lex_state = 0}, + [4449] = {.lex_state = 149}, + [4450] = {.lex_state = 31}, + [4451] = {.lex_state = 149}, + [4452] = {.lex_state = 149}, + [4453] = {.lex_state = 190}, + [4454] = {.lex_state = 124}, + [4455] = {.lex_state = 229}, [4456] = {.lex_state = 0}, - [4457] = {.lex_state = 0}, - [4458] = {.lex_state = 0}, - [4459] = {.lex_state = 0}, - [4460] = {.lex_state = 31}, - [4461] = {.lex_state = 129}, - [4462] = {.lex_state = 46}, - [4463] = {.lex_state = 46}, + [4457] = {.lex_state = 124}, + [4458] = {.lex_state = 124}, + [4459] = {.lex_state = 36}, + [4460] = {.lex_state = 123}, + [4461] = {.lex_state = 180}, + [4462] = {.lex_state = 149}, + [4463] = {.lex_state = 0}, [4464] = {.lex_state = 149}, - [4465] = {.lex_state = 89}, - [4466] = {.lex_state = 46}, - [4467] = {.lex_state = 93}, - [4468] = {.lex_state = 123}, - [4469] = {.lex_state = 611}, - [4470] = {.lex_state = 149}, + [4465] = {.lex_state = 0}, + [4466] = {.lex_state = 0}, + [4467] = {.lex_state = 0}, + [4468] = {.lex_state = 31}, + [4469] = {.lex_state = 46}, + [4470] = {.lex_state = 0}, [4471] = {.lex_state = 93}, - [4472] = {.lex_state = 123}, - [4473] = {.lex_state = 231}, - [4474] = {.lex_state = 93}, - [4475] = {.lex_state = 229}, - [4476] = {.lex_state = 190}, - [4477] = {.lex_state = 190}, - [4478] = {.lex_state = 190}, - [4479] = {.lex_state = 124}, + [4472] = {.lex_state = 608}, + [4473] = {.lex_state = 46}, + [4474] = {.lex_state = 46}, + [4475] = {.lex_state = 93}, + [4476] = {.lex_state = 229}, + [4477] = {.lex_state = 0}, + [4478] = {.lex_state = 123}, + [4479] = {.lex_state = 149}, [4480] = {.lex_state = 124}, - [4481] = {.lex_state = 0}, - [4482] = {.lex_state = 149}, - [4483] = {.lex_state = 124}, - [4484] = {.lex_state = 149}, - [4485] = {.lex_state = 232}, - [4486] = {.lex_state = 0}, - [4487] = {.lex_state = 0}, - [4488] = {.lex_state = 0}, + [4481] = {.lex_state = 124}, + [4482] = {.lex_state = 190}, + [4483] = {.lex_state = 190}, + [4484] = {.lex_state = 190}, + [4485] = {.lex_state = 231}, + [4486] = {.lex_state = 36}, + [4487] = {.lex_state = 93}, + [4488] = {.lex_state = 149}, [4489] = {.lex_state = 0}, - [4490] = {.lex_state = 93}, - [4491] = {.lex_state = 278}, + [4490] = {.lex_state = 0}, + [4491] = {.lex_state = 93}, [4492] = {.lex_state = 0}, - [4493] = {.lex_state = 93}, + [4493] = {.lex_state = 0}, [4494] = {.lex_state = 0}, - [4495] = {.lex_state = 0}, - [4496] = {.lex_state = 124}, - [4497] = {.lex_state = 93}, - [4498] = {.lex_state = 93}, - [4499] = {.lex_state = 229}, - [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 93}, - [4502] = {.lex_state = 180}, - [4503] = {.lex_state = 31}, - [4504] = {.lex_state = 0}, - [4505] = {.lex_state = 124}, - [4506] = {.lex_state = 124}, + [4495] = {.lex_state = 149}, + [4496] = {.lex_state = 123}, + [4497] = {.lex_state = 232}, + [4498] = {.lex_state = 0}, + [4499] = {.lex_state = 124}, + [4500] = {.lex_state = 31}, + [4501] = {.lex_state = 0}, + [4502] = {.lex_state = 93}, + [4503] = {.lex_state = 0}, + [4504] = {.lex_state = 93}, + [4505] = {.lex_state = 93}, + [4506] = {.lex_state = 229}, [4507] = {.lex_state = 0}, - [4508] = {.lex_state = 0}, - [4509] = {.lex_state = 93}, - [4510] = {.lex_state = 190}, - [4511] = {.lex_state = 190}, + [4508] = {.lex_state = 124}, + [4509] = {.lex_state = 124}, + [4510] = {.lex_state = 233}, + [4511] = {.lex_state = 0}, [4512] = {.lex_state = 93}, - [4513] = {.lex_state = 190}, - [4514] = {.lex_state = 124}, + [4513] = {.lex_state = 0}, + [4514] = {.lex_state = 93}, [4515] = {.lex_state = 190}, [4516] = {.lex_state = 190}, - [4517] = {.lex_state = 190}, + [4517] = {.lex_state = 89}, [4518] = {.lex_state = 0}, - [4519] = {.lex_state = 0}, - [4520] = {.lex_state = 149}, - [4521] = {.lex_state = 0}, + [4519] = {.lex_state = 190}, + [4520] = {.lex_state = 190}, + [4521] = {.lex_state = 190}, [4522] = {.lex_state = 31}, - [4523] = {.lex_state = 0}, - [4524] = {.lex_state = 124}, + [4523] = {.lex_state = 149}, + [4524] = {.lex_state = 31}, [4525] = {.lex_state = 0}, - [4526] = {.lex_state = 124}, + [4526] = {.lex_state = 0}, [4527] = {.lex_state = 0}, - [4528] = {.lex_state = 0}, + [4528] = {.lex_state = 124}, [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 278}, - [4531] = {.lex_state = 124}, - [4532] = {.lex_state = 31}, + [4530] = {.lex_state = 124}, + [4531] = {.lex_state = 31}, + [4532] = {.lex_state = 0}, [4533] = {.lex_state = 0}, [4534] = {.lex_state = 0}, [4535] = {.lex_state = 0}, [4536] = {.lex_state = 124}, - [4537] = {.lex_state = 31}, + [4537] = {.lex_state = 0}, [4538] = {.lex_state = 0}, - [4539] = {.lex_state = 149}, - [4540] = {.lex_state = 629}, - [4541] = {.lex_state = 34}, - [4542] = {.lex_state = 124}, - [4543] = {.lex_state = 149}, - [4544] = {.lex_state = 278}, - [4545] = {.lex_state = 0}, - [4546] = {.lex_state = 0}, - [4547] = {.lex_state = 46}, - [4548] = {.lex_state = 0}, - [4549] = {.lex_state = 124}, - [4550] = {.lex_state = 0}, - [4551] = {.lex_state = 124}, - [4552] = {.lex_state = 34}, + [4539] = {.lex_state = 0}, + [4540] = {.lex_state = 149}, + [4541] = {.lex_state = 124}, + [4542] = {.lex_state = 0}, + [4543] = {.lex_state = 124}, + [4544] = {.lex_state = 36}, + [4545] = {.lex_state = 124}, + [4546] = {.lex_state = 124}, + [4547] = {.lex_state = 124}, + [4548] = {.lex_state = 46}, + [4549] = {.lex_state = 149}, + [4550] = {.lex_state = 31}, + [4551] = {.lex_state = 31}, + [4552] = {.lex_state = 124}, [4553] = {.lex_state = 0}, - [4554] = {.lex_state = 124}, - [4555] = {.lex_state = 31}, + [4554] = {.lex_state = 254}, + [4555] = {.lex_state = 36}, [4556] = {.lex_state = 124}, - [4557] = {.lex_state = 124}, + [4557] = {.lex_state = 0}, [4558] = {.lex_state = 124}, [4559] = {.lex_state = 124}, - [4560] = {.lex_state = 0}, - [4561] = {.lex_state = 0}, + [4560] = {.lex_state = 124}, + [4561] = {.lex_state = 124}, [4562] = {.lex_state = 0}, [4563] = {.lex_state = 0}, - [4564] = {.lex_state = 0}, + [4564] = {.lex_state = 124}, [4565] = {.lex_state = 0}, - [4566] = {.lex_state = 124}, + [4566] = {.lex_state = 0}, [4567] = {.lex_state = 0}, - [4568] = {.lex_state = 124}, - [4569] = {.lex_state = 124}, + [4568] = {.lex_state = 0}, + [4569] = {.lex_state = 0}, [4570] = {.lex_state = 124}, - [4571] = {.lex_state = 124}, - [4572] = {.lex_state = 149}, - [4573] = {.lex_state = 271}, - [4574] = {.lex_state = 149}, - [4575] = {.lex_state = 190}, + [4571] = {.lex_state = 31}, + [4572] = {.lex_state = 124}, + [4573] = {.lex_state = 278}, + [4574] = {.lex_state = 278}, + [4575] = {.lex_state = 124}, [4576] = {.lex_state = 190}, - [4577] = {.lex_state = 31}, - [4578] = {.lex_state = 124}, - [4579] = {.lex_state = 31}, - [4580] = {.lex_state = 124}, + [4577] = {.lex_state = 190}, + [4578] = {.lex_state = 271}, + [4579] = {.lex_state = 149}, + [4580] = {.lex_state = 149}, [4581] = {.lex_state = 124}, - [4582] = {.lex_state = 0}, - [4583] = {.lex_state = 124}, - [4584] = {.lex_state = 226}, - [4585] = {.lex_state = 0}, - [4586] = {.lex_state = 124}, - [4587] = {.lex_state = 31}, + [4582] = {.lex_state = 124}, + [4583] = {.lex_state = 129}, + [4584] = {.lex_state = 0}, + [4585] = {.lex_state = 31}, + [4586] = {.lex_state = 626}, + [4587] = {.lex_state = 124}, [4588] = {.lex_state = 124}, - [4589] = {.lex_state = 31}, - [4590] = {.lex_state = 124}, - [4591] = {.lex_state = 31}, - [4592] = {.lex_state = 31}, + [4589] = {.lex_state = 124}, + [4590] = {.lex_state = 0}, + [4591] = {.lex_state = 124}, + [4592] = {.lex_state = 124}, [4593] = {.lex_state = 31}, - [4594] = {.lex_state = 254}, + [4594] = {.lex_state = 0}, [4595] = {.lex_state = 124}, [4596] = {.lex_state = 190}, [4597] = {.lex_state = 31}, [4598] = {.lex_state = 269}, - [4599] = {.lex_state = 46}, - [4600] = {.lex_state = 93}, - [4601] = {.lex_state = 232}, - [4602] = {.lex_state = 31}, - [4603] = {.lex_state = 34}, - [4604] = {.lex_state = 0}, - [4605] = {.lex_state = 577}, - [4606] = {.lex_state = 190}, - [4607] = {.lex_state = 124}, - [4608] = {.lex_state = 124}, - [4609] = {.lex_state = 93}, - [4610] = {.lex_state = 229}, - [4611] = {.lex_state = 0}, - [4612] = {.lex_state = 42}, - [4613] = {.lex_state = 123}, - [4614] = {.lex_state = 629}, - [4615] = {.lex_state = 124}, - [4616] = {.lex_state = 31}, - [4617] = {.lex_state = 31}, + [4599] = {.lex_state = 124}, + [4600] = {.lex_state = 46}, + [4601] = {.lex_state = 31}, + [4602] = {.lex_state = 93}, + [4603] = {.lex_state = 232}, + [4604] = {.lex_state = 124}, + [4605] = {.lex_state = 0}, + [4606] = {.lex_state = 574}, + [4607] = {.lex_state = 31}, + [4608] = {.lex_state = 190}, + [4609] = {.lex_state = 0}, + [4610] = {.lex_state = 93}, + [4611] = {.lex_state = 229}, + [4612] = {.lex_state = 31}, + [4613] = {.lex_state = 226}, + [4614] = {.lex_state = 31}, + [4615] = {.lex_state = 31}, + [4616] = {.lex_state = 124}, + [4617] = {.lex_state = 124}, [4618] = {.lex_state = 149}, [4619] = {.lex_state = 31}, - [4620] = {.lex_state = 149}, - [4621] = {.lex_state = 93}, - [4622] = {.lex_state = 0}, - [4623] = {.lex_state = 2182}, - [4624] = {.lex_state = 0}, - [4625] = {.lex_state = 2182}, - [4626] = {.lex_state = 2182}, - [4627] = {.lex_state = 2182}, - [4628] = {.lex_state = 2182}, + [4620] = {.lex_state = 31}, + [4621] = {.lex_state = 0}, + [4622] = {.lex_state = 149}, + [4623] = {.lex_state = 124}, + [4624] = {.lex_state = 124}, + [4625] = {.lex_state = 226}, + [4626] = {.lex_state = 149}, + [4627] = {.lex_state = 149}, + [4628] = {.lex_state = 0}, [4629] = {.lex_state = 0}, - [4630] = {.lex_state = 2186}, - [4631] = {.lex_state = 2186}, - [4632] = {.lex_state = 2186}, - [4633] = {.lex_state = 2186}, + [4630] = {.lex_state = 0}, + [4631] = {.lex_state = 124}, + [4632] = {.lex_state = 229}, + [4633] = {.lex_state = 124}, [4634] = {.lex_state = 0}, [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 124}, + [4636] = {.lex_state = 2183}, [4637] = {.lex_state = 0}, - [4638] = {.lex_state = 0}, + [4638] = {.lex_state = 229}, [4639] = {.lex_state = 0}, - [4640] = {.lex_state = 629}, - [4641] = {.lex_state = 126}, + [4640] = {.lex_state = 123}, + [4641] = {.lex_state = 0}, [4642] = {.lex_state = 0}, [4643] = {.lex_state = 0}, [4644] = {.lex_state = 0}, - [4645] = {.lex_state = 0}, - [4646] = {.lex_state = 2182}, + [4645] = {.lex_state = 124}, + [4646] = {.lex_state = 229}, [4647] = {.lex_state = 0}, - [4648] = {.lex_state = 0}, - [4649] = {.lex_state = 2186}, - [4650] = {.lex_state = 2186}, - [4651] = {.lex_state = 0}, - [4652] = {.lex_state = 149}, - [4653] = {.lex_state = 229}, - [4654] = {.lex_state = 124}, - [4655] = {.lex_state = 2186}, - [4656] = {.lex_state = 124}, - [4657] = {.lex_state = 2182}, - [4658] = {.lex_state = 2182}, - [4659] = {.lex_state = 0}, - [4660] = {.lex_state = 229}, - [4661] = {.lex_state = 229}, - [4662] = {.lex_state = 0}, - [4663] = {.lex_state = 2182}, - [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 2182}, + [4648] = {.lex_state = 124}, + [4649] = {.lex_state = 124}, + [4650] = {.lex_state = 0}, + [4651] = {.lex_state = 229}, + [4652] = {.lex_state = 0}, + [4653] = {.lex_state = 0}, + [4654] = {.lex_state = 229}, + [4655] = {.lex_state = 0}, + [4656] = {.lex_state = 2179}, + [4657] = {.lex_state = 2179}, + [4658] = {.lex_state = 229}, + [4659] = {.lex_state = 124}, + [4660] = {.lex_state = 124}, + [4661] = {.lex_state = 124}, + [4662] = {.lex_state = 2179}, + [4663] = {.lex_state = 2179}, + [4664] = {.lex_state = 124}, + [4665] = {.lex_state = 0}, [4666] = {.lex_state = 0}, [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 0}, - [4669] = {.lex_state = 229}, - [4670] = {.lex_state = 0}, - [4671] = {.lex_state = 229}, - [4672] = {.lex_state = 0}, - [4673] = {.lex_state = 229}, - [4674] = {.lex_state = 578}, - [4675] = {.lex_state = 0}, - [4676] = {.lex_state = 124}, - [4677] = {.lex_state = 229}, - [4678] = {.lex_state = 124}, - [4679] = {.lex_state = 0}, - [4680] = {.lex_state = 0}, - [4681] = {.lex_state = 124}, - [4682] = {.lex_state = 124}, + [4668] = {.lex_state = 124}, + [4669] = {.lex_state = 36}, + [4670] = {.lex_state = 2183}, + [4671] = {.lex_state = 124}, + [4672] = {.lex_state = 2183}, + [4673] = {.lex_state = 0}, + [4674] = {.lex_state = 124}, + [4675] = {.lex_state = 93}, + [4676] = {.lex_state = 0}, + [4677] = {.lex_state = 124}, + [4678] = {.lex_state = 2183}, + [4679] = {.lex_state = 621}, + [4680] = {.lex_state = 2183}, + [4681] = {.lex_state = 0}, + [4682] = {.lex_state = 0}, [4683] = {.lex_state = 0}, - [4684] = {.lex_state = 124}, - [4685] = {.lex_state = 226}, - [4686] = {.lex_state = 0}, - [4687] = {.lex_state = 0}, + [4684] = {.lex_state = 2183}, + [4685] = {.lex_state = 0}, + [4686] = {.lex_state = 124}, + [4687] = {.lex_state = 574}, [4688] = {.lex_state = 0}, - [4689] = {.lex_state = 0}, + [4689] = {.lex_state = 2181}, [4690] = {.lex_state = 0}, [4691] = {.lex_state = 0}, - [4692] = {.lex_state = 0}, + [4692] = {.lex_state = 124}, [4693] = {.lex_state = 0}, - [4694] = {.lex_state = 0}, - [4695] = {.lex_state = 229}, + [4694] = {.lex_state = 126}, + [4695] = {.lex_state = 124}, [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 229}, - [4698] = {.lex_state = 229}, + [4697] = {.lex_state = 0}, + [4698] = {.lex_state = 0}, [4699] = {.lex_state = 0}, - [4700] = {.lex_state = 123}, - [4701] = {.lex_state = 124}, - [4702] = {.lex_state = 0}, - [4703] = {.lex_state = 0}, - [4704] = {.lex_state = 0}, + [4700] = {.lex_state = 229}, + [4701] = {.lex_state = 2181}, + [4702] = {.lex_state = 124}, + [4703] = {.lex_state = 2179}, + [4704] = {.lex_state = 124}, [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 577}, + [4706] = {.lex_state = 124}, [4707] = {.lex_state = 0}, - [4708] = {.lex_state = 2184}, - [4709] = {.lex_state = 149}, - [4710] = {.lex_state = 124}, - [4711] = {.lex_state = 124}, - [4712] = {.lex_state = 34}, + [4708] = {.lex_state = 0}, + [4709] = {.lex_state = 2179}, + [4710] = {.lex_state = 0}, + [4711] = {.lex_state = 2}, + [4712] = {.lex_state = 126}, [4713] = {.lex_state = 229}, - [4714] = {.lex_state = 2186}, - [4715] = {.lex_state = 31}, - [4716] = {.lex_state = 124}, + [4714] = {.lex_state = 0}, + [4715] = {.lex_state = 2179}, + [4716] = {.lex_state = 126}, [4717] = {.lex_state = 124}, [4718] = {.lex_state = 0}, - [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 124}, - [4721] = {.lex_state = 124}, - [4722] = {.lex_state = 0}, - [4723] = {.lex_state = 229}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 2182}, - [4726] = {.lex_state = 0}, + [4719] = {.lex_state = 2179}, + [4720] = {.lex_state = 149}, + [4721] = {.lex_state = 574}, + [4722] = {.lex_state = 124}, + [4723] = {.lex_state = 124}, + [4724] = {.lex_state = 626}, + [4725] = {.lex_state = 1711}, + [4726] = {.lex_state = 2181}, [4727] = {.lex_state = 124}, - [4728] = {.lex_state = 2184}, - [4729] = {.lex_state = 124}, - [4730] = {.lex_state = 124}, - [4731] = {.lex_state = 124}, + [4728] = {.lex_state = 0}, + [4729] = {.lex_state = 2181}, + [4730] = {.lex_state = 0}, + [4731] = {.lex_state = 2183}, [4732] = {.lex_state = 124}, - [4733] = {.lex_state = 126}, - [4734] = {.lex_state = 0}, - [4735] = {.lex_state = 2184}, - [4736] = {.lex_state = 124}, + [4733] = {.lex_state = 124}, + [4734] = {.lex_state = 2183}, + [4735] = {.lex_state = 124}, + [4736] = {.lex_state = 2179}, [4737] = {.lex_state = 0}, - [4738] = {.lex_state = 0}, - [4739] = {.lex_state = 2182}, - [4740] = {.lex_state = 0}, - [4741] = {.lex_state = 123}, - [4742] = {.lex_state = 124}, - [4743] = {.lex_state = 126}, - [4744] = {.lex_state = 124}, - [4745] = {.lex_state = 624}, - [4746] = {.lex_state = 2182}, - [4747] = {.lex_state = 0}, + [4738] = {.lex_state = 2179}, + [4739] = {.lex_state = 0}, + [4740] = {.lex_state = 124}, + [4741] = {.lex_state = 31}, + [4742] = {.lex_state = 0}, + [4743] = {.lex_state = 0}, + [4744] = {.lex_state = 273}, + [4745] = {.lex_state = 124}, + [4746] = {.lex_state = 0}, + [4747] = {.lex_state = 229}, [4748] = {.lex_state = 124}, - [4749] = {.lex_state = 124}, - [4750] = {.lex_state = 124}, - [4751] = {.lex_state = 2184}, - [4752] = {.lex_state = 577}, - [4753] = {.lex_state = 124}, - [4754] = {.lex_state = 124}, - [4755] = {.lex_state = 2182}, - [4756] = {.lex_state = 0}, - [4757] = {.lex_state = 2182}, - [4758] = {.lex_state = 124}, - [4759] = {.lex_state = 624}, - [4760] = {.lex_state = 149}, - [4761] = {.lex_state = 124}, - [4762] = {.lex_state = 149}, + [4749] = {.lex_state = 273}, + [4750] = {.lex_state = 2179}, + [4751] = {.lex_state = 0}, + [4752] = {.lex_state = 124}, + [4753] = {.lex_state = 2179}, + [4754] = {.lex_state = 0}, + [4755] = {.lex_state = 124}, + [4756] = {.lex_state = 2183}, + [4757] = {.lex_state = 2181}, + [4758] = {.lex_state = 0}, + [4759] = {.lex_state = 2179}, + [4760] = {.lex_state = 2179}, + [4761] = {.lex_state = 0}, + [4762] = {.lex_state = 124}, [4763] = {.lex_state = 0}, - [4764] = {.lex_state = 2184}, - [4765] = {.lex_state = 124}, - [4766] = {.lex_state = 93}, - [4767] = {.lex_state = 124}, - [4768] = {.lex_state = 124}, - [4769] = {.lex_state = 273}, - [4770] = {.lex_state = 124}, - [4771] = {.lex_state = 0}, - [4772] = {.lex_state = 1714}, - [4773] = {.lex_state = 273}, + [4764] = {.lex_state = 2179}, + [4765] = {.lex_state = 2179}, + [4766] = {.lex_state = 124}, + [4767] = {.lex_state = 2179}, + [4768] = {.lex_state = 0}, + [4769] = {.lex_state = 124}, + [4770] = {.lex_state = 31}, + [4771] = {.lex_state = 229}, + [4772] = {.lex_state = 0}, + [4773] = {.lex_state = 0}, [4774] = {.lex_state = 124}, - [4775] = {.lex_state = 2182}, - [4776] = {.lex_state = 0}, - [4777] = {.lex_state = 2182}, - [4778] = {.lex_state = 124}, + [4775] = {.lex_state = 229}, + [4776] = {.lex_state = 123}, + [4777] = {.lex_state = 621}, + [4778] = {.lex_state = 89}, [4779] = {.lex_state = 0}, - [4780] = {.lex_state = 124}, + [4780] = {.lex_state = 0}, [4781] = {.lex_state = 0}, - [4782] = {.lex_state = 0}, - [4783] = {.lex_state = 2}, - [4784] = {.lex_state = 31}, - [4785] = {.lex_state = 124}, - [4786] = {.lex_state = 229}, - [4787] = {.lex_state = 229}, + [4782] = {.lex_state = 229}, + [4783] = {.lex_state = 124}, + [4784] = {.lex_state = 229}, + [4785] = {.lex_state = 0}, + [4786] = {.lex_state = 0}, + [4787] = {.lex_state = 575}, [4788] = {.lex_state = 0}, - [4789] = {.lex_state = 2186}, - [4790] = {.lex_state = 124}, - [4791] = {.lex_state = 123}, - [4792] = {.lex_state = 0}, - [4793] = {.lex_state = 577}, - [4794] = {.lex_state = 577}, - [4795] = {.lex_state = 31}, - [4796] = {.lex_state = 0}, - [4797] = {.lex_state = 0}, - [4798] = {.lex_state = 31}, - [4799] = {.lex_state = 31}, - [4800] = {.lex_state = 0}, - [4801] = {.lex_state = 0, .external_lex_state = 3}, - [4802] = {.lex_state = 1189}, + [4789] = {.lex_state = 0}, + [4790] = {.lex_state = 229}, + [4791] = {.lex_state = 124}, + [4792] = {.lex_state = 1686}, + [4793] = {.lex_state = 229}, + [4794] = {.lex_state = 0}, + [4795] = {.lex_state = 574}, + [4796] = {.lex_state = 574}, + [4797] = {.lex_state = 1186}, + [4798] = {.lex_state = 619}, + [4799] = {.lex_state = 0}, + [4800] = {.lex_state = 31}, + [4801] = {.lex_state = 0}, + [4802] = {.lex_state = 619}, [4803] = {.lex_state = 0}, - [4804] = {.lex_state = 31}, - [4805] = {.lex_state = 0, .external_lex_state = 3}, - [4806] = {.lex_state = 0}, - [4807] = {.lex_state = 31}, - [4808] = {.lex_state = 31}, - [4809] = {.lex_state = 0}, + [4804] = {.lex_state = 0, .external_lex_state = 3}, + [4805] = {.lex_state = 0}, + [4806] = {.lex_state = 1186}, + [4807] = {.lex_state = 0, .external_lex_state = 4}, + [4808] = {.lex_state = 0}, + [4809] = {.lex_state = 0, .external_lex_state = 4}, [4810] = {.lex_state = 0}, [4811] = {.lex_state = 0}, - [4812] = {.lex_state = 0}, - [4813] = {.lex_state = 577}, - [4814] = {.lex_state = 577}, - [4815] = {.lex_state = 0}, - [4816] = {.lex_state = 0}, - [4817] = {.lex_state = 31}, - [4818] = {.lex_state = 1189}, - [4819] = {.lex_state = 0}, + [4812] = {.lex_state = 1690}, + [4813] = {.lex_state = 0}, + [4814] = {.lex_state = 0}, + [4815] = {.lex_state = 574}, + [4816] = {.lex_state = 574}, + [4817] = {.lex_state = 0}, + [4818] = {.lex_state = 0}, + [4819] = {.lex_state = 31}, [4820] = {.lex_state = 0}, - [4821] = {.lex_state = 46}, - [4822] = {.lex_state = 0, .external_lex_state = 3}, - [4823] = {.lex_state = 1189}, - [4824] = {.lex_state = 0}, - [4825] = {.lex_state = 123}, + [4821] = {.lex_state = 31}, + [4822] = {.lex_state = 233}, + [4823] = {.lex_state = 619}, + [4824] = {.lex_state = 0, .external_lex_state = 4}, + [4825] = {.lex_state = 46}, [4826] = {.lex_state = 0}, - [4827] = {.lex_state = 31}, + [4827] = {.lex_state = 0}, [4828] = {.lex_state = 0}, - [4829] = {.lex_state = 0}, - [4830] = {.lex_state = 577}, - [4831] = {.lex_state = 577}, - [4832] = {.lex_state = 31}, - [4833] = {.lex_state = 1714}, - [4834] = {.lex_state = 577}, - [4835] = {.lex_state = 31}, - [4836] = {.lex_state = 622}, - [4837] = {.lex_state = 0, .external_lex_state = 3}, - [4838] = {.lex_state = 29}, - [4839] = {.lex_state = 31}, + [4829] = {.lex_state = 574}, + [4830] = {.lex_state = 148}, + [4831] = {.lex_state = 0}, + [4832] = {.lex_state = 574}, + [4833] = {.lex_state = 574}, + [4834] = {.lex_state = 31}, + [4835] = {.lex_state = 1186}, + [4836] = {.lex_state = 0}, + [4837] = {.lex_state = 1186}, + [4838] = {.lex_state = 0}, + [4839] = {.lex_state = 0, .external_lex_state = 4}, [4840] = {.lex_state = 0}, - [4841] = {.lex_state = 2184}, - [4842] = {.lex_state = 0}, - [4843] = {.lex_state = 0}, - [4844] = {.lex_state = 577}, - [4845] = {.lex_state = 577}, - [4846] = {.lex_state = 31}, - [4847] = {.lex_state = 0, .external_lex_state = 3}, - [4848] = {.lex_state = 2}, - [4849] = {.lex_state = 46}, - [4850] = {.lex_state = 0, .external_lex_state = 3}, - [4851] = {.lex_state = 229}, - [4852] = {.lex_state = 0}, - [4853] = {.lex_state = 233}, - [4854] = {.lex_state = 0}, - [4855] = {.lex_state = 0}, - [4856] = {.lex_state = 577}, - [4857] = {.lex_state = 577}, - [4858] = {.lex_state = 0}, - [4859] = {.lex_state = 0}, - [4860] = {.lex_state = 0, .external_lex_state = 3}, - [4861] = {.lex_state = 232}, - [4862] = {.lex_state = 2}, - [4863] = {.lex_state = 0}, - [4864] = {.lex_state = 0}, - [4865] = {.lex_state = 577}, - [4866] = {.lex_state = 577}, - [4867] = {.lex_state = 229}, - [4868] = {.lex_state = 31}, - [4869] = {.lex_state = 0, .external_lex_state = 3}, - [4870] = {.lex_state = 0}, - [4871] = {.lex_state = 31}, - [4872] = {.lex_state = 229}, - [4873] = {.lex_state = 0}, - [4874] = {.lex_state = 577}, - [4875] = {.lex_state = 577}, - [4876] = {.lex_state = 31}, - [4877] = {.lex_state = 2186}, - [4878] = {.lex_state = 0, .external_lex_state = 3}, - [4879] = {.lex_state = 0}, - [4880] = {.lex_state = 0}, - [4881] = {.lex_state = 577}, - [4882] = {.lex_state = 577}, - [4883] = {.lex_state = 0, .external_lex_state = 3}, - [4884] = {.lex_state = 229}, - [4885] = {.lex_state = 0, .external_lex_state = 3}, - [4886] = {.lex_state = 0}, - [4887] = {.lex_state = 0}, - [4888] = {.lex_state = 577}, - [4889] = {.lex_state = 577}, - [4890] = {.lex_state = 577}, + [4841] = {.lex_state = 229}, + [4842] = {.lex_state = 619}, + [4843] = {.lex_state = 619}, + [4844] = {.lex_state = 0}, + [4845] = {.lex_state = 0}, + [4846] = {.lex_state = 574}, + [4847] = {.lex_state = 574}, + [4848] = {.lex_state = 31}, + [4849] = {.lex_state = 2181}, + [4850] = {.lex_state = 0}, + [4851] = {.lex_state = 0}, + [4852] = {.lex_state = 0, .external_lex_state = 4}, + [4853] = {.lex_state = 29}, + [4854] = {.lex_state = 232}, + [4855] = {.lex_state = 31}, + [4856] = {.lex_state = 0}, + [4857] = {.lex_state = 0}, + [4858] = {.lex_state = 574}, + [4859] = {.lex_state = 574}, + [4860] = {.lex_state = 2}, + [4861] = {.lex_state = 0}, + [4862] = {.lex_state = 0, .external_lex_state = 4}, + [4863] = {.lex_state = 31}, + [4864] = {.lex_state = 229}, + [4865] = {.lex_state = 123}, + [4866] = {.lex_state = 0}, + [4867] = {.lex_state = 574}, + [4868] = {.lex_state = 574}, + [4869] = {.lex_state = 0}, + [4870] = {.lex_state = 123}, + [4871] = {.lex_state = 0, .external_lex_state = 4}, + [4872] = {.lex_state = 29}, + [4873] = {.lex_state = 274}, + [4874] = {.lex_state = 232}, + [4875] = {.lex_state = 0}, + [4876] = {.lex_state = 574}, + [4877] = {.lex_state = 574}, + [4878] = {.lex_state = 29}, + [4879] = {.lex_state = 31}, + [4880] = {.lex_state = 0, .external_lex_state = 4}, + [4881] = {.lex_state = 0}, + [4882] = {.lex_state = 0}, + [4883] = {.lex_state = 574}, + [4884] = {.lex_state = 574}, + [4885] = {.lex_state = 239}, + [4886] = {.lex_state = 661}, + [4887] = {.lex_state = 0, .external_lex_state = 4}, + [4888] = {.lex_state = 0}, + [4889] = {.lex_state = 574}, + [4890] = {.lex_state = 574}, [4891] = {.lex_state = 31}, - [4892] = {.lex_state = 0, .external_lex_state = 3}, - [4893] = {.lex_state = 31}, - [4894] = {.lex_state = 0}, - [4895] = {.lex_state = 577}, - [4896] = {.lex_state = 577}, - [4897] = {.lex_state = 31}, - [4898] = {.lex_state = 0}, - [4899] = {.lex_state = 0, .external_lex_state = 3}, - [4900] = {.lex_state = 0}, - [4901] = {.lex_state = 0}, - [4902] = {.lex_state = 577}, - [4903] = {.lex_state = 577}, - [4904] = {.lex_state = 0}, - [4905] = {.lex_state = 2184}, - [4906] = {.lex_state = 0, .external_lex_state = 3}, - [4907] = {.lex_state = 0}, - [4908] = {.lex_state = 0}, - [4909] = {.lex_state = 577}, - [4910] = {.lex_state = 577}, - [4911] = {.lex_state = 0}, - [4912] = {.lex_state = 0, .external_lex_state = 3}, - [4913] = {.lex_state = 0}, - [4914] = {.lex_state = 577}, - [4915] = {.lex_state = 577}, - [4916] = {.lex_state = 0, .external_lex_state = 4}, - [4917] = {.lex_state = 31}, - [4918] = {.lex_state = 229}, + [4892] = {.lex_state = 2183}, + [4893] = {.lex_state = 0, .external_lex_state = 4}, + [4894] = {.lex_state = 275}, + [4895] = {.lex_state = 0}, + [4896] = {.lex_state = 574}, + [4897] = {.lex_state = 574}, + [4898] = {.lex_state = 0, .external_lex_state = 4}, + [4899] = {.lex_state = 0}, + [4900] = {.lex_state = 0, .external_lex_state = 4}, + [4901] = {.lex_state = 2183}, + [4902] = {.lex_state = 0}, + [4903] = {.lex_state = 574}, + [4904] = {.lex_state = 574}, + [4905] = {.lex_state = 0}, + [4906] = {.lex_state = 31}, + [4907] = {.lex_state = 0, .external_lex_state = 4}, + [4908] = {.lex_state = 229}, + [4909] = {.lex_state = 0}, + [4910] = {.lex_state = 574}, + [4911] = {.lex_state = 574}, + [4912] = {.lex_state = 0}, + [4913] = {.lex_state = 0, .external_lex_state = 4}, + [4914] = {.lex_state = 0}, + [4915] = {.lex_state = 574}, + [4916] = {.lex_state = 574}, + [4917] = {.lex_state = 0, .external_lex_state = 3}, + [4918] = {.lex_state = 0}, [4919] = {.lex_state = 0}, [4920] = {.lex_state = 0}, - [4921] = {.lex_state = 1689}, - [4922] = {.lex_state = 1693}, - [4923] = {.lex_state = 664}, - [4924] = {.lex_state = 577}, - [4925] = {.lex_state = 31}, + [4921] = {.lex_state = 0}, + [4922] = {.lex_state = 1686}, + [4923] = {.lex_state = 1690}, + [4924] = {.lex_state = 31}, + [4925] = {.lex_state = 0}, [4926] = {.lex_state = 0}, - [4927] = {.lex_state = 232}, - [4928] = {.lex_state = 232}, + [4927] = {.lex_state = 229}, + [4928] = {.lex_state = 0}, [4929] = {.lex_state = 0}, - [4930] = {.lex_state = 0}, + [4930] = {.lex_state = 31}, [4931] = {.lex_state = 0}, [4932] = {.lex_state = 0}, - [4933] = {.lex_state = 31}, - [4934] = {.lex_state = 0}, - [4935] = {.lex_state = 29}, - [4936] = {.lex_state = 2186}, - [4937] = {.lex_state = 29}, - [4938] = {.lex_state = 31}, - [4939] = {.lex_state = 0}, - [4940] = {.lex_state = 577}, - [4941] = {.lex_state = 0}, + [4933] = {.lex_state = 0}, + [4934] = {.lex_state = 232}, + [4935] = {.lex_state = 0}, + [4936] = {.lex_state = 232}, + [4937] = {.lex_state = 31}, + [4938] = {.lex_state = 574}, + [4939] = {.lex_state = 31}, + [4940] = {.lex_state = 0, .external_lex_state = 4}, + [4941] = {.lex_state = 574}, [4942] = {.lex_state = 0}, - [4943] = {.lex_state = 624}, - [4944] = {.lex_state = 0}, - [4945] = {.lex_state = 577}, - [4946] = {.lex_state = 229}, - [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 2182}, - [4949] = {.lex_state = 0}, - [4950] = {.lex_state = 622}, - [4951] = {.lex_state = 148}, - [4952] = {.lex_state = 1189}, - [4953] = {.lex_state = 31}, - [4954] = {.lex_state = 274}, + [4943] = {.lex_state = 0}, + [4944] = {.lex_state = 621}, + [4945] = {.lex_state = 0}, + [4946] = {.lex_state = 2183}, + [4947] = {.lex_state = 31}, + [4948] = {.lex_state = 31}, + [4949] = {.lex_state = 29}, + [4950] = {.lex_state = 0}, + [4951] = {.lex_state = 0}, + [4952] = {.lex_state = 619}, + [4953] = {.lex_state = 148}, + [4954] = {.lex_state = 0}, [4955] = {.lex_state = 0}, - [4956] = {.lex_state = 577}, - [4957] = {.lex_state = 148}, - [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 622}, - [4960] = {.lex_state = 622}, - [4961] = {.lex_state = 0}, - [4962] = {.lex_state = 1189}, - [4963] = {.lex_state = 148}, + [4956] = {.lex_state = 31}, + [4957] = {.lex_state = 229}, + [4958] = {.lex_state = 31}, + [4959] = {.lex_state = 619}, + [4960] = {.lex_state = 0}, + [4961] = {.lex_state = 619}, + [4962] = {.lex_state = 619}, + [4963] = {.lex_state = 2179}, [4964] = {.lex_state = 0}, - [4965] = {.lex_state = 0}, - [4966] = {.lex_state = 2184}, - [4967] = {.lex_state = 622}, - [4968] = {.lex_state = 31}, - [4969] = {.lex_state = 29}, - [4970] = {.lex_state = 1189}, - [4971] = {.lex_state = 29}, + [4965] = {.lex_state = 574}, + [4966] = {.lex_state = 574}, + [4967] = {.lex_state = 0}, + [4968] = {.lex_state = 0}, + [4969] = {.lex_state = 1186}, + [4970] = {.lex_state = 31}, + [4971] = {.lex_state = 2179}, [4972] = {.lex_state = 0}, - [4973] = {.lex_state = 1689}, + [4973] = {.lex_state = 0}, [4974] = {.lex_state = 0}, [4975] = {.lex_state = 0}, - [4976] = {.lex_state = 0}, - [4977] = {.lex_state = 2197}, - [4978] = {.lex_state = 123}, - [4979] = {.lex_state = 1189}, + [4976] = {.lex_state = 46}, + [4977] = {.lex_state = 0}, + [4978] = {.lex_state = 0}, + [4979] = {.lex_state = 31}, [4980] = {.lex_state = 0}, - [4981] = {.lex_state = 1693}, - [4982] = {.lex_state = 31}, - [4983] = {.lex_state = 31}, - [4984] = {.lex_state = 0}, + [4981] = {.lex_state = 148}, + [4982] = {.lex_state = 0}, + [4983] = {.lex_state = 1186}, + [4984] = {.lex_state = 31}, [4985] = {.lex_state = 0}, - [4986] = {.lex_state = 0}, - [4987] = {.lex_state = 29}, - [4988] = {.lex_state = 0, .external_lex_state = 3}, - [4989] = {.lex_state = 229}, - [4990] = {.lex_state = 0, .external_lex_state = 3}, - [4991] = {.lex_state = 664}, - [4992] = {.lex_state = 229}, - [4993] = {.lex_state = 0}, - [4994] = {.lex_state = 0}, - [4995] = {.lex_state = 0}, - [4996] = {.lex_state = 229}, - [4997] = {.lex_state = 232}, - [4998] = {.lex_state = 0, .external_lex_state = 4}, - [4999] = {.lex_state = 29}, - [5000] = {.lex_state = 2}, + [4986] = {.lex_state = 31}, + [4987] = {.lex_state = 123}, + [4988] = {.lex_state = 574}, + [4989] = {.lex_state = 0}, + [4990] = {.lex_state = 0}, + [4991] = {.lex_state = 0}, + [4992] = {.lex_state = 0}, + [4993] = {.lex_state = 123}, + [4994] = {.lex_state = 31}, + [4995] = {.lex_state = 0, .external_lex_state = 4}, + [4996] = {.lex_state = 0}, + [4997] = {.lex_state = 619}, + [4998] = {.lex_state = 229}, + [4999] = {.lex_state = 229}, + [5000] = {.lex_state = 0}, [5001] = {.lex_state = 123}, - [5002] = {.lex_state = 622}, - [5003] = {.lex_state = 0}, - [5004] = {.lex_state = 31}, - [5005] = {.lex_state = 2}, + [5002] = {.lex_state = 29}, + [5003] = {.lex_state = 2194}, + [5004] = {.lex_state = 232}, + [5005] = {.lex_state = 232}, [5006] = {.lex_state = 31}, [5007] = {.lex_state = 0}, - [5008] = {.lex_state = 0}, + [5008] = {.lex_state = 31}, [5009] = {.lex_state = 123}, [5010] = {.lex_state = 0}, - [5011] = {.lex_state = 0}, + [5011] = {.lex_state = 31}, [5012] = {.lex_state = 0}, [5013] = {.lex_state = 0}, - [5014] = {.lex_state = 0}, - [5015] = {.lex_state = 0}, - [5016] = {.lex_state = 0}, + [5014] = {.lex_state = 574}, + [5015] = {.lex_state = 661}, + [5016] = {.lex_state = 31}, [5017] = {.lex_state = 0}, - [5018] = {.lex_state = 0}, - [5019] = {.lex_state = 31}, - [5020] = {.lex_state = 0, .external_lex_state = 3}, + [5018] = {.lex_state = 2}, + [5019] = {.lex_state = 0}, + [5020] = {.lex_state = 2181}, [5021] = {.lex_state = 229}, [5022] = {.lex_state = 0}, - [5023] = {.lex_state = 622}, - [5024] = {.lex_state = 2182}, - [5025] = {.lex_state = 31}, - [5026] = {.lex_state = 29}, - [5027] = {.lex_state = 31}, - [5028] = {.lex_state = 577}, - [5029] = {.lex_state = 0, .external_lex_state = 3}, - [5030] = {.lex_state = 31}, - [5031] = {.lex_state = 577}, - [5032] = {.lex_state = 229}, - [5033] = {.lex_state = 622}, - [5034] = {.lex_state = 31}, - [5035] = {.lex_state = 0}, - [5036] = {.lex_state = 622}, - [5037] = {.lex_state = 577}, - [5038] = {.lex_state = 229}, - [5039] = {.lex_state = 2}, - [5040] = {.lex_state = 0}, - [5041] = {.lex_state = 0}, - [5042] = {.lex_state = 1189}, + [5023] = {.lex_state = 0}, + [5024] = {.lex_state = 0}, + [5025] = {.lex_state = 574}, + [5026] = {.lex_state = 574}, + [5027] = {.lex_state = 0, .external_lex_state = 4}, + [5028] = {.lex_state = 619}, + [5029] = {.lex_state = 31}, + [5030] = {.lex_state = 29}, + [5031] = {.lex_state = 1186}, + [5032] = {.lex_state = 31}, + [5033] = {.lex_state = 0}, + [5034] = {.lex_state = 0}, + [5035] = {.lex_state = 229}, + [5036] = {.lex_state = 0}, + [5037] = {.lex_state = 0}, + [5038] = {.lex_state = 31}, + [5039] = {.lex_state = 0}, + [5040] = {.lex_state = 1186}, + [5041] = {.lex_state = 0, .external_lex_state = 4}, + [5042] = {.lex_state = 0}, [5043] = {.lex_state = 0}, - [5044] = {.lex_state = 0}, - [5045] = {.lex_state = 148}, - [5046] = {.lex_state = 31}, - [5047] = {.lex_state = 0}, - [5048] = {.lex_state = 2182}, - [5049] = {.lex_state = 31}, - [5050] = {.lex_state = 229}, - [5051] = {.lex_state = 0}, - [5052] = {.lex_state = 31}, - [5053] = {.lex_state = 0}, - [5054] = {.lex_state = 0}, + [5044] = {.lex_state = 619}, + [5045] = {.lex_state = 0}, + [5046] = {.lex_state = 0}, + [5047] = {.lex_state = 29}, + [5048] = {.lex_state = 31}, + [5049] = {.lex_state = 123}, + [5050] = {.lex_state = 2}, + [5051] = {.lex_state = 2}, + [5052] = {.lex_state = 0}, + [5053] = {.lex_state = 2}, + [5054] = {.lex_state = 31}, [5055] = {.lex_state = 0}, [5056] = {.lex_state = 0}, - [5057] = {.lex_state = 0, .external_lex_state = 4}, + [5057] = {.lex_state = 29}, [5058] = {.lex_state = 0}, - [5059] = {.lex_state = 1689}, - [5060] = {.lex_state = 1693}, - [5061] = {.lex_state = 0}, - [5062] = {.lex_state = 232}, - [5063] = {.lex_state = 622}, - [5064] = {.lex_state = 624}, - [5065] = {.lex_state = 0}, - [5066] = {.lex_state = 0}, - [5067] = {.lex_state = 31}, - [5068] = {.lex_state = 229}, - [5069] = {.lex_state = 232}, - [5070] = {.lex_state = 577}, - [5071] = {.lex_state = 1189}, - [5072] = {.lex_state = 577}, - [5073] = {.lex_state = 232}, + [5059] = {.lex_state = 0, .external_lex_state = 3}, + [5060] = {.lex_state = 0}, + [5061] = {.lex_state = 1686}, + [5062] = {.lex_state = 1690}, + [5063] = {.lex_state = 1711}, + [5064] = {.lex_state = 0}, + [5065] = {.lex_state = 31}, + [5066] = {.lex_state = 621}, + [5067] = {.lex_state = 0}, + [5068] = {.lex_state = 31}, + [5069] = {.lex_state = 1186}, + [5070] = {.lex_state = 0, .external_lex_state = 4}, + [5071] = {.lex_state = 229}, + [5072] = {.lex_state = 232}, + [5073] = {.lex_state = 229}, [5074] = {.lex_state = 0}, - [5075] = {.lex_state = 232}, - [5076] = {.lex_state = 0}, - [5077] = {.lex_state = 232}, - [5078] = {.lex_state = 577}, - [5079] = {.lex_state = 577}, + [5075] = {.lex_state = 29}, + [5076] = {.lex_state = 232}, + [5077] = {.lex_state = 0}, + [5078] = {.lex_state = 232}, + [5079] = {.lex_state = 0}, [5080] = {.lex_state = 0}, - [5081] = {.lex_state = 0}, - [5082] = {.lex_state = 1189}, - [5083] = {.lex_state = 622}, - [5084] = {.lex_state = 123}, - [5085] = {.lex_state = 0}, - [5086] = {.lex_state = 232}, + [5081] = {.lex_state = 31}, + [5082] = {.lex_state = 0}, + [5083] = {.lex_state = 232}, + [5084] = {.lex_state = 574}, + [5085] = {.lex_state = 574}, + [5086] = {.lex_state = 31}, [5087] = {.lex_state = 0}, - [5088] = {.lex_state = 622}, - [5089] = {.lex_state = 624}, - [5090] = {.lex_state = 31}, + [5088] = {.lex_state = 1186}, + [5089] = {.lex_state = 0}, + [5090] = {.lex_state = 619}, [5091] = {.lex_state = 0}, - [5092] = {.lex_state = 622}, - [5093] = {.lex_state = 622}, - [5094] = {.lex_state = 0, .external_lex_state = 4}, + [5092] = {.lex_state = 619}, + [5093] = {.lex_state = 0}, + [5094] = {.lex_state = 31}, [5095] = {.lex_state = 0}, - [5096] = {.lex_state = 1689}, - [5097] = {.lex_state = 1693}, - [5098] = {.lex_state = 0}, - [5099] = {.lex_state = 624}, - [5100] = {.lex_state = 123}, - [5101] = {.lex_state = 31}, + [5096] = {.lex_state = 0, .external_lex_state = 3}, + [5097] = {.lex_state = 0}, + [5098] = {.lex_state = 1686}, + [5099] = {.lex_state = 1690}, + [5100] = {.lex_state = 232}, + [5101] = {.lex_state = 621}, [5102] = {.lex_state = 0}, - [5103] = {.lex_state = 2}, - [5104] = {.lex_state = 31}, - [5105] = {.lex_state = 31}, - [5106] = {.lex_state = 0, .external_lex_state = 4}, + [5103] = {.lex_state = 0}, + [5104] = {.lex_state = 0}, + [5105] = {.lex_state = 1186}, + [5106] = {.lex_state = 31}, [5107] = {.lex_state = 0}, - [5108] = {.lex_state = 1689}, - [5109] = {.lex_state = 1693}, - [5110] = {.lex_state = 0, .external_lex_state = 4}, - [5111] = {.lex_state = 0}, - [5112] = {.lex_state = 1689}, - [5113] = {.lex_state = 1693}, - [5114] = {.lex_state = 0, .external_lex_state = 4}, - [5115] = {.lex_state = 0}, - [5116] = {.lex_state = 1689}, - [5117] = {.lex_state = 1693}, - [5118] = {.lex_state = 0, .external_lex_state = 4}, - [5119] = {.lex_state = 1689}, - [5120] = {.lex_state = 1693}, - [5121] = {.lex_state = 0, .external_lex_state = 4}, - [5122] = {.lex_state = 1689}, - [5123] = {.lex_state = 1693}, - [5124] = {.lex_state = 0, .external_lex_state = 4}, - [5125] = {.lex_state = 1689}, - [5126] = {.lex_state = 1693}, - [5127] = {.lex_state = 0, .external_lex_state = 4}, - [5128] = {.lex_state = 1689}, - [5129] = {.lex_state = 1693}, - [5130] = {.lex_state = 0, .external_lex_state = 4}, - [5131] = {.lex_state = 1689}, - [5132] = {.lex_state = 1693}, - [5133] = {.lex_state = 0, .external_lex_state = 4}, - [5134] = {.lex_state = 1689}, - [5135] = {.lex_state = 1693}, - [5136] = {.lex_state = 0, .external_lex_state = 4}, - [5137] = {.lex_state = 1689}, - [5138] = {.lex_state = 1693}, - [5139] = {.lex_state = 0, .external_lex_state = 4}, - [5140] = {.lex_state = 1689}, - [5141] = {.lex_state = 1693}, - [5142] = {.lex_state = 0, .external_lex_state = 4}, - [5143] = {.lex_state = 1689}, - [5144] = {.lex_state = 1693}, - [5145] = {.lex_state = 0, .external_lex_state = 4}, - [5146] = {.lex_state = 1689}, - [5147] = {.lex_state = 1693}, - [5148] = {.lex_state = 0, .external_lex_state = 4}, - [5149] = {.lex_state = 1689}, - [5150] = {.lex_state = 1693}, - [5151] = {.lex_state = 0, .external_lex_state = 4}, - [5152] = {.lex_state = 1689}, - [5153] = {.lex_state = 1693}, - [5154] = {.lex_state = 0, .external_lex_state = 4}, - [5155] = {.lex_state = 1689}, - [5156] = {.lex_state = 1693}, - [5157] = {.lex_state = 1189}, - [5158] = {.lex_state = 0, .external_lex_state = 3}, - [5159] = {.lex_state = 0}, - [5160] = {.lex_state = 0}, - [5161] = {.lex_state = 29}, - [5162] = {.lex_state = 0}, + [5108] = {.lex_state = 0, .external_lex_state = 3}, + [5109] = {.lex_state = 0}, + [5110] = {.lex_state = 1686}, + [5111] = {.lex_state = 1690}, + [5112] = {.lex_state = 0, .external_lex_state = 3}, + [5113] = {.lex_state = 0}, + [5114] = {.lex_state = 1686}, + [5115] = {.lex_state = 1690}, + [5116] = {.lex_state = 0, .external_lex_state = 3}, + [5117] = {.lex_state = 0}, + [5118] = {.lex_state = 1686}, + [5119] = {.lex_state = 1690}, + [5120] = {.lex_state = 0, .external_lex_state = 3}, + [5121] = {.lex_state = 1686}, + [5122] = {.lex_state = 1690}, + [5123] = {.lex_state = 0, .external_lex_state = 3}, + [5124] = {.lex_state = 1686}, + [5125] = {.lex_state = 1690}, + [5126] = {.lex_state = 0, .external_lex_state = 3}, + [5127] = {.lex_state = 1686}, + [5128] = {.lex_state = 1690}, + [5129] = {.lex_state = 0, .external_lex_state = 3}, + [5130] = {.lex_state = 1686}, + [5131] = {.lex_state = 1690}, + [5132] = {.lex_state = 0, .external_lex_state = 3}, + [5133] = {.lex_state = 1686}, + [5134] = {.lex_state = 1690}, + [5135] = {.lex_state = 0, .external_lex_state = 3}, + [5136] = {.lex_state = 1686}, + [5137] = {.lex_state = 1690}, + [5138] = {.lex_state = 0, .external_lex_state = 3}, + [5139] = {.lex_state = 1686}, + [5140] = {.lex_state = 1690}, + [5141] = {.lex_state = 0, .external_lex_state = 3}, + [5142] = {.lex_state = 1686}, + [5143] = {.lex_state = 1690}, + [5144] = {.lex_state = 0, .external_lex_state = 3}, + [5145] = {.lex_state = 1686}, + [5146] = {.lex_state = 1690}, + [5147] = {.lex_state = 0, .external_lex_state = 3}, + [5148] = {.lex_state = 1686}, + [5149] = {.lex_state = 1690}, + [5150] = {.lex_state = 0, .external_lex_state = 3}, + [5151] = {.lex_state = 2}, + [5152] = {.lex_state = 1690}, + [5153] = {.lex_state = 0, .external_lex_state = 3}, + [5154] = {.lex_state = 1686}, + [5155] = {.lex_state = 1690}, + [5156] = {.lex_state = 0, .external_lex_state = 3}, + [5157] = {.lex_state = 1686}, + [5158] = {.lex_state = 1690}, + [5159] = {.lex_state = 574}, + [5160] = {.lex_state = 619}, + [5161] = {.lex_state = 0}, + [5162] = {.lex_state = 574}, [5163] = {.lex_state = 0}, - [5164] = {.lex_state = 577}, + [5164] = {.lex_state = 31}, [5165] = {.lex_state = 0}, - [5166] = {.lex_state = 239}, - [5167] = {.lex_state = 0}, - [5168] = {.lex_state = 0}, + [5166] = {.lex_state = 574}, + [5167] = {.lex_state = 1186}, + [5168] = {.lex_state = 229}, [5169] = {.lex_state = 0}, - [5170] = {.lex_state = 2186}, - [5171] = {.lex_state = 275}, + [5170] = {.lex_state = 619}, + [5171] = {.lex_state = 0}, [5172] = {.lex_state = 0}, - [5173] = {.lex_state = 31}, - [5174] = {.lex_state = 0}, - [5175] = {.lex_state = 31}, + [5173] = {.lex_state = 0}, + [5174] = {.lex_state = 31}, + [5175] = {.lex_state = 619}, [5176] = {.lex_state = 0}, - [5177] = {.lex_state = 0}, - [5178] = {.lex_state = 0}, - [5179] = {.lex_state = 31}, - [5180] = {.lex_state = 0}, - [5181] = {.lex_state = 0}, - [5182] = {.lex_state = 1189}, + [5177] = {.lex_state = 1186}, + [5178] = {.lex_state = 2179}, + [5179] = {.lex_state = 0}, + [5180] = {.lex_state = 31}, + [5181] = {.lex_state = 31}, + [5182] = {.lex_state = 232}, [5183] = {.lex_state = 0}, - [5184] = {.lex_state = 31}, - [5185] = {.lex_state = 0}, - [5186] = {.lex_state = 0}, - [5187] = {.lex_state = 577}, - [5188] = {.lex_state = 577}, - [5189] = {.lex_state = 31}, + [5184] = {.lex_state = 148}, + [5185] = {.lex_state = 31}, + [5186] = {.lex_state = 1186}, + [5187] = {.lex_state = 0}, + [5188] = {.lex_state = 29}, + [5189] = {.lex_state = 0}, [5190] = {.lex_state = 0}, - [5191] = {.lex_state = 0}, - [5192] = {.lex_state = 232}, - [5193] = {.lex_state = 1189}, - [5194] = {.lex_state = 622}, - [5195] = {.lex_state = 622}, - [5196] = {.lex_state = 1189}, - [5197] = {.lex_state = 622}, - [5198] = {.lex_state = 31}, - [5199] = {.lex_state = 232}, - [5200] = {.lex_state = 622}, - [5201] = {.lex_state = 29}, - [5202] = {.lex_state = 0}, - [5203] = {(TSStateId)(-1),}, + [5191] = {.lex_state = 31}, + [5192] = {.lex_state = 621}, + [5193] = {.lex_state = 619}, + [5194] = {.lex_state = 31}, + [5195] = {.lex_state = 229}, + [5196] = {.lex_state = 0, .external_lex_state = 4}, + [5197] = {.lex_state = 0}, + [5198] = {.lex_state = 574}, + [5199] = {.lex_state = 574}, + [5200] = {.lex_state = 0}, + [5201] = {.lex_state = 31}, + [5202] = {.lex_state = 31}, + [5203] = {.lex_state = 1686}, + [5204] = {.lex_state = 2181}, + [5205] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -38322,76 +38322,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [STATE(1)] = { - [sym_nu_script] = STATE(5165), - [sym_shebang] = STATE(71), - [sym__block_body_statement] = STATE(4167), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym__block_body] = STATE(5186), - [sym_cmd_identifier] = STATE(2895), - [aux_sym__repeat_newline] = STATE(4614), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [sym_nu_script] = STATE(4991), + [sym_shebang] = STATE(53), + [sym__block_body_statement] = STATE(4273), + [sym__declaration] = STATE(4446), + [sym_decl_alias] = STATE(4542), + [sym_stmt_let] = STATE(4605), + [sym_stmt_mut] = STATE(4605), + [sym_stmt_const] = STATE(4605), + [sym_assignment] = STATE(4605), + [sym__mutable_assignment_pattern] = STATE(4372), + [sym__statement] = STATE(4446), + [sym_pipeline] = STATE(4605), + [sym__block_body] = STATE(5064), + [sym_cmd_identifier] = STATE(2828), + [aux_sym__repeat_newline] = STATE(4374), + [sym_attribute_list] = STATE(4389), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4542), + [sym_decl_export] = STATE(4542), + [sym_decl_extern] = STATE(4542), + [sym_decl_module] = STATE(4542), + [sym_decl_use] = STATE(4542), + [sym__ctrl_statement] = STATE(4605), + [sym__ctrl_expression] = STATE(3283), + [sym_ctrl_for] = STATE(4401), + [sym_ctrl_loop] = STATE(4401), + [sym_ctrl_while] = STATE(4401), + [sym_ctrl_if] = STATE(3300), + [sym_ctrl_match] = STATE(3300), + [sym_ctrl_try] = STATE(3300), + [sym_pipe_element] = STATE(3060), + [sym_where_command] = STATE(3283), + [sym__expression] = STATE(2257), + [sym_expr_unary] = STATE(1267), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1267), + [sym__expr_binary_expression] = STATE(2217), + [sym_expr_parenthesized] = STATE(929), + [sym_val_range] = STATE(1267), + [sym__value] = STATE(1267), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1265), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3283), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(292), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -38454,85 +38454,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(2)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5055), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym__match_pattern_record_body] = STATE(5085), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(397), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4542), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5067), + [sym_cmd_identifier] = STATE(2623), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(48), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym__match_pattern_record_body] = STATE(4869), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(788), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(396), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(1227), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(1227), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(1227), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(5074), + [sym_record_entry] = STATE(4545), + [sym__record_key] = STATE(5002), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(2), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(501), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym__types_body_repeat1] = STATE(485), + [aux_sym__match_pattern_record_body_repeat1] = STATE(823), + [aux_sym_pipe_element_repeat2] = STATE(293), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38599,83 +38599,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(3)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4919), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4947), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5067), + [sym_cmd_identifier] = STATE(2623), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(48), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(788), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(430), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(1227), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(1227), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(1227), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(5074), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(3), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_pipe_element_repeat2] = STATE(293), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38742,83 +38742,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(4)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5011), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(64), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5053), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5189), + [sym_cmd_identifier] = STATE(2623), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(35), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(788), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(430), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(1227), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(1227), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(1227), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(5000), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(4), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_pipe_element_repeat2] = STATE(293), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38885,83 +38885,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(5)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4810), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4995), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5091), + [sym_cmd_identifier] = STATE(2623), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(48), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(788), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(430), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(1227), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(1227), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(1227), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(5074), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(5), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_pipe_element_repeat2] = STATE(293), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39028,83 +39028,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(6)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5178), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5077), + [sym_cmd_identifier] = STATE(2623), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(35), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(788), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(430), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(1227), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(1227), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(1227), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(5000), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(6), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_pipe_element_repeat2] = STATE(293), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39171,83 +39171,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(7)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5055), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5080), + [sym_cmd_identifier] = STATE(2623), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(788), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(430), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(1227), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(1227), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(1227), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(4920), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(7), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_pipe_element_repeat2] = STATE(293), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39314,83 +39314,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(8)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4811), - [sym_cmd_identifier] = STATE(2590), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4968), + [sym_cmd_identifier] = STATE(2623), [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4995), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(788), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(430), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(1227), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(1227), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(1227), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(4920), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(8), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_pipe_element_repeat2] = STATE(293), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39457,83 +39457,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(9)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5160), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(53), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5176), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4945), + [sym_cmd_identifier] = STATE(2623), + [aux_sym__repeat_newline] = STATE(24), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(58), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(788), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(430), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(1227), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(1227), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(1227), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(4955), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(9), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_pipe_element_repeat2] = STATE(293), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39600,83 +39600,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(10)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4994), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(57), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5012), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5172), + [sym_cmd_identifier] = STATE(2623), + [aux_sym__repeat_newline] = STATE(25), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(54), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(788), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(430), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(1227), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(1227), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(1227), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(5190), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(10), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_pipe_element_repeat2] = STATE(293), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39743,83 +39743,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(11)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4900), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(23), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(61), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4929), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5089), + [sym_cmd_identifier] = STATE(2623), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(65), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(788), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(430), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(1227), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(1227), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(1227), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(5095), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(11), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_pipe_element_repeat2] = STATE(293), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39886,83 +39886,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(12)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5011), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(64), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5015), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5013), + [sym_cmd_identifier] = STATE(2623), + [aux_sym__repeat_newline] = STATE(23), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(62), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(788), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(430), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(1227), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(1227), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(1227), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(5017), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(12), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_pipe_element_repeat2] = STATE(293), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40029,83 +40029,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(13)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4898), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4947), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5189), + [sym_cmd_identifier] = STATE(2623), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(35), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(788), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(430), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(1227), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(1227), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(1227), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(4942), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(13), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_pipe_element_repeat2] = STATE(293), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40172,83 +40172,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(14)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4898), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4941), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5080), + [sym_cmd_identifier] = STATE(2623), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(788), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(430), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(1227), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(1227), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(1227), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(5045), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(14), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_pipe_element_repeat2] = STATE(293), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40315,83 +40315,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(15)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4810), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4681), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5043), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5089), + [sym_cmd_identifier] = STATE(2623), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(65), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(788), + [sym__spread_parenthesized] = STATE(4659), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(430), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(1227), + [sym__val_number_decimal] = STATE(108), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(1227), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(1227), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(5055), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(15), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_pipe_element_repeat2] = STATE(293), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40458,75 +40458,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(16)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5061), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(66), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5189), + [sym_cmd_identifier] = STATE(2764), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(35), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(16), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40589,75 +40589,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(17)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5008), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(69), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4968), + [sym_cmd_identifier] = STATE(2764), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(17), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40720,75 +40720,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(18)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4852), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(55), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4954), + [sym_cmd_identifier] = STATE(2764), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(37), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(18), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40851,75 +40851,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(19)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4819), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(44), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4929), + [sym_cmd_identifier] = STATE(2764), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(45), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(19), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40982,75 +40982,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(20)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5185), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(59), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5080), + [sym_cmd_identifier] = STATE(2764), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(42), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(20), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41113,75 +41113,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(21)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4811), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5077), + [sym_cmd_identifier] = STATE(2764), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(35), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(21), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41244,75 +41244,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(22)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4810), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5176), + [sym_cmd_identifier] = STATE(2764), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(50), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41375,75 +41375,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(23)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4961), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(63), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5034), + [sym_cmd_identifier] = STATE(2764), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(64), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41506,75 +41506,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(24)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4898), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4973), + [sym_cmd_identifier] = STATE(2764), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(60), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41637,75 +41637,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(25)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5172), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(73), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4810), + [sym_cmd_identifier] = STATE(2764), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(56), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41768,75 +41768,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(26)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4919), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5171), + [sym_cmd_identifier] = STATE(2764), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym_parameter_pipes] = STATE(67), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41899,73 +41899,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(27)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4983), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5054), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(27), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42028,73 +42028,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(28)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5184), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5106), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(28), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42157,73 +42157,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(29)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5006), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4879), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(29), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42286,73 +42286,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(30)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5101), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5081), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(30), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42415,73 +42415,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(31)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4827), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5202), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(31), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42544,73 +42544,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(32)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5046), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4930), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(32), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42673,73 +42673,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(33)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5049), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5048), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(33), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42780,7 +42780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(363), + [anon_sym_RPAREN2] = ACTIONS(335), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42802,73 +42802,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(34)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4938), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4939), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(34), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42909,7 +42909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(359), + [anon_sym_RPAREN2] = ACTIONS(351), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42931,78 +42931,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(35)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4832), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4992), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(35), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43012,9 +43012,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -43029,19 +43029,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(369), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(369), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43054,78 +43054,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(36)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5034), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5048), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(36), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43187,73 +43187,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(37)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5163), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4905), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(37), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -43315,73 +43315,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(38)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5198), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5185), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(38), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43443,73 +43443,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(39)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4827), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4879), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(39), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43571,73 +43571,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(40)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4828), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4851), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(40), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -43699,73 +43699,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(41)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4868), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4970), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(41), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43827,73 +43827,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(42)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4976), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4967), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -43955,73 +43955,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(43)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5105), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4994), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(43), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44083,78 +44083,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(44)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5081), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4948), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -44164,9 +44164,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -44181,19 +44181,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(387), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44206,78 +44206,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(45)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4859), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5103), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -44339,73 +44339,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(46)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4839), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4930), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(46), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44467,73 +44467,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(47)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4983), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5094), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(47), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44595,78 +44595,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(48)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5090), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5179), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -44676,9 +44676,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -44693,19 +44693,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(395), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(395), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44718,83 +44718,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(49)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5174), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5180), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(49), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -44804,9 +44804,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -44821,19 +44821,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(397), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(397), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44846,83 +44846,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(50)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5175), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4989), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -44932,9 +44932,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -44949,19 +44949,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(399), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(399), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44974,78 +44974,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(51)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5046), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4855), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(51), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45107,73 +45107,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(52)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5049), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5054), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(52), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45235,73 +45235,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(53)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5016), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4273), + [sym__declaration] = STATE(4446), + [sym_decl_alias] = STATE(4542), + [sym_stmt_let] = STATE(4605), + [sym_stmt_mut] = STATE(4605), + [sym_stmt_const] = STATE(4605), + [sym_assignment] = STATE(4605), + [sym__mutable_assignment_pattern] = STATE(4372), + [sym__statement] = STATE(4446), + [sym_pipeline] = STATE(4605), + [sym__block_body] = STATE(4856), + [sym_cmd_identifier] = STATE(2828), + [sym_attribute_list] = STATE(4389), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4542), + [sym_decl_export] = STATE(4542), + [sym_decl_extern] = STATE(4542), + [sym_decl_module] = STATE(4542), + [sym_decl_use] = STATE(4542), + [sym__ctrl_statement] = STATE(4605), + [sym__ctrl_expression] = STATE(3283), + [sym_ctrl_for] = STATE(4401), + [sym_ctrl_loop] = STATE(4401), + [sym_ctrl_while] = STATE(4401), + [sym_ctrl_if] = STATE(3300), + [sym_ctrl_match] = STATE(3300), + [sym_ctrl_try] = STATE(3300), + [sym_pipe_element] = STATE(3060), + [sym_where_command] = STATE(3283), + [sym__expression] = STATE(2257), + [sym_expr_unary] = STATE(1267), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1267), + [sym__expr_binary_expression] = STATE(2217), + [sym_expr_parenthesized] = STATE(929), + [sym_val_range] = STATE(1267), + [sym__value] = STATE(1267), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1265), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3283), [sym_comment] = STATE(53), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3737), [aux_sym_pipe_element_repeat2] = STATE(292), + [ts_builtin_sym_end] = ACTIONS(405), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [sym__newline] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(54)] = { + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4820), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(54), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45336,7 +45464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(407), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45362,74 +45490,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(54)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4799), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(55)] = { + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4821), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(54), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(55), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45461,7 +45589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(407), + [anon_sym_RPAREN] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45490,74 +45618,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(55)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5013), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(55), - [aux_sym_pipeline_repeat1] = STATE(185), + [STATE(56)] = { + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4838), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(56), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45592,7 +45720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(411), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45618,74 +45746,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(56)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4893), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(57)] = { + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5011), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(56), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(57), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45717,7 +45845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(411), + [anon_sym_RPAREN] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45746,74 +45874,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(57)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4803), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(57), - [aux_sym_pipeline_repeat1] = STATE(185), + [STATE(58)] = { + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4978), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(58), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45848,7 +45976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45874,74 +46002,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(58)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4804), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(59)] = { + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4979), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(58), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(59), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45973,7 +46101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(415), + [anon_sym_RPAREN] = ACTIONS(417), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46002,74 +46130,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(59)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4820), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(59), - [aux_sym_pipeline_repeat1] = STATE(185), + [STATE(60)] = { + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4985), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(60), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46104,7 +46232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(419), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46130,74 +46258,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(60)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5006), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(61)] = { + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5081), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(60), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(61), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46229,7 +46357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(421), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46258,74 +46386,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(61)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4964), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(61), - [aux_sym_pipeline_repeat1] = STATE(185), + [STATE(62)] = { + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5037), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(62), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46360,7 +46488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(423), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46386,74 +46514,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(62)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4968), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(63)] = { + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5038), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(62), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(63), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46485,7 +46613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(423), + [anon_sym_RPAREN] = ACTIONS(425), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46514,74 +46642,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(63)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4974), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(63), - [aux_sym_pipeline_repeat1] = STATE(185), + [STATE(64)] = { + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5042), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(64), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46616,7 +46744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(427), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46642,74 +46770,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(64)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5065), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(64), - [aux_sym_pipeline_repeat1] = STATE(185), + [STATE(65)] = { + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5173), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(65), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46744,7 +46872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46770,74 +46898,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(65)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5067), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(66)] = { + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5174), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(65), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(66), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46869,7 +46997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(431), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46898,74 +47026,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(66)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5074), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(66), - [aux_sym_pipeline_repeat1] = STATE(185), + [STATE(67)] = { + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5183), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(67), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -47000,7 +47128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(433), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -47026,74 +47154,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(67)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4798), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(68)] = { + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4800), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(67), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(68), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47125,7 +47253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(433), + [anon_sym_RPAREN] = ACTIONS(435), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47154,74 +47282,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(68)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4817), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(69)] = { + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4819), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(68), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(69), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47253,7 +47381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(435), + [anon_sym_RPAREN] = ACTIONS(437), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47282,202 +47410,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(69)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4858), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(69), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(437), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, [STATE(70)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4846), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4834), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(70), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47539,201 +47539,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(71)] = { - [sym__block_body_statement] = STATE(4167), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym__block_body] = STATE(5017), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(71), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(441), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [sym__newline] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(72)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4938), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4848), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(72), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(71), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47765,7 +47637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(443), + [anon_sym_RPAREN] = ACTIONS(441), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47794,79 +47666,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(73)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4958), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(73), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(72)] = { + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(4939), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(72), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -47876,9 +47748,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -47893,19 +47765,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(443), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(445), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47918,82 +47790,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(74)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(74), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [STATE(73)] = { + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4925), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(73), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48003,7 +47876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -48020,19 +47893,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(459), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(445), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48049,79 +47922,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(75)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(4891), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(74)] = { + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5032), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(75), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(74), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48131,9 +48004,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48152,7 +48025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -48172,77 +48045,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(75)] = { + [sym__block_body_statement] = STATE(4079), + [sym__declaration] = STATE(4446), + [sym_decl_alias] = STATE(4542), + [sym_stmt_let] = STATE(4605), + [sym_stmt_mut] = STATE(4605), + [sym_stmt_const] = STATE(4605), + [sym_assignment] = STATE(4605), + [sym__mutable_assignment_pattern] = STATE(4372), + [sym__statement] = STATE(4446), + [sym_pipeline] = STATE(4605), + [sym_cmd_identifier] = STATE(2828), + [sym_attribute_list] = STATE(4389), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4542), + [sym_decl_export] = STATE(4542), + [sym_decl_extern] = STATE(4542), + [sym_decl_module] = STATE(4542), + [sym_decl_use] = STATE(4542), + [sym__ctrl_statement] = STATE(4605), + [sym__ctrl_expression] = STATE(3283), + [sym_ctrl_for] = STATE(4401), + [sym_ctrl_loop] = STATE(4401), + [sym_ctrl_while] = STATE(4401), + [sym_ctrl_if] = STATE(3300), + [sym_ctrl_match] = STATE(3300), + [sym_ctrl_try] = STATE(3300), + [sym_pipe_element] = STATE(3060), + [sym_where_command] = STATE(3283), + [sym__expression] = STATE(2257), + [sym_expr_unary] = STATE(1267), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1267), + [sym__expr_binary_expression] = STATE(2217), + [sym_expr_parenthesized] = STATE(929), + [sym_val_range] = STATE(1267), + [sym__value] = STATE(1267), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1265), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3283), + [sym_comment] = STATE(75), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(1369), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(292), + [ts_builtin_sym_end] = ACTIONS(447), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [sym__newline] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, [STATE(76)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4032), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(76), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(86), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(1354), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -48277,7 +48277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_RBRACE] = ACTIONS(447), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -48304,72 +48304,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(77)] = { - [sym__block_body_statement_parenthesized] = STATE(3767), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3771), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(77), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym__block_body_repeat1] = STATE(1354), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(83), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48401,7 +48401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(449), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48431,78 +48431,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(78)] = { - [sym__block_body_statement] = STATE(3997), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym__block_body] = STATE(5052), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(4032), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(453), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(78), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(1354), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48512,7 +48511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(461), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -48529,6 +48528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(447), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48558,205 +48558,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(79)] = { - [sym__block_body_statement] = STATE(4066), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(5164), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(79), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(1370), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(459), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [sym__newline] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(80)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4835), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(453), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(79), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48766,9 +48639,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(461), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48787,7 +48660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -48807,78 +48680,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(81)] = { - [sym__block_body_statement_parenthesized] = STATE(3792), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4876), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(80)] = { + [sym__block_body_statement_parenthesized] = STATE(3796), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym__parenthesized_body] = STATE(5068), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(81), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(80), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48938,195 +48811,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(82)] = { - [sym__block_body_statement] = STATE(4066), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), + [STATE(81)] = { + [sym__block_body_statement] = STATE(4003), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym__block_body] = STATE(4906), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(82), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(453), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(81), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym__block_body_repeat1] = STATE(78), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(461), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(82)] = { + [sym__block_body_statement_parenthesized] = STATE(4159), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(470), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(82), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), + [aux_sym__parenthesized_body_repeat2] = STATE(82), + [anon_sym_export] = ACTIONS(463), + [anon_sym_alias] = ACTIONS(466), + [anon_sym_let] = ACTIONS(469), + [anon_sym_mut] = ACTIONS(472), + [anon_sym_const] = ACTIONS(475), + [aux_sym_cmd_identifier_token1] = ACTIONS(478), + [anon_sym_def] = ACTIONS(481), + [anon_sym_use] = ACTIONS(484), + [anon_sym_export_DASHenv] = ACTIONS(487), + [anon_sym_extern] = ACTIONS(490), + [anon_sym_module] = ACTIONS(493), + [anon_sym_for] = ACTIONS(496), + [anon_sym_loop] = ACTIONS(499), + [anon_sym_while] = ACTIONS(502), + [anon_sym_if] = ACTIONS(505), + [anon_sym_else] = ACTIONS(508), + [anon_sym_try] = ACTIONS(511), + [anon_sym_catch] = ACTIONS(508), + [anon_sym_match] = ACTIONS(514), + [anon_sym_in] = ACTIONS(517), + [anon_sym_true] = ACTIONS(520), + [anon_sym_false] = ACTIONS(520), + [anon_sym_null] = ACTIONS(523), + [aux_sym_cmd_identifier_token3] = ACTIONS(526), + [aux_sym_cmd_identifier_token4] = ACTIONS(526), + [aux_sym_cmd_identifier_token5] = ACTIONS(526), + [anon_sym_AT] = ACTIONS(529), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_DOLLAR] = ACTIONS(538), + [anon_sym_DASH2] = ACTIONS(541), + [anon_sym_LBRACE] = ACTIONS(544), + [anon_sym_DOT_DOT] = ACTIONS(547), + [anon_sym_where] = ACTIONS(550), + [aux_sym_expr_unary_token1] = ACTIONS(553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(556), + [anon_sym_DOT_DOT_LT] = ACTIONS(556), + [aux_sym__val_number_decimal_token1] = ACTIONS(559), + [aux_sym__val_number_decimal_token2] = ACTIONS(562), + [aux_sym__val_number_decimal_token3] = ACTIONS(565), + [aux_sym__val_number_decimal_token4] = ACTIONS(565), + [aux_sym__val_number_token1] = ACTIONS(568), + [aux_sym__val_number_token2] = ACTIONS(568), + [aux_sym__val_number_token3] = ACTIONS(568), + [anon_sym_0b] = ACTIONS(571), + [anon_sym_0o] = ACTIONS(574), + [anon_sym_0x] = ACTIONS(574), + [sym_val_date] = ACTIONS(577), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(583), + [anon_sym_BQUOTE] = ACTIONS(586), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(589), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(592), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(598), }, [STATE(83)] = { - [sym__block_body_statement_parenthesized] = STATE(3767), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3823), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(83), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(82), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -49185,76 +49185,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(84)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4032), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(453), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(84), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49264,7 +49264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(461), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -49287,10 +49287,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -49308,76 +49308,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(85)] = { - [sym__block_body_statement] = STATE(3918), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(3921), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(453), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(85), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(451), + [anon_sym_alias] = ACTIONS(453), + [anon_sym_let] = ACTIONS(455), + [anon_sym_mut] = ACTIONS(457), + [anon_sym_const] = ACTIONS(459), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49387,7 +49387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(461), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -49431,71 +49431,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(86)] = { - [sym__block_body_statement] = STATE(3918), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(3771), + [sym__declaration_parenthesized] = STATE(4375), + [sym_decl_alias_parenthesized] = STATE(4383), + [sym_stmt_let_parenthesized] = STATE(4386), + [sym_stmt_mut_parenthesized] = STATE(4386), + [sym_stmt_const_parenthesized] = STATE(4386), + [sym_assignment_parenthesized] = STATE(4386), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4387), + [sym__statement_parenthesized] = STATE(4375), + [sym_pipeline_parenthesized] = STATE(4386), + [sym_cmd_identifier] = STATE(2823), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4383), + [sym_decl_export] = STATE(4383), + [sym_decl_extern] = STATE(4383), + [sym_decl_module] = STATE(4383), + [sym_decl_use] = STATE(4383), + [sym__ctrl_statement] = STATE(4386), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(443), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(86), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), + [aux_sym__parenthesized_body_repeat2] = STATE(82), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(333), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(87)] = { + [sym__block_body_statement] = STATE(4032), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(87), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -49553,77 +49676,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(87)] = { - [sym__block_body_statement] = STATE(4029), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(87), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [STATE(88)] = { + [sym__block_body_statement] = STATE(3921), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(450), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(88), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49633,7 +49756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -49656,10 +49779,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -49676,195 +49799,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(88)] = { - [sym__block_body_statement] = STATE(4396), - [sym__declaration] = STATE(4225), - [sym_decl_alias] = STATE(4226), - [sym_stmt_let] = STATE(4227), - [sym_stmt_mut] = STATE(4227), - [sym_stmt_const] = STATE(4227), - [sym_assignment] = STATE(4227), - [sym__mutable_assignment_pattern] = STATE(4228), - [sym__statement] = STATE(4225), - [sym_pipeline] = STATE(4227), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4226), - [sym_decl_export] = STATE(4226), - [sym_decl_extern] = STATE(4226), - [sym_decl_module] = STATE(4226), - [sym_decl_use] = STATE(4226), - [sym__ctrl_statement] = STATE(4227), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(474), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(88), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(463), - [anon_sym_alias] = ACTIONS(466), - [anon_sym_let] = ACTIONS(469), - [anon_sym_mut] = ACTIONS(472), - [anon_sym_const] = ACTIONS(475), - [aux_sym_cmd_identifier_token1] = ACTIONS(478), - [anon_sym_def] = ACTIONS(481), - [anon_sym_use] = ACTIONS(484), - [anon_sym_export_DASHenv] = ACTIONS(487), - [anon_sym_extern] = ACTIONS(490), - [anon_sym_module] = ACTIONS(493), - [anon_sym_for] = ACTIONS(496), - [anon_sym_loop] = ACTIONS(499), - [anon_sym_while] = ACTIONS(502), - [anon_sym_if] = ACTIONS(505), - [anon_sym_else] = ACTIONS(508), - [anon_sym_try] = ACTIONS(511), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_match] = ACTIONS(514), - [anon_sym_in] = ACTIONS(517), - [anon_sym_true] = ACTIONS(520), - [anon_sym_false] = ACTIONS(520), - [anon_sym_null] = ACTIONS(523), - [aux_sym_cmd_identifier_token3] = ACTIONS(526), - [aux_sym_cmd_identifier_token4] = ACTIONS(526), - [aux_sym_cmd_identifier_token5] = ACTIONS(526), - [anon_sym_AT] = ACTIONS(529), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(538), - [anon_sym_DASH2] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_DOT_DOT] = ACTIONS(547), - [anon_sym_where] = ACTIONS(550), - [aux_sym_expr_unary_token1] = ACTIONS(553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(556), - [anon_sym_DOT_DOT_LT] = ACTIONS(556), - [aux_sym__val_number_decimal_token1] = ACTIONS(559), - [aux_sym__val_number_decimal_token2] = ACTIONS(562), - [aux_sym__val_number_decimal_token3] = ACTIONS(565), - [aux_sym__val_number_decimal_token4] = ACTIONS(565), - [aux_sym__val_number_token1] = ACTIONS(568), - [aux_sym__val_number_token2] = ACTIONS(568), - [aux_sym__val_number_token3] = ACTIONS(568), - [anon_sym_0b] = ACTIONS(571), - [anon_sym_0o] = ACTIONS(574), - [anon_sym_0x] = ACTIONS(574), - [sym_val_date] = ACTIONS(577), - [anon_sym_DQUOTE] = ACTIONS(580), - [anon_sym_SQUOTE] = ACTIONS(583), - [anon_sym_BQUOTE] = ACTIONS(586), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(598), - }, [STATE(89)] = { - [sym__block_body_statement] = STATE(4152), - [sym__declaration] = STATE(4582), - [sym_decl_alias] = STATE(4406), - [sym_stmt_let] = STATE(4410), - [sym_stmt_mut] = STATE(4410), - [sym_stmt_const] = STATE(4410), - [sym_assignment] = STATE(4410), - [sym__mutable_assignment_pattern] = STATE(4604), - [sym__statement] = STATE(4582), - [sym_pipeline] = STATE(4410), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4373), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4406), - [sym_decl_export] = STATE(4406), - [sym_decl_extern] = STATE(4406), - [sym_decl_module] = STATE(4406), - [sym_decl_use] = STATE(4406), - [sym__ctrl_statement] = STATE(4410), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4392), - [sym_ctrl_loop] = STATE(4392), - [sym_ctrl_while] = STATE(4392), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [sym__block_body_statement] = STATE(4079), + [sym__declaration] = STATE(4446), + [sym_decl_alias] = STATE(4542), + [sym_stmt_let] = STATE(4605), + [sym_stmt_mut] = STATE(4605), + [sym_stmt_const] = STATE(4605), + [sym_assignment] = STATE(4605), + [sym__mutable_assignment_pattern] = STATE(4372), + [sym__statement] = STATE(4446), + [sym_pipeline] = STATE(4605), + [sym_cmd_identifier] = STATE(2828), + [sym_attribute_list] = STATE(4389), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4542), + [sym_decl_export] = STATE(4542), + [sym_decl_extern] = STATE(4542), + [sym_decl_module] = STATE(4542), + [sym_decl_use] = STATE(4542), + [sym__ctrl_statement] = STATE(4605), + [sym__ctrl_expression] = STATE(3283), + [sym_ctrl_for] = STATE(4401), + [sym_ctrl_loop] = STATE(4401), + [sym_ctrl_while] = STATE(4401), + [sym_ctrl_if] = STATE(3300), + [sym_ctrl_match] = STATE(3300), + [sym_ctrl_try] = STATE(3300), + [sym_pipe_element] = STATE(3060), + [sym_where_command] = STATE(3283), + [sym__expression] = STATE(2257), + [sym_expr_unary] = STATE(1267), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1267), + [sym__expr_binary_expression] = STATE(2217), + [sym_expr_parenthesized] = STATE(929), + [sym_val_range] = STATE(1267), + [sym__value] = STATE(1267), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1265), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3283), [sym_comment] = STATE(89), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -49923,194 +49923,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(90)] = { - [sym__block_body_statement_parenthesized] = STATE(3820), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(4209), + [sym__declaration] = STATE(4446), + [sym_decl_alias] = STATE(4542), + [sym_stmt_let] = STATE(4605), + [sym_stmt_mut] = STATE(4605), + [sym_stmt_const] = STATE(4605), + [sym_assignment] = STATE(4605), + [sym__mutable_assignment_pattern] = STATE(4372), + [sym__statement] = STATE(4446), + [sym_pipeline] = STATE(4605), + [sym_cmd_identifier] = STATE(2828), + [sym_attribute_list] = STATE(4389), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4542), + [sym_decl_export] = STATE(4542), + [sym_decl_extern] = STATE(4542), + [sym_decl_module] = STATE(4542), + [sym_decl_use] = STATE(4542), + [sym__ctrl_statement] = STATE(4605), + [sym__ctrl_expression] = STATE(3283), + [sym_ctrl_for] = STATE(4401), + [sym_ctrl_loop] = STATE(4401), + [sym_ctrl_while] = STATE(4401), + [sym_ctrl_if] = STATE(3300), + [sym_ctrl_match] = STATE(3300), + [sym_ctrl_try] = STATE(3300), + [sym_pipe_element] = STATE(3060), + [sym_where_command] = STATE(3283), + [sym__expression] = STATE(2257), + [sym_expr_unary] = STATE(1267), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1267), + [sym__expr_binary_expression] = STATE(2217), + [sym_expr_parenthesized] = STATE(929), + [sym_val_range] = STATE(1267), + [sym__value] = STATE(1267), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1265), + [sym_val_variable] = STATE(449), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3283), [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(91), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(292), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(91)] = { - [sym__block_body_statement_parenthesized] = STATE(4147), - [sym__declaration_parenthesized] = STATE(4503), - [sym_decl_alias_parenthesized] = STATE(4369), - [sym_stmt_let_parenthesized] = STATE(4370), - [sym_stmt_mut_parenthesized] = STATE(4370), - [sym_stmt_const_parenthesized] = STATE(4370), - [sym_assignment_parenthesized] = STATE(4370), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4372), - [sym__statement_parenthesized] = STATE(4503), - [sym_pipeline_parenthesized] = STATE(4370), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4605), - [sym_attribute] = STATE(4624), - [sym_decl_def] = STATE(4369), - [sym_decl_export] = STATE(4369), - [sym_decl_extern] = STATE(4369), - [sym_decl_module] = STATE(4369), - [sym_decl_use] = STATE(4369), - [sym__ctrl_statement] = STATE(4370), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4231), - [sym_ctrl_loop] = STATE(4231), - [sym_ctrl_while] = STATE(4231), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(471), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(4443), + [sym__declaration] = STATE(4228), + [sym_decl_alias] = STATE(4229), + [sym_stmt_let] = STATE(4232), + [sym_stmt_mut] = STATE(4232), + [sym_stmt_const] = STATE(4232), + [sym_assignment] = STATE(4232), + [sym__mutable_assignment_pattern] = STATE(4233), + [sym__statement] = STATE(4228), + [sym_pipeline] = STATE(4232), + [sym_cmd_identifier] = STATE(2764), + [sym_attribute_list] = STATE(4606), + [sym_attribute] = STATE(4707), + [sym_decl_def] = STATE(4229), + [sym_decl_export] = STATE(4229), + [sym_decl_extern] = STATE(4229), + [sym_decl_module] = STATE(4229), + [sym_decl_use] = STATE(4229), + [sym__ctrl_statement] = STATE(4232), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_for] = STATE(4235), + [sym_ctrl_loop] = STATE(4235), + [sym_ctrl_while] = STATE(4235), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(472), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3737), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(601), [anon_sym_alias] = ACTIONS(604), [anon_sym_let] = ACTIONS(607), @@ -50252,9 +50252,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(743), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(743), [aux_sym__immediate_decimal_token5] = ACTIONS(745), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), @@ -50361,9 +50361,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(751), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(751), [aux_sym__immediate_decimal_token5] = ACTIONS(753), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), @@ -50388,222 +50388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(94)] = { [sym_comment] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(755), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(757), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(95)] = { - [sym_comment] = STATE(95), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(96)] = { - [sym_comment] = STATE(96), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -50651,7 +50436,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), @@ -50686,10 +50470,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(755), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(763), - [aux_sym__immediate_decimal_token5] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(757), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -50710,9 +50494,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(97)] = { - [sym_comment] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(749), + [STATE(95)] = { + [sym_comment] = STATE(95), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -50760,6 +50543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), @@ -50794,10 +50578,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(759), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(767), - [aux_sym__immediate_decimal_token5] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(761), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -50818,116 +50602,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(98)] = { - [sym_comment] = STATE(98), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(775), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_COLON2] = ACTIONS(771), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(99)] = { - [sym_comment] = STATE(99), + [STATE(96)] = { + [sym_comment] = STATE(96), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -50977,7 +50654,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -51012,10 +50688,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(745), + [aux_sym__immediate_decimal_token1] = ACTIONS(763), + [aux_sym__immediate_decimal_token5] = ACTIONS(765), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), - [anon_sym_COLON2] = ACTIONS(739), [anon_sym_err_GT] = ACTIONS(739), [anon_sym_out_GT] = ACTIONS(739), [anon_sym_e_GT] = ACTIONS(739), @@ -51034,8 +50710,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(100)] = { - [sym_comment] = STATE(100), + [STATE(97)] = { + [sym_comment] = STATE(97), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -51083,9 +50759,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -51118,10 +50794,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(777), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(779), + [aux_sym__immediate_decimal_token1] = ACTIONS(767), + [aux_sym__immediate_decimal_token5] = ACTIONS(769), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -51142,8 +50818,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(101)] = { - [sym_comment] = STATE(101), + [STATE(98)] = { + [sym_comment] = STATE(98), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(775), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_COLON2] = ACTIONS(771), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(99)] = { + [sym_comment] = STATE(99), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51226,10 +51010,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(777), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(781), - [aux_sym__immediate_decimal_token5] = ACTIONS(783), + [aux_sym__immediate_decimal_token5] = ACTIONS(779), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -51250,8 +51034,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(102)] = { - [sym_comment] = STATE(102), + [STATE(100)] = { + [sym_comment] = STATE(100), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -51336,7 +51120,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(779), + [aux_sym__immediate_decimal_token1] = ACTIONS(781), + [aux_sym__immediate_decimal_token5] = ACTIONS(783), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -51357,115 +51142,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(103)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), - [sym_comment] = STATE(103), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), - }, - [STATE(104)] = { - [sym_comment] = STATE(104), + [STATE(101)] = { + [sym_comment] = STATE(101), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51515,6 +51193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -51549,10 +51228,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(845), - [aux_sym__immediate_decimal_token5] = ACTIONS(847), + [aux_sym__immediate_decimal_token5] = ACTIONS(753), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), + [anon_sym_COLON2] = ACTIONS(747), [anon_sym_err_GT] = ACTIONS(747), [anon_sym_out_GT] = ACTIONS(747), [anon_sym_e_GT] = ACTIONS(747), @@ -51571,8 +51250,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(105)] = { - [sym_comment] = STATE(105), + [STATE(102)] = { + [sym_comment] = STATE(102), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -51620,9 +51299,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(771), [anon_sym_xor2] = ACTIONS(771), @@ -51657,9 +51336,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(785), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), - [anon_sym_COLON2] = ACTIONS(771), [anon_sym_err_GT] = ACTIONS(771), [anon_sym_out_GT] = ACTIONS(771), [anon_sym_e_GT] = ACTIONS(771), @@ -51678,222 +51357,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(106)] = { - [sym_comment] = STATE(106), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_COLON2] = ACTIONS(849), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(107)] = { - [sym_comment] = STATE(107), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(853), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [STATE(103)] = { + [sym_comment] = STATE(103), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(789), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(747), + [anon_sym_out_GT_GT] = ACTIONS(747), + [anon_sym_e_GT_GT] = ACTIONS(747), + [anon_sym_o_GT_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(108)] = { - [sym_comment] = STATE(108), + [STATE(104)] = { + [sym_comment] = STATE(104), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51941,9 +51513,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -51978,9 +51550,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(761), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), - [anon_sym_COLON2] = ACTIONS(747), [anon_sym_err_GT] = ACTIONS(747), [anon_sym_out_GT] = ACTIONS(747), [anon_sym_e_GT] = ACTIONS(747), @@ -51999,115 +51571,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(109)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), + [STATE(105)] = { + [sym_expr_parenthesized] = STATE(2643), + [sym__spread_parenthesized] = STATE(2962), + [sym_val_range] = STATE(3043), + [sym__val_range] = STATE(4476), + [sym__value] = STATE(3043), + [sym_val_nothing] = STATE(3031), + [sym_val_bool] = STATE(2762), + [sym__spread_variable] = STATE(2970), + [sym_val_variable] = STATE(2617), + [sym_val_cellpath] = STATE(3031), + [sym_val_number] = STATE(3031), + [sym__val_number_decimal] = STATE(2381), + [sym__val_number] = STATE(3042), + [sym_val_duration] = STATE(3031), + [sym_val_filesize] = STATE(3031), + [sym_val_binary] = STATE(3031), + [sym_val_string] = STATE(3031), + [sym__raw_str] = STATE(2449), + [sym__str_double_quotes] = STATE(2449), + [sym__str_single_quotes] = STATE(2449), + [sym__str_back_ticks] = STATE(2449), + [sym_val_interpolated] = STATE(3031), + [sym__inter_single_quotes] = STATE(3069), + [sym__inter_double_quotes] = STATE(3001), + [sym_val_list] = STATE(3031), + [sym__spread_list] = STATE(2962), + [sym_val_record] = STATE(3031), + [sym_val_table] = STATE(3031), + [sym_val_closure] = STATE(3031), [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), - [sym_comment] = STATE(109), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(855), - [sym__space] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_COLON2] = ACTIONS(858), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), + [sym_redirection] = STATE(2975), + [sym__flag] = STATE(3018), + [sym_short_flag] = STATE(3054), + [sym_long_flag] = STATE(3054), + [sym_unquoted] = STATE(2653), + [sym__unquoted_with_expr] = STATE(2976), + [sym__unquoted_anonymous_prefix] = STATE(4476), + [sym_comment] = STATE(105), + [anon_sym_true] = ACTIONS(791), + [anon_sym_false] = ACTIONS(791), + [anon_sym_null] = ACTIONS(793), + [aux_sym_cmd_identifier_token3] = ACTIONS(795), + [aux_sym_cmd_identifier_token4] = ACTIONS(795), + [aux_sym_cmd_identifier_token5] = ACTIONS(795), + [sym__newline] = ACTIONS(797), + [sym__space] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_err_GT_PIPE] = ACTIONS(800), + [anon_sym_out_GT_PIPE] = ACTIONS(800), + [anon_sym_e_GT_PIPE] = ACTIONS(800), + [anon_sym_o_GT_PIPE] = ACTIONS(800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(802), + [anon_sym_LPAREN] = ACTIONS(804), + [anon_sym_DOLLAR] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_DASH2] = ACTIONS(810), + [anon_sym_LBRACE] = ACTIONS(812), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(816), + [anon_sym_DOT_DOT_EQ] = ACTIONS(818), + [anon_sym_DOT_DOT_LT] = ACTIONS(818), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(820), + [aux_sym__val_number_decimal_token1] = ACTIONS(822), + [aux_sym__val_number_decimal_token2] = ACTIONS(822), + [aux_sym__val_number_decimal_token3] = ACTIONS(824), + [aux_sym__val_number_decimal_token4] = ACTIONS(824), + [aux_sym__val_number_token1] = ACTIONS(826), + [aux_sym__val_number_token2] = ACTIONS(826), + [aux_sym__val_number_token3] = ACTIONS(826), + [anon_sym_0b] = ACTIONS(828), + [anon_sym_0o] = ACTIONS(830), + [anon_sym_0x] = ACTIONS(830), + [sym_val_date] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_SQUOTE] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(840), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(844), + [anon_sym_COLON2] = ACTIONS(846), + [anon_sym_err_GT] = ACTIONS(848), + [anon_sym_out_GT] = ACTIONS(848), + [anon_sym_e_GT] = ACTIONS(848), + [anon_sym_o_GT] = ACTIONS(848), + [anon_sym_err_PLUSout_GT] = ACTIONS(848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(848), + [anon_sym_o_PLUSe_GT] = ACTIONS(848), + [anon_sym_e_PLUSo_GT] = ACTIONS(848), + [anon_sym_err_GT_GT] = ACTIONS(848), + [anon_sym_out_GT_GT] = ACTIONS(848), + [anon_sym_e_GT_GT] = ACTIONS(848), + [anon_sym_o_GT_GT] = ACTIONS(848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(848), + [aux_sym_unquoted_token1] = ACTIONS(850), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), + [sym_raw_string_begin] = ACTIONS(852), }, - [STATE(110)] = { - [sym_comment] = STATE(110), + [STATE(106)] = { + [sym_comment] = STATE(106), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(854), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(107)] = { + [sym_comment] = STATE(107), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52189,10 +51868,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(860), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(862), + [aux_sym__immediate_decimal_token1] = ACTIONS(856), + [aux_sym__immediate_decimal_token5] = ACTIONS(858), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -52213,9 +51892,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(111)] = { - [sym_comment] = STATE(111), - [ts_builtin_sym_end] = ACTIONS(741), + [STATE(108)] = { + [sym_comment] = STATE(108), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(862), + [anon_sym_PLUS_PLUS] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_SLASH] = ACTIONS(864), + [anon_sym_mod] = ACTIONS(862), + [anon_sym_SLASH_SLASH] = ACTIONS(862), + [anon_sym_PLUS] = ACTIONS(864), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_bit_DASHshl] = ACTIONS(862), + [anon_sym_bit_DASHshr] = ACTIONS(862), + [anon_sym_EQ_TILDE] = ACTIONS(862), + [anon_sym_BANG_TILDE] = ACTIONS(862), + [anon_sym_like] = ACTIONS(862), + [anon_sym_not_DASHlike] = ACTIONS(862), + [anon_sym_bit_DASHand] = ACTIONS(862), + [anon_sym_bit_DASHxor] = ACTIONS(862), + [anon_sym_bit_DASHor] = ACTIONS(862), + [anon_sym_and] = ACTIONS(862), + [anon_sym_xor] = ACTIONS(862), + [anon_sym_or] = ACTIONS(862), + [anon_sym_in2] = ACTIONS(862), + [anon_sym_not_DASHin] = ACTIONS(862), + [anon_sym_has] = ACTIONS(862), + [anon_sym_not_DASHhas] = ACTIONS(862), + [anon_sym_starts_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(862), + [anon_sym_ends_DASHwith] = ACTIONS(862), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(862), + [anon_sym_EQ_EQ] = ACTIONS(862), + [anon_sym_BANG_EQ] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(864), + [anon_sym_LT_EQ] = ACTIONS(862), + [anon_sym_GT] = ACTIONS(864), + [anon_sym_GT_EQ] = ACTIONS(862), + [aux_sym_cmd_identifier_token6] = ACTIONS(866), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(870), + [anon_sym_DOT_DOT_LT2] = ACTIONS(870), + [sym_filesize_unit] = ACTIONS(872), + [sym_duration_unit] = ACTIONS(874), + [anon_sym_COLON2] = ACTIONS(860), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(109)] = { + [sym_comment] = STATE(109), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52265,6 +52050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -52299,9 +52085,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(757), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), + [anon_sym_COLON2] = ACTIONS(739), [anon_sym_err_GT] = ACTIONS(739), [anon_sym_out_GT] = ACTIONS(739), [anon_sym_e_GT] = ACTIONS(739), @@ -52320,8 +52106,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(112)] = { - [sym_comment] = STATE(112), + [STATE(110)] = { + [sym_expr_parenthesized] = STATE(2643), + [sym__spread_parenthesized] = STATE(2962), + [sym_val_range] = STATE(3043), + [sym__val_range] = STATE(4476), + [sym__value] = STATE(3043), + [sym_val_nothing] = STATE(3031), + [sym_val_bool] = STATE(2762), + [sym__spread_variable] = STATE(2970), + [sym_val_variable] = STATE(2617), + [sym_val_cellpath] = STATE(3031), + [sym_val_number] = STATE(3031), + [sym__val_number_decimal] = STATE(2381), + [sym__val_number] = STATE(3042), + [sym_val_duration] = STATE(3031), + [sym_val_filesize] = STATE(3031), + [sym_val_binary] = STATE(3031), + [sym_val_string] = STATE(3031), + [sym__raw_str] = STATE(2449), + [sym__str_double_quotes] = STATE(2449), + [sym__str_single_quotes] = STATE(2449), + [sym__str_back_ticks] = STATE(2449), + [sym_val_interpolated] = STATE(3031), + [sym__inter_single_quotes] = STATE(3069), + [sym__inter_double_quotes] = STATE(3001), + [sym_val_list] = STATE(3031), + [sym__spread_list] = STATE(2962), + [sym_val_record] = STATE(3031), + [sym_val_table] = STATE(3031), + [sym_val_closure] = STATE(3031), + [sym__cmd_arg] = STATE(2973), + [sym_redirection] = STATE(2975), + [sym__flag] = STATE(3018), + [sym_short_flag] = STATE(3054), + [sym_long_flag] = STATE(3054), + [sym_unquoted] = STATE(2653), + [sym__unquoted_with_expr] = STATE(2976), + [sym__unquoted_anonymous_prefix] = STATE(4476), + [sym_comment] = STATE(110), + [anon_sym_true] = ACTIONS(791), + [anon_sym_false] = ACTIONS(791), + [anon_sym_null] = ACTIONS(793), + [aux_sym_cmd_identifier_token3] = ACTIONS(795), + [aux_sym_cmd_identifier_token4] = ACTIONS(795), + [aux_sym_cmd_identifier_token5] = ACTIONS(795), + [sym__newline] = ACTIONS(800), + [sym__space] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_err_GT_PIPE] = ACTIONS(800), + [anon_sym_out_GT_PIPE] = ACTIONS(800), + [anon_sym_e_GT_PIPE] = ACTIONS(800), + [anon_sym_o_GT_PIPE] = ACTIONS(800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(802), + [anon_sym_LPAREN] = ACTIONS(804), + [anon_sym_RPAREN] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_DASH2] = ACTIONS(810), + [anon_sym_LBRACE] = ACTIONS(812), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_DOT_DOT] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(816), + [anon_sym_DOT_DOT_EQ] = ACTIONS(818), + [anon_sym_DOT_DOT_LT] = ACTIONS(818), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(820), + [aux_sym__val_number_decimal_token1] = ACTIONS(822), + [aux_sym__val_number_decimal_token2] = ACTIONS(822), + [aux_sym__val_number_decimal_token3] = ACTIONS(824), + [aux_sym__val_number_decimal_token4] = ACTIONS(824), + [aux_sym__val_number_token1] = ACTIONS(826), + [aux_sym__val_number_token2] = ACTIONS(826), + [aux_sym__val_number_token3] = ACTIONS(826), + [anon_sym_0b] = ACTIONS(828), + [anon_sym_0o] = ACTIONS(830), + [anon_sym_0x] = ACTIONS(830), + [sym_val_date] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_SQUOTE] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(840), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(844), + [anon_sym_err_GT] = ACTIONS(848), + [anon_sym_out_GT] = ACTIONS(848), + [anon_sym_e_GT] = ACTIONS(848), + [anon_sym_o_GT] = ACTIONS(848), + [anon_sym_err_PLUSout_GT] = ACTIONS(848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(848), + [anon_sym_o_PLUSe_GT] = ACTIONS(848), + [anon_sym_e_PLUSo_GT] = ACTIONS(848), + [anon_sym_err_GT_GT] = ACTIONS(848), + [anon_sym_out_GT_GT] = ACTIONS(848), + [anon_sym_e_GT_GT] = ACTIONS(848), + [anon_sym_o_GT_GT] = ACTIONS(848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(848), + [aux_sym_unquoted_token1] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(852), + }, + [STATE(111)] = { + [sym_comment] = STATE(111), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -52406,9 +52299,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(864), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), + [anon_sym_COLON2] = ACTIONS(771), [anon_sym_err_GT] = ACTIONS(771), [anon_sym_out_GT] = ACTIONS(771), [anon_sym_e_GT] = ACTIONS(771), @@ -52427,116 +52320,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(113)] = { - [sym_comment] = STATE(113), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [STATE(112)] = { + [sym_comment] = STATE(112), + [anon_sym_in] = ACTIONS(878), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_bit_DASHshl] = ACTIONS(880), + [anon_sym_bit_DASHshr] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [anon_sym_BANG_TILDE] = ACTIONS(880), + [anon_sym_like] = ACTIONS(880), + [anon_sym_not_DASHlike] = ACTIONS(880), + [anon_sym_bit_DASHand] = ACTIONS(880), + [anon_sym_bit_DASHxor] = ACTIONS(880), + [anon_sym_bit_DASHor] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_xor] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_in2] = ACTIONS(880), + [anon_sym_not_DASHin] = ACTIONS(880), + [anon_sym_has] = ACTIONS(880), + [anon_sym_not_DASHhas] = ACTIONS(880), + [anon_sym_starts_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(880), + [anon_sym_ends_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(880), + [aux_sym_cmd_identifier_token6] = ACTIONS(878), + [sym__newline] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_err_GT_PIPE] = ACTIONS(878), + [anon_sym_out_GT_PIPE] = ACTIONS(878), + [anon_sym_e_GT_PIPE] = ACTIONS(878), + [anon_sym_o_GT_PIPE] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(878), + [anon_sym_GT2] = ACTIONS(878), + [anon_sym_DASH2] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_STAR2] = ACTIONS(878), + [anon_sym_and2] = ACTIONS(878), + [anon_sym_xor2] = ACTIONS(878), + [anon_sym_or2] = ACTIONS(878), + [anon_sym_not_DASHin2] = ACTIONS(878), + [anon_sym_has2] = ACTIONS(878), + [anon_sym_not_DASHhas2] = ACTIONS(878), + [anon_sym_starts_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(878), + [anon_sym_ends_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(878), + [anon_sym_EQ_EQ2] = ACTIONS(878), + [anon_sym_BANG_EQ2] = ACTIONS(878), + [anon_sym_LT2] = ACTIONS(878), + [anon_sym_LT_EQ2] = ACTIONS(878), + [anon_sym_GT_EQ2] = ACTIONS(878), + [anon_sym_EQ_TILDE2] = ACTIONS(878), + [anon_sym_BANG_TILDE2] = ACTIONS(878), + [anon_sym_like2] = ACTIONS(878), + [anon_sym_not_DASHlike2] = ACTIONS(878), + [anon_sym_STAR_STAR2] = ACTIONS(878), + [anon_sym_PLUS_PLUS2] = ACTIONS(878), + [anon_sym_SLASH2] = ACTIONS(878), + [anon_sym_mod2] = ACTIONS(878), + [anon_sym_SLASH_SLASH2] = ACTIONS(878), + [anon_sym_PLUS2] = ACTIONS(878), + [anon_sym_bit_DASHshl2] = ACTIONS(878), + [anon_sym_bit_DASHshr2] = ACTIONS(878), + [anon_sym_bit_DASHand2] = ACTIONS(878), + [anon_sym_bit_DASHxor2] = ACTIONS(878), + [anon_sym_bit_DASHor2] = ACTIONS(878), + [anon_sym_DOT_DOT2] = ACTIONS(878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(880), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), + [anon_sym_COLON2] = ACTIONS(878), + [anon_sym_err_GT] = ACTIONS(878), + [anon_sym_out_GT] = ACTIONS(878), + [anon_sym_e_GT] = ACTIONS(878), + [anon_sym_o_GT] = ACTIONS(878), + [anon_sym_err_PLUSout_GT] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(878), + [anon_sym_o_PLUSe_GT] = ACTIONS(878), + [anon_sym_e_PLUSo_GT] = ACTIONS(878), + [anon_sym_err_GT_GT] = ACTIONS(878), + [anon_sym_out_GT_GT] = ACTIONS(878), + [anon_sym_e_GT_GT] = ACTIONS(878), + [anon_sym_o_GT_GT] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(878), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(114)] = { - [sym_comment] = STATE(114), - [ts_builtin_sym_end] = ACTIONS(773), + [STATE(113)] = { + [sym_comment] = STATE(113), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -52586,6 +52478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(771), [anon_sym_xor2] = ACTIONS(771), @@ -52620,7 +52513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(866), + [aux_sym__immediate_decimal_token5] = ACTIONS(882), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -52641,116 +52534,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(114)] = { + [sym_comment] = STATE(114), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(779), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(747), + [anon_sym_out_GT_GT] = ACTIONS(747), + [anon_sym_e_GT_GT] = ACTIONS(747), + [anon_sym_o_GT_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(115)] = { [sym_comment] = STATE(115), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(870), - [anon_sym_STAR] = ACTIONS(872), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_mod] = ACTIONS(870), - [anon_sym_SLASH_SLASH] = ACTIONS(870), - [anon_sym_PLUS] = ACTIONS(872), - [anon_sym_DASH] = ACTIONS(870), - [anon_sym_bit_DASHshl] = ACTIONS(870), - [anon_sym_bit_DASHshr] = ACTIONS(870), - [anon_sym_EQ_TILDE] = ACTIONS(870), - [anon_sym_BANG_TILDE] = ACTIONS(870), - [anon_sym_like] = ACTIONS(870), - [anon_sym_not_DASHlike] = ACTIONS(870), - [anon_sym_bit_DASHand] = ACTIONS(870), - [anon_sym_bit_DASHxor] = ACTIONS(870), - [anon_sym_bit_DASHor] = ACTIONS(870), - [anon_sym_and] = ACTIONS(870), - [anon_sym_xor] = ACTIONS(870), - [anon_sym_or] = ACTIONS(870), - [anon_sym_in2] = ACTIONS(870), - [anon_sym_not_DASHin] = ACTIONS(870), - [anon_sym_has] = ACTIONS(870), - [anon_sym_not_DASHhas] = ACTIONS(870), - [anon_sym_starts_DASHwith] = ACTIONS(870), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(870), - [anon_sym_ends_DASHwith] = ACTIONS(870), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(870), - [anon_sym_EQ_EQ] = ACTIONS(870), - [anon_sym_BANG_EQ] = ACTIONS(870), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LT_EQ] = ACTIONS(870), - [anon_sym_GT] = ACTIONS(872), - [anon_sym_GT_EQ] = ACTIONS(870), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(880), - [sym_duration_unit] = ACTIONS(882), - [anon_sym_COLON2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [ts_builtin_sym_end] = ACTIONS(749), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(747), + [anon_sym_out_GT_GT] = ACTIONS(747), + [anon_sym_e_GT_GT] = ACTIONS(747), + [anon_sym_o_GT_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, [STATE(116)] = { [sym_comment] = STATE(116), - [anon_sym_in] = ACTIONS(868), + [anon_sym_in] = ACTIONS(860), [anon_sym_STAR_STAR] = ACTIONS(884), [anon_sym_PLUS_PLUS] = ACTIONS(884), [anon_sym_STAR] = ACTIONS(886), @@ -52786,76 +52786,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(886), [anon_sym_GT_EQ] = ACTIONS(884), [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_RPAREN] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(870), + [anon_sym_DOT_DOT_LT2] = ACTIONS(870), [sym_filesize_unit] = ACTIONS(890), [sym_duration_unit] = ACTIONS(892), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), [anon_sym_POUND] = ACTIONS(103), }, [STATE(117)] = { [sym_comment] = STATE(117), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(118)] = { + [sym_comment] = STATE(118), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(894), + [aux_sym__immediate_decimal_token5] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(119)] = { + [sym_comment] = STATE(119), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -52960,114 +53172,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(118)] = { - [sym_comment] = STATE(118), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [STATE(120)] = { + [sym_comment] = STATE(120), + [anon_sym_in] = ACTIONS(878), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_bit_DASHshl] = ACTIONS(880), + [anon_sym_bit_DASHshr] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [anon_sym_BANG_TILDE] = ACTIONS(880), + [anon_sym_like] = ACTIONS(880), + [anon_sym_not_DASHlike] = ACTIONS(880), + [anon_sym_bit_DASHand] = ACTIONS(880), + [anon_sym_bit_DASHxor] = ACTIONS(880), + [anon_sym_bit_DASHor] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_xor] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_in2] = ACTIONS(880), + [anon_sym_not_DASHin] = ACTIONS(880), + [anon_sym_has] = ACTIONS(880), + [anon_sym_not_DASHhas] = ACTIONS(880), + [anon_sym_starts_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(880), + [anon_sym_ends_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(880), + [aux_sym_cmd_identifier_token6] = ACTIONS(878), + [sym__newline] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_err_GT_PIPE] = ACTIONS(878), + [anon_sym_out_GT_PIPE] = ACTIONS(878), + [anon_sym_e_GT_PIPE] = ACTIONS(878), + [anon_sym_o_GT_PIPE] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(878), + [anon_sym_GT2] = ACTIONS(878), + [anon_sym_DASH2] = ACTIONS(878), + [anon_sym_STAR2] = ACTIONS(878), + [anon_sym_and2] = ACTIONS(878), + [anon_sym_xor2] = ACTIONS(878), + [anon_sym_or2] = ACTIONS(878), + [anon_sym_not_DASHin2] = ACTIONS(878), + [anon_sym_has2] = ACTIONS(878), + [anon_sym_not_DASHhas2] = ACTIONS(878), + [anon_sym_starts_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(878), + [anon_sym_ends_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(878), + [anon_sym_EQ_EQ2] = ACTIONS(878), + [anon_sym_BANG_EQ2] = ACTIONS(878), + [anon_sym_LT2] = ACTIONS(878), + [anon_sym_LT_EQ2] = ACTIONS(878), + [anon_sym_GT_EQ2] = ACTIONS(878), + [anon_sym_EQ_TILDE2] = ACTIONS(878), + [anon_sym_BANG_TILDE2] = ACTIONS(878), + [anon_sym_like2] = ACTIONS(878), + [anon_sym_not_DASHlike2] = ACTIONS(878), + [anon_sym_STAR_STAR2] = ACTIONS(878), + [anon_sym_PLUS_PLUS2] = ACTIONS(878), + [anon_sym_SLASH2] = ACTIONS(878), + [anon_sym_mod2] = ACTIONS(878), + [anon_sym_SLASH_SLASH2] = ACTIONS(878), + [anon_sym_PLUS2] = ACTIONS(878), + [anon_sym_bit_DASHshl2] = ACTIONS(878), + [anon_sym_bit_DASHshr2] = ACTIONS(878), + [anon_sym_bit_DASHand2] = ACTIONS(878), + [anon_sym_bit_DASHxor2] = ACTIONS(878), + [anon_sym_bit_DASHor2] = ACTIONS(878), + [anon_sym_DOT_DOT2] = ACTIONS(878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(880), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), + [anon_sym_err_GT] = ACTIONS(878), + [anon_sym_out_GT] = ACTIONS(878), + [anon_sym_e_GT] = ACTIONS(878), + [anon_sym_o_GT] = ACTIONS(878), + [anon_sym_err_PLUSout_GT] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(878), + [anon_sym_o_PLUSe_GT] = ACTIONS(878), + [anon_sym_e_PLUSo_GT] = ACTIONS(878), + [anon_sym_err_GT_GT] = ACTIONS(878), + [anon_sym_out_GT_GT] = ACTIONS(878), + [anon_sym_e_GT_GT] = ACTIONS(878), + [anon_sym_o_GT_GT] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(878), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(119)] = { - [sym_comment] = STATE(119), + [STATE(121)] = { + [sym_comment] = STATE(121), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -53151,7 +53364,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(862), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -53172,326 +53384,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(120)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(3208), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), - [sym_comment] = STATE(120), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(894), - [sym__space] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(894), - [anon_sym_PIPE] = ACTIONS(894), - [anon_sym_err_GT_PIPE] = ACTIONS(894), - [anon_sym_out_GT_PIPE] = ACTIONS(894), - [anon_sym_e_GT_PIPE] = ACTIONS(894), - [anon_sym_o_GT_PIPE] = ACTIONS(894), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_RPAREN] = ACTIONS(894), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), - }, - [STATE(121)] = { - [sym_comment] = STATE(121), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(898), - [sym_duration_unit] = ACTIONS(900), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(122)] = { [sym_comment] = STATE(122), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(902), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(123)] = { - [sym_comment] = STATE(123), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -53541,7 +53435,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -53576,6 +53469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(789), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -53596,110 +53490,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(123)] = { + [sym_expr_parenthesized] = STATE(2656), + [sym__spread_parenthesized] = STATE(3177), + [sym_val_range] = STATE(3181), + [sym__val_range] = STATE(4455), + [sym__value] = STATE(3181), + [sym_val_nothing] = STATE(3169), + [sym_val_bool] = STATE(2871), + [sym__spread_variable] = STATE(3183), + [sym_val_variable] = STATE(2654), + [sym_val_cellpath] = STATE(3169), + [sym_val_number] = STATE(3169), + [sym__val_number_decimal] = STATE(2400), + [sym__val_number] = STATE(3170), + [sym_val_duration] = STATE(3169), + [sym_val_filesize] = STATE(3169), + [sym_val_binary] = STATE(3169), + [sym_val_string] = STATE(3169), + [sym__raw_str] = STATE(2469), + [sym__str_double_quotes] = STATE(2469), + [sym__str_single_quotes] = STATE(2469), + [sym__str_back_ticks] = STATE(2469), + [sym_val_interpolated] = STATE(3169), + [sym__inter_single_quotes] = STATE(3095), + [sym__inter_double_quotes] = STATE(3096), + [sym_val_list] = STATE(3169), + [sym__spread_list] = STATE(3177), + [sym_val_record] = STATE(3169), + [sym_val_table] = STATE(3169), + [sym_val_closure] = STATE(3169), + [sym__cmd_arg] = STATE(3187), + [sym_redirection] = STATE(3188), + [sym__flag] = STATE(3108), + [sym_short_flag] = STATE(3109), + [sym_long_flag] = STATE(3109), + [sym_unquoted] = STATE(2886), + [sym__unquoted_with_expr] = STATE(3110), + [sym__unquoted_anonymous_prefix] = STATE(4455), + [sym_comment] = STATE(123), + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_null] = ACTIONS(900), + [aux_sym_cmd_identifier_token3] = ACTIONS(902), + [aux_sym_cmd_identifier_token4] = ACTIONS(902), + [aux_sym_cmd_identifier_token5] = ACTIONS(902), + [sym__newline] = ACTIONS(800), + [sym__space] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(800), + [anon_sym_err_GT_PIPE] = ACTIONS(800), + [anon_sym_out_GT_PIPE] = ACTIONS(800), + [anon_sym_e_GT_PIPE] = ACTIONS(800), + [anon_sym_o_GT_PIPE] = ACTIONS(800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(906), + [anon_sym_DOLLAR] = ACTIONS(908), + [anon_sym_DASH_DASH] = ACTIONS(910), + [anon_sym_DASH2] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(914), + [anon_sym_DOT_DOT] = ACTIONS(916), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(920), + [anon_sym_DOT_DOT_LT] = ACTIONS(920), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(922), + [aux_sym__val_number_decimal_token1] = ACTIONS(924), + [aux_sym__val_number_decimal_token2] = ACTIONS(924), + [aux_sym__val_number_decimal_token3] = ACTIONS(926), + [aux_sym__val_number_decimal_token4] = ACTIONS(926), + [aux_sym__val_number_token1] = ACTIONS(928), + [aux_sym__val_number_token2] = ACTIONS(928), + [aux_sym__val_number_token3] = ACTIONS(928), + [anon_sym_0b] = ACTIONS(930), + [anon_sym_0o] = ACTIONS(932), + [anon_sym_0x] = ACTIONS(932), + [sym_val_date] = ACTIONS(934), + [anon_sym_DQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE] = ACTIONS(938), + [anon_sym_BQUOTE] = ACTIONS(940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(948), + [anon_sym_out_GT_GT] = ACTIONS(948), + [anon_sym_e_GT_GT] = ACTIONS(948), + [anon_sym_o_GT_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(948), + [aux_sym_unquoted_token1] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(952), + }, [STATE(124)] = { [sym_comment] = STATE(124), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, [STATE(125)] = { @@ -53753,7 +53753,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(771), [anon_sym_xor2] = ACTIONS(771), @@ -53788,6 +53787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(954), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -53810,324 +53810,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(126)] = { [sym_comment] = STATE(126), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, [STATE(127)] = { [sym_comment] = STATE(127), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(884), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(886), + [anon_sym_SLASH] = ACTIONS(886), + [anon_sym_mod] = ACTIONS(884), + [anon_sym_SLASH_SLASH] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_bit_DASHshl] = ACTIONS(884), + [anon_sym_bit_DASHshr] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [anon_sym_BANG_TILDE] = ACTIONS(884), + [anon_sym_like] = ACTIONS(884), + [anon_sym_not_DASHlike] = ACTIONS(884), + [anon_sym_bit_DASHand] = ACTIONS(884), + [anon_sym_bit_DASHxor] = ACTIONS(884), + [anon_sym_bit_DASHor] = ACTIONS(884), + [anon_sym_and] = ACTIONS(884), + [anon_sym_xor] = ACTIONS(884), + [anon_sym_or] = ACTIONS(884), + [anon_sym_in2] = ACTIONS(884), + [anon_sym_not_DASHin] = ACTIONS(884), + [anon_sym_has] = ACTIONS(884), + [anon_sym_not_DASHhas] = ACTIONS(884), + [anon_sym_starts_DASHwith] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), + [anon_sym_ends_DASHwith] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_BANG_EQ] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(886), + [anon_sym_LT_EQ] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(886), + [anon_sym_GT_EQ] = ACTIONS(884), + [aux_sym_cmd_identifier_token6] = ACTIONS(888), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(870), + [anon_sym_DOT_DOT_LT2] = ACTIONS(870), + [sym_filesize_unit] = ACTIONS(956), + [sym_duration_unit] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), [anon_sym_POUND] = ACTIONS(103), }, [STATE(128)] = { - [sym_expr_parenthesized] = STATE(2728), - [sym__spread_parenthesized] = STATE(3085), - [sym_val_range] = STATE(3166), - [sym__val_range] = STATE(4446), - [sym__value] = STATE(3166), - [sym_val_nothing] = STATE(3180), - [sym_val_bool] = STATE(2876), - [sym__spread_variable] = STATE(3170), - [sym_val_variable] = STATE(2645), - [sym_val_cellpath] = STATE(3180), - [sym_val_number] = STATE(3180), - [sym__val_number_decimal] = STATE(2397), - [sym__val_number] = STATE(3203), - [sym_val_duration] = STATE(3180), - [sym_val_filesize] = STATE(3180), - [sym_val_binary] = STATE(3180), - [sym_val_string] = STATE(3180), - [sym__raw_str] = STATE(2472), - [sym__str_double_quotes] = STATE(2472), - [sym__str_single_quotes] = STATE(2472), - [sym__str_back_ticks] = STATE(2472), - [sym_val_interpolated] = STATE(3180), - [sym__inter_single_quotes] = STATE(3091), - [sym__inter_double_quotes] = STATE(3098), - [sym_val_list] = STATE(3180), - [sym__spread_list] = STATE(3085), - [sym_val_record] = STATE(3180), - [sym_val_table] = STATE(3180), - [sym_val_closure] = STATE(3180), - [sym__cmd_arg] = STATE(3176), - [sym_redirection] = STATE(3181), - [sym__flag] = STATE(3196), - [sym_short_flag] = STATE(3210), - [sym_long_flag] = STATE(3210), - [sym_unquoted] = STATE(2832), - [sym__unquoted_with_expr] = STATE(3150), - [sym__unquoted_anonymous_prefix] = STATE(4446), [sym_comment] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_true] = ACTIONS(904), - [anon_sym_false] = ACTIONS(904), - [anon_sym_null] = ACTIONS(906), - [aux_sym_cmd_identifier_token3] = ACTIONS(908), - [aux_sym_cmd_identifier_token4] = ACTIONS(908), - [aux_sym_cmd_identifier_token5] = ACTIONS(908), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(910), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_DASH2] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(926), - [anon_sym_DOT_DOT_LT] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(928), - [aux_sym__val_number_decimal_token1] = ACTIONS(930), - [aux_sym__val_number_decimal_token2] = ACTIONS(930), - [aux_sym__val_number_decimal_token3] = ACTIONS(932), - [aux_sym__val_number_decimal_token4] = ACTIONS(932), - [aux_sym__val_number_token1] = ACTIONS(934), - [aux_sym__val_number_token2] = ACTIONS(934), - [aux_sym__val_number_token3] = ACTIONS(934), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(938), - [anon_sym_0x] = ACTIONS(938), - [sym_val_date] = ACTIONS(940), - [anon_sym_DQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_BQUOTE] = ACTIONS(946), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(952), - [anon_sym_err_GT] = ACTIONS(954), - [anon_sym_out_GT] = ACTIONS(954), - [anon_sym_e_GT] = ACTIONS(954), - [anon_sym_o_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT] = ACTIONS(954), - [anon_sym_err_GT_GT] = ACTIONS(954), - [anon_sym_out_GT_GT] = ACTIONS(954), - [anon_sym_e_GT_GT] = ACTIONS(954), - [anon_sym_o_GT_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), - [aux_sym_unquoted_token1] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(958), - }, - [STATE(129)] = { - [sym_comment] = STATE(129), [ts_builtin_sym_end] = ACTIONS(773), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), @@ -54232,114 +54126,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(129)] = { + [sym_comment] = STATE(129), + [ts_builtin_sym_end] = ACTIONS(960), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_SLASH] = ACTIONS(964), + [anon_sym_mod] = ACTIONS(962), + [anon_sym_SLASH_SLASH] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_bit_DASHshl] = ACTIONS(962), + [anon_sym_bit_DASHshr] = ACTIONS(962), + [anon_sym_EQ_TILDE] = ACTIONS(962), + [anon_sym_BANG_TILDE] = ACTIONS(962), + [anon_sym_like] = ACTIONS(962), + [anon_sym_not_DASHlike] = ACTIONS(962), + [anon_sym_bit_DASHand] = ACTIONS(962), + [anon_sym_bit_DASHxor] = ACTIONS(962), + [anon_sym_bit_DASHor] = ACTIONS(962), + [anon_sym_and] = ACTIONS(962), + [anon_sym_xor] = ACTIONS(962), + [anon_sym_or] = ACTIONS(962), + [anon_sym_in2] = ACTIONS(962), + [anon_sym_not_DASHin] = ACTIONS(962), + [anon_sym_has] = ACTIONS(962), + [anon_sym_not_DASHhas] = ACTIONS(962), + [anon_sym_starts_DASHwith] = ACTIONS(962), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(962), + [anon_sym_ends_DASHwith] = ACTIONS(962), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(962), + [anon_sym_EQ_EQ] = ACTIONS(962), + [anon_sym_BANG_EQ] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_LT_EQ] = ACTIONS(962), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(962), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(970), + [sym_filesize_unit] = ACTIONS(972), + [sym_duration_unit] = ACTIONS(974), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(130)] = { [sym_comment] = STATE(130), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(962), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [ts_builtin_sym_end] = ACTIONS(880), + [anon_sym_in] = ACTIONS(878), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_bit_DASHshl] = ACTIONS(880), + [anon_sym_bit_DASHshr] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [anon_sym_BANG_TILDE] = ACTIONS(880), + [anon_sym_like] = ACTIONS(880), + [anon_sym_not_DASHlike] = ACTIONS(880), + [anon_sym_bit_DASHand] = ACTIONS(880), + [anon_sym_bit_DASHxor] = ACTIONS(880), + [anon_sym_bit_DASHor] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_xor] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_in2] = ACTIONS(880), + [anon_sym_not_DASHin] = ACTIONS(880), + [anon_sym_has] = ACTIONS(880), + [anon_sym_not_DASHhas] = ACTIONS(880), + [anon_sym_starts_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(880), + [anon_sym_ends_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(880), + [aux_sym_cmd_identifier_token6] = ACTIONS(878), + [sym__newline] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_err_GT_PIPE] = ACTIONS(878), + [anon_sym_out_GT_PIPE] = ACTIONS(878), + [anon_sym_e_GT_PIPE] = ACTIONS(878), + [anon_sym_o_GT_PIPE] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(878), + [anon_sym_GT2] = ACTIONS(878), + [anon_sym_DASH2] = ACTIONS(878), + [anon_sym_STAR2] = ACTIONS(878), + [anon_sym_and2] = ACTIONS(878), + [anon_sym_xor2] = ACTIONS(878), + [anon_sym_or2] = ACTIONS(878), + [anon_sym_not_DASHin2] = ACTIONS(878), + [anon_sym_has2] = ACTIONS(878), + [anon_sym_not_DASHhas2] = ACTIONS(878), + [anon_sym_starts_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(878), + [anon_sym_ends_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(878), + [anon_sym_EQ_EQ2] = ACTIONS(878), + [anon_sym_BANG_EQ2] = ACTIONS(878), + [anon_sym_LT2] = ACTIONS(878), + [anon_sym_LT_EQ2] = ACTIONS(878), + [anon_sym_GT_EQ2] = ACTIONS(878), + [anon_sym_EQ_TILDE2] = ACTIONS(878), + [anon_sym_BANG_TILDE2] = ACTIONS(878), + [anon_sym_like2] = ACTIONS(878), + [anon_sym_not_DASHlike2] = ACTIONS(878), + [anon_sym_STAR_STAR2] = ACTIONS(878), + [anon_sym_PLUS_PLUS2] = ACTIONS(878), + [anon_sym_SLASH2] = ACTIONS(878), + [anon_sym_mod2] = ACTIONS(878), + [anon_sym_SLASH_SLASH2] = ACTIONS(878), + [anon_sym_PLUS2] = ACTIONS(878), + [anon_sym_bit_DASHshl2] = ACTIONS(878), + [anon_sym_bit_DASHshr2] = ACTIONS(878), + [anon_sym_bit_DASHand2] = ACTIONS(878), + [anon_sym_bit_DASHxor2] = ACTIONS(878), + [anon_sym_bit_DASHor2] = ACTIONS(878), + [anon_sym_DOT_DOT2] = ACTIONS(878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(880), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), + [anon_sym_err_GT] = ACTIONS(878), + [anon_sym_out_GT] = ACTIONS(878), + [anon_sym_e_GT] = ACTIONS(878), + [anon_sym_o_GT] = ACTIONS(878), + [anon_sym_err_PLUSout_GT] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(878), + [anon_sym_o_PLUSe_GT] = ACTIONS(878), + [anon_sym_e_PLUSo_GT] = ACTIONS(878), + [anon_sym_err_GT_GT] = ACTIONS(878), + [anon_sym_out_GT_GT] = ACTIONS(878), + [anon_sym_e_GT_GT] = ACTIONS(878), + [anon_sym_o_GT_GT] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(878), [anon_sym_POUND] = ACTIONS(103), }, [STATE(131)] = { [sym_comment] = STATE(131), + [anon_sym_in] = ACTIONS(878), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_bit_DASHshl] = ACTIONS(880), + [anon_sym_bit_DASHshr] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [anon_sym_BANG_TILDE] = ACTIONS(880), + [anon_sym_like] = ACTIONS(880), + [anon_sym_not_DASHlike] = ACTIONS(880), + [anon_sym_bit_DASHand] = ACTIONS(880), + [anon_sym_bit_DASHxor] = ACTIONS(880), + [anon_sym_bit_DASHor] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_xor] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_in2] = ACTIONS(880), + [anon_sym_not_DASHin] = ACTIONS(880), + [anon_sym_has] = ACTIONS(880), + [anon_sym_not_DASHhas] = ACTIONS(880), + [anon_sym_starts_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(880), + [anon_sym_ends_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(880), + [aux_sym_cmd_identifier_token6] = ACTIONS(878), + [sym__newline] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_err_GT_PIPE] = ACTIONS(878), + [anon_sym_out_GT_PIPE] = ACTIONS(878), + [anon_sym_e_GT_PIPE] = ACTIONS(878), + [anon_sym_o_GT_PIPE] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(878), + [anon_sym_GT2] = ACTIONS(878), + [anon_sym_DASH2] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_STAR2] = ACTIONS(878), + [anon_sym_and2] = ACTIONS(878), + [anon_sym_xor2] = ACTIONS(878), + [anon_sym_or2] = ACTIONS(878), + [anon_sym_not_DASHin2] = ACTIONS(878), + [anon_sym_has2] = ACTIONS(878), + [anon_sym_not_DASHhas2] = ACTIONS(878), + [anon_sym_starts_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(878), + [anon_sym_ends_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(878), + [anon_sym_EQ_EQ2] = ACTIONS(878), + [anon_sym_BANG_EQ2] = ACTIONS(878), + [anon_sym_LT2] = ACTIONS(878), + [anon_sym_LT_EQ2] = ACTIONS(878), + [anon_sym_GT_EQ2] = ACTIONS(878), + [anon_sym_EQ_TILDE2] = ACTIONS(878), + [anon_sym_BANG_TILDE2] = ACTIONS(878), + [anon_sym_like2] = ACTIONS(878), + [anon_sym_not_DASHlike2] = ACTIONS(878), + [anon_sym_STAR_STAR2] = ACTIONS(878), + [anon_sym_PLUS_PLUS2] = ACTIONS(878), + [anon_sym_SLASH2] = ACTIONS(878), + [anon_sym_mod2] = ACTIONS(878), + [anon_sym_SLASH_SLASH2] = ACTIONS(878), + [anon_sym_PLUS2] = ACTIONS(878), + [anon_sym_bit_DASHshl2] = ACTIONS(878), + [anon_sym_bit_DASHshr2] = ACTIONS(878), + [anon_sym_bit_DASHand2] = ACTIONS(878), + [anon_sym_bit_DASHxor2] = ACTIONS(878), + [anon_sym_bit_DASHor2] = ACTIONS(878), + [anon_sym_DOT_DOT2] = ACTIONS(878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(880), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), + [anon_sym_err_GT] = ACTIONS(878), + [anon_sym_out_GT] = ACTIONS(878), + [anon_sym_e_GT] = ACTIONS(878), + [anon_sym_o_GT] = ACTIONS(878), + [anon_sym_err_PLUSout_GT] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(878), + [anon_sym_o_PLUSe_GT] = ACTIONS(878), + [anon_sym_e_PLUSo_GT] = ACTIONS(878), + [anon_sym_err_GT_GT] = ACTIONS(878), + [anon_sym_out_GT_GT] = ACTIONS(878), + [anon_sym_e_GT_GT] = ACTIONS(878), + [anon_sym_o_GT_GT] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(878), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(132)] = { + [sym_comment] = STATE(132), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -54420,10 +54526,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(976), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(964), - [aux_sym__immediate_decimal_token5] = ACTIONS(966), + [aux_sym__immediate_decimal_token5] = ACTIONS(978), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -54444,220 +54550,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(132)] = { - [sym_comment] = STATE(132), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(970), - [anon_sym_SLASH_SLASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_bit_DASHshl] = ACTIONS(970), - [anon_sym_bit_DASHshr] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [anon_sym_BANG_TILDE] = ACTIONS(970), - [anon_sym_like] = ACTIONS(970), - [anon_sym_not_DASHlike] = ACTIONS(970), - [anon_sym_bit_DASHand] = ACTIONS(970), - [anon_sym_bit_DASHxor] = ACTIONS(970), - [anon_sym_bit_DASHor] = ACTIONS(970), - [anon_sym_and] = ACTIONS(970), - [anon_sym_xor] = ACTIONS(970), - [anon_sym_or] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_not_DASHin] = ACTIONS(970), - [anon_sym_has] = ACTIONS(970), - [anon_sym_not_DASHhas] = ACTIONS(970), - [anon_sym_starts_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(970), - [anon_sym_ends_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [sym_filesize_unit] = ACTIONS(980), - [sym_duration_unit] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(133)] = { + [sym_expr_parenthesized] = STATE(2643), + [sym__spread_parenthesized] = STATE(2962), + [sym_val_range] = STATE(3043), + [sym__val_range] = STATE(4476), + [sym__value] = STATE(3043), + [sym_val_nothing] = STATE(3031), + [sym_val_bool] = STATE(2762), + [sym__spread_variable] = STATE(2970), + [sym_val_variable] = STATE(2617), + [sym_val_cellpath] = STATE(3031), + [sym_val_number] = STATE(3031), + [sym__val_number_decimal] = STATE(2381), + [sym__val_number] = STATE(3042), + [sym_val_duration] = STATE(3031), + [sym_val_filesize] = STATE(3031), + [sym_val_binary] = STATE(3031), + [sym_val_string] = STATE(3031), + [sym__raw_str] = STATE(2449), + [sym__str_double_quotes] = STATE(2449), + [sym__str_single_quotes] = STATE(2449), + [sym__str_back_ticks] = STATE(2449), + [sym_val_interpolated] = STATE(3031), + [sym__inter_single_quotes] = STATE(3069), + [sym__inter_double_quotes] = STATE(3001), + [sym_val_list] = STATE(3031), + [sym__spread_list] = STATE(2962), + [sym_val_record] = STATE(3031), + [sym_val_table] = STATE(3031), + [sym_val_closure] = STATE(3031), + [sym__cmd_arg] = STATE(3162), + [sym_redirection] = STATE(2975), + [sym__flag] = STATE(3018), + [sym_short_flag] = STATE(3054), + [sym_long_flag] = STATE(3054), + [sym_unquoted] = STATE(2653), + [sym__unquoted_with_expr] = STATE(2976), + [sym__unquoted_anonymous_prefix] = STATE(4476), [sym_comment] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_true] = ACTIONS(791), + [anon_sym_false] = ACTIONS(791), + [anon_sym_null] = ACTIONS(793), + [aux_sym_cmd_identifier_token3] = ACTIONS(795), + [aux_sym_cmd_identifier_token4] = ACTIONS(795), + [aux_sym_cmd_identifier_token5] = ACTIONS(795), + [sym__newline] = ACTIONS(980), + [sym__space] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(802), + [anon_sym_LPAREN] = ACTIONS(804), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(806), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_DASH2] = ACTIONS(810), + [anon_sym_LBRACE] = ACTIONS(812), + [anon_sym_DOT_DOT] = ACTIONS(814), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(816), + [anon_sym_DOT_DOT_EQ] = ACTIONS(818), + [anon_sym_DOT_DOT_LT] = ACTIONS(818), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(820), + [aux_sym__val_number_decimal_token1] = ACTIONS(822), + [aux_sym__val_number_decimal_token2] = ACTIONS(822), + [aux_sym__val_number_decimal_token3] = ACTIONS(824), + [aux_sym__val_number_decimal_token4] = ACTIONS(824), + [aux_sym__val_number_token1] = ACTIONS(826), + [aux_sym__val_number_token2] = ACTIONS(826), + [aux_sym__val_number_token3] = ACTIONS(826), + [anon_sym_0b] = ACTIONS(828), + [anon_sym_0o] = ACTIONS(830), + [anon_sym_0x] = ACTIONS(830), + [sym_val_date] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_SQUOTE] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(840), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(844), + [anon_sym_err_GT] = ACTIONS(848), + [anon_sym_out_GT] = ACTIONS(848), + [anon_sym_e_GT] = ACTIONS(848), + [anon_sym_o_GT] = ACTIONS(848), + [anon_sym_err_PLUSout_GT] = ACTIONS(848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(848), + [anon_sym_o_PLUSe_GT] = ACTIONS(848), + [anon_sym_e_PLUSo_GT] = ACTIONS(848), + [anon_sym_err_GT_GT] = ACTIONS(848), + [anon_sym_out_GT_GT] = ACTIONS(848), + [anon_sym_e_GT_GT] = ACTIONS(848), + [anon_sym_o_GT_GT] = ACTIONS(848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(848), + [aux_sym_unquoted_token1] = ACTIONS(850), [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(852), }, [STATE(134)] = { [sym_comment] = STATE(134), + [anon_sym_in] = ACTIONS(878), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_bit_DASHshl] = ACTIONS(880), + [anon_sym_bit_DASHshr] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [anon_sym_BANG_TILDE] = ACTIONS(880), + [anon_sym_like] = ACTIONS(880), + [anon_sym_not_DASHlike] = ACTIONS(880), + [anon_sym_bit_DASHand] = ACTIONS(880), + [anon_sym_bit_DASHxor] = ACTIONS(880), + [anon_sym_bit_DASHor] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_xor] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_in2] = ACTIONS(880), + [anon_sym_not_DASHin] = ACTIONS(880), + [anon_sym_has] = ACTIONS(880), + [anon_sym_not_DASHhas] = ACTIONS(880), + [anon_sym_starts_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(880), + [anon_sym_ends_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(880), + [aux_sym_cmd_identifier_token6] = ACTIONS(878), + [sym__newline] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_err_GT_PIPE] = ACTIONS(878), + [anon_sym_out_GT_PIPE] = ACTIONS(878), + [anon_sym_e_GT_PIPE] = ACTIONS(878), + [anon_sym_o_GT_PIPE] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(878), + [anon_sym_GT2] = ACTIONS(878), + [anon_sym_DASH2] = ACTIONS(878), + [anon_sym_STAR2] = ACTIONS(878), + [anon_sym_and2] = ACTIONS(878), + [anon_sym_xor2] = ACTIONS(878), + [anon_sym_or2] = ACTIONS(878), + [anon_sym_not_DASHin2] = ACTIONS(878), + [anon_sym_has2] = ACTIONS(878), + [anon_sym_not_DASHhas2] = ACTIONS(878), + [anon_sym_starts_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(878), + [anon_sym_ends_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(878), + [anon_sym_EQ_EQ2] = ACTIONS(878), + [anon_sym_BANG_EQ2] = ACTIONS(878), + [anon_sym_LT2] = ACTIONS(878), + [anon_sym_LT_EQ2] = ACTIONS(878), + [anon_sym_GT_EQ2] = ACTIONS(878), + [anon_sym_EQ_TILDE2] = ACTIONS(878), + [anon_sym_BANG_TILDE2] = ACTIONS(878), + [anon_sym_like2] = ACTIONS(878), + [anon_sym_not_DASHlike2] = ACTIONS(878), + [anon_sym_STAR_STAR2] = ACTIONS(878), + [anon_sym_PLUS_PLUS2] = ACTIONS(878), + [anon_sym_SLASH2] = ACTIONS(878), + [anon_sym_mod2] = ACTIONS(878), + [anon_sym_SLASH_SLASH2] = ACTIONS(878), + [anon_sym_PLUS2] = ACTIONS(878), + [anon_sym_bit_DASHshl2] = ACTIONS(878), + [anon_sym_bit_DASHshr2] = ACTIONS(878), + [anon_sym_bit_DASHand2] = ACTIONS(878), + [anon_sym_bit_DASHxor2] = ACTIONS(878), + [anon_sym_bit_DASHor2] = ACTIONS(878), + [anon_sym_DOT_DOT2] = ACTIONS(878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(880), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), + [anon_sym_err_GT] = ACTIONS(878), + [anon_sym_out_GT] = ACTIONS(878), + [anon_sym_e_GT] = ACTIONS(878), + [anon_sym_o_GT] = ACTIONS(878), + [anon_sym_err_PLUSout_GT] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(878), + [anon_sym_o_PLUSe_GT] = ACTIONS(878), + [anon_sym_e_PLUSo_GT] = ACTIONS(878), + [anon_sym_err_GT_GT] = ACTIONS(878), + [anon_sym_out_GT_GT] = ACTIONS(878), + [anon_sym_e_GT_GT] = ACTIONS(878), + [anon_sym_o_GT_GT] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(878), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(135)] = { + [sym_comment] = STATE(135), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(136)] = { + [sym_comment] = STATE(136), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(884), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(886), + [anon_sym_SLASH] = ACTIONS(886), + [anon_sym_mod] = ACTIONS(884), + [anon_sym_SLASH_SLASH] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_bit_DASHshl] = ACTIONS(884), + [anon_sym_bit_DASHshr] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [anon_sym_BANG_TILDE] = ACTIONS(884), + [anon_sym_like] = ACTIONS(884), + [anon_sym_not_DASHlike] = ACTIONS(884), + [anon_sym_bit_DASHand] = ACTIONS(884), + [anon_sym_bit_DASHxor] = ACTIONS(884), + [anon_sym_bit_DASHor] = ACTIONS(884), + [anon_sym_and] = ACTIONS(884), + [anon_sym_xor] = ACTIONS(884), + [anon_sym_or] = ACTIONS(884), + [anon_sym_in2] = ACTIONS(884), + [anon_sym_not_DASHin] = ACTIONS(884), + [anon_sym_has] = ACTIONS(884), + [anon_sym_not_DASHhas] = ACTIONS(884), + [anon_sym_starts_DASHwith] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), + [anon_sym_ends_DASHwith] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_BANG_EQ] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(886), + [anon_sym_LT_EQ] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(886), + [anon_sym_GT_EQ] = ACTIONS(884), + [aux_sym_cmd_identifier_token6] = ACTIONS(888), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(870), + [anon_sym_DOT_DOT_LT2] = ACTIONS(870), + [sym_filesize_unit] = ACTIONS(984), + [sym_duration_unit] = ACTIONS(986), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(137)] = { + [sym_comment] = STATE(137), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -54695,7 +55010,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(749), [aux_sym_cmd_identifier_token6] = ACTIONS(747), [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), [anon_sym_PIPE] = ACTIONS(747), [anon_sym_err_GT_PIPE] = ACTIONS(747), [anon_sym_out_GT_PIPE] = ACTIONS(747), @@ -54741,6 +55055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(978), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -54761,8 +55076,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(135)] = { - [sym_comment] = STATE(135), + [STATE(138)] = { + [sym_comment] = STATE(138), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(139)] = { + [sym_comment] = STATE(139), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -54845,7 +55265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(984), + [aux_sym__immediate_decimal_token5] = ACTIONS(988), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -54866,113 +55286,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(136)] = { - [sym_comment] = STATE(136), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(986), - [sym_duration_unit] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(137)] = { - [sym_comment] = STATE(137), + [STATE(140)] = { + [sym_comment] = STATE(140), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -55010,7 +55325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(773), [aux_sym_cmd_identifier_token6] = ACTIONS(771), [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), [anon_sym_PIPE] = ACTIONS(771), [anon_sym_err_GT_PIPE] = ACTIONS(771), [anon_sym_out_GT_PIPE] = ACTIONS(771), @@ -55076,113 +55390,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(138)] = { - [sym_comment] = STATE(138), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [STATE(141)] = { + [sym_comment] = STATE(141), + [anon_sym_in] = ACTIONS(878), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_bit_DASHshl] = ACTIONS(880), + [anon_sym_bit_DASHshr] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [anon_sym_BANG_TILDE] = ACTIONS(880), + [anon_sym_like] = ACTIONS(880), + [anon_sym_not_DASHlike] = ACTIONS(880), + [anon_sym_bit_DASHand] = ACTIONS(880), + [anon_sym_bit_DASHxor] = ACTIONS(880), + [anon_sym_bit_DASHor] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_xor] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_in2] = ACTIONS(880), + [anon_sym_not_DASHin] = ACTIONS(880), + [anon_sym_has] = ACTIONS(880), + [anon_sym_not_DASHhas] = ACTIONS(880), + [anon_sym_starts_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(880), + [anon_sym_ends_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(880), + [aux_sym_cmd_identifier_token6] = ACTIONS(878), + [sym__newline] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_err_GT_PIPE] = ACTIONS(878), + [anon_sym_out_GT_PIPE] = ACTIONS(878), + [anon_sym_e_GT_PIPE] = ACTIONS(878), + [anon_sym_o_GT_PIPE] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(878), + [anon_sym_GT2] = ACTIONS(878), + [anon_sym_DASH2] = ACTIONS(878), + [anon_sym_STAR2] = ACTIONS(878), + [anon_sym_and2] = ACTIONS(878), + [anon_sym_xor2] = ACTIONS(878), + [anon_sym_or2] = ACTIONS(878), + [anon_sym_not_DASHin2] = ACTIONS(878), + [anon_sym_has2] = ACTIONS(878), + [anon_sym_not_DASHhas2] = ACTIONS(878), + [anon_sym_starts_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(878), + [anon_sym_ends_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(878), + [anon_sym_EQ_EQ2] = ACTIONS(878), + [anon_sym_BANG_EQ2] = ACTIONS(878), + [anon_sym_LT2] = ACTIONS(878), + [anon_sym_LT_EQ2] = ACTIONS(878), + [anon_sym_GT_EQ2] = ACTIONS(878), + [anon_sym_EQ_TILDE2] = ACTIONS(878), + [anon_sym_BANG_TILDE2] = ACTIONS(878), + [anon_sym_like2] = ACTIONS(878), + [anon_sym_not_DASHlike2] = ACTIONS(878), + [anon_sym_STAR_STAR2] = ACTIONS(878), + [anon_sym_PLUS_PLUS2] = ACTIONS(878), + [anon_sym_SLASH2] = ACTIONS(878), + [anon_sym_mod2] = ACTIONS(878), + [anon_sym_SLASH_SLASH2] = ACTIONS(878), + [anon_sym_PLUS2] = ACTIONS(878), + [anon_sym_bit_DASHshl2] = ACTIONS(878), + [anon_sym_bit_DASHshr2] = ACTIONS(878), + [anon_sym_bit_DASHand2] = ACTIONS(878), + [anon_sym_bit_DASHxor2] = ACTIONS(878), + [anon_sym_bit_DASHor2] = ACTIONS(878), + [anon_sym_DOT_DOT2] = ACTIONS(878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(880), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), + [anon_sym_err_GT] = ACTIONS(878), + [anon_sym_out_GT] = ACTIONS(878), + [anon_sym_e_GT] = ACTIONS(878), + [anon_sym_o_GT] = ACTIONS(878), + [anon_sym_err_PLUSout_GT] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(878), + [anon_sym_o_PLUSe_GT] = ACTIONS(878), + [anon_sym_e_PLUSo_GT] = ACTIONS(878), + [anon_sym_err_GT_GT] = ACTIONS(878), + [anon_sym_out_GT_GT] = ACTIONS(878), + [anon_sym_e_GT_GT] = ACTIONS(878), + [anon_sym_o_GT_GT] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(878), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(139)] = { - [sym_comment] = STATE(139), + [STATE(142)] = { + [sym_comment] = STATE(142), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(884), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(886), + [anon_sym_SLASH] = ACTIONS(886), + [anon_sym_mod] = ACTIONS(884), + [anon_sym_SLASH_SLASH] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_bit_DASHshl] = ACTIONS(884), + [anon_sym_bit_DASHshr] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [anon_sym_BANG_TILDE] = ACTIONS(884), + [anon_sym_like] = ACTIONS(884), + [anon_sym_not_DASHlike] = ACTIONS(884), + [anon_sym_bit_DASHand] = ACTIONS(884), + [anon_sym_bit_DASHxor] = ACTIONS(884), + [anon_sym_bit_DASHor] = ACTIONS(884), + [anon_sym_and] = ACTIONS(884), + [anon_sym_xor] = ACTIONS(884), + [anon_sym_or] = ACTIONS(884), + [anon_sym_in2] = ACTIONS(884), + [anon_sym_not_DASHin] = ACTIONS(884), + [anon_sym_has] = ACTIONS(884), + [anon_sym_not_DASHhas] = ACTIONS(884), + [anon_sym_starts_DASHwith] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), + [anon_sym_ends_DASHwith] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_BANG_EQ] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(886), + [anon_sym_LT_EQ] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(886), + [anon_sym_GT_EQ] = ACTIONS(884), + [aux_sym_cmd_identifier_token6] = ACTIONS(888), + [sym__newline] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(870), + [anon_sym_DOT_DOT_LT2] = ACTIONS(870), + [sym_filesize_unit] = ACTIONS(990), + [sym_duration_unit] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(143)] = { + [sym_comment] = STATE(143), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -55265,7 +55682,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(962), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -55286,526 +55702,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(140)] = { - [sym_comment] = STATE(140), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(141)] = { - [sym_comment] = STATE(141), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(990), - [sym_duration_unit] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(142)] = { - [sym_comment] = STATE(142), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(143)] = { - [sym_comment] = STATE(143), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(144)] = { [sym_comment] = STATE(144), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(145)] = { [sym_comment] = STATE(145), - [anon_sym_in] = ACTIONS(996), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(146)] = { + [sym_comment] = STATE(146), + [anon_sym_in] = ACTIONS(1002), [anon_sym_STAR_STAR] = ACTIONS(1004), [anon_sym_PLUS_PLUS] = ACTIONS(1004), [anon_sym_STAR] = ACTIONS(1006), @@ -55841,577 +55942,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1006), [anon_sym_GT_EQ] = ACTIONS(1004), [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(146)] = { - [sym_comment] = STATE(146), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(147)] = { [sym_comment] = STATE(147), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_like] = ACTIONS(1004), + [anon_sym_not_DASHlike] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_has] = ACTIONS(1004), + [anon_sym_not_DASHhas] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(148)] = { [sym_comment] = STATE(148), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_like] = ACTIONS(1004), + [anon_sym_not_DASHlike] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_has] = ACTIONS(1004), + [anon_sym_not_DASHhas] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(149)] = { [sym_comment] = STATE(149), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(150)] = { - [sym_comment] = STATE(150), - [ts_builtin_sym_end] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(151)] = { - [sym_comment] = STATE(151), - [anon_sym_in] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(994), [anon_sym_STAR_STAR] = ACTIONS(1004), [anon_sym_PLUS_PLUS] = ACTIONS(1004), [anon_sym_STAR] = ACTIONS(1006), @@ -56447,313 +56245,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1006), [anon_sym_GT_EQ] = ACTIONS(1004), [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(152)] = { - [sym_pipeline] = STATE(4430), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(152), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [STATE(150)] = { + [sym_comment] = STATE(150), + [ts_builtin_sym_end] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_bit_DASHshl] = ACTIONS(1012), + [anon_sym_bit_DASHshr] = ACTIONS(1012), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_like] = ACTIONS(1012), + [anon_sym_not_DASHlike] = ACTIONS(1012), + [anon_sym_bit_DASHand] = ACTIONS(1012), + [anon_sym_bit_DASHxor] = ACTIONS(1012), + [anon_sym_bit_DASHor] = ACTIONS(1012), + [anon_sym_and] = ACTIONS(1012), + [anon_sym_xor] = ACTIONS(1012), + [anon_sym_or] = ACTIONS(1012), + [anon_sym_in2] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1012), + [anon_sym_has] = ACTIONS(1012), + [anon_sym_not_DASHhas] = ACTIONS(1012), + [anon_sym_starts_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1012), + [anon_sym_ends_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_GT_EQ] = ACTIONS(1012), + [aux_sym_cmd_identifier_token6] = ACTIONS(1016), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(153)] = { - [sym_pipeline] = STATE(4585), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(153), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [STATE(151)] = { + [sym_comment] = STATE(151), + [ts_builtin_sym_end] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_bit_DASHshl] = ACTIONS(1012), + [anon_sym_bit_DASHshr] = ACTIONS(1012), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_like] = ACTIONS(1012), + [anon_sym_not_DASHlike] = ACTIONS(1012), + [anon_sym_bit_DASHand] = ACTIONS(1012), + [anon_sym_bit_DASHxor] = ACTIONS(1012), + [anon_sym_bit_DASHor] = ACTIONS(1012), + [anon_sym_and] = ACTIONS(1012), + [anon_sym_xor] = ACTIONS(1012), + [anon_sym_or] = ACTIONS(1012), + [anon_sym_in2] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1012), + [anon_sym_has] = ACTIONS(1012), + [anon_sym_not_DASHhas] = ACTIONS(1012), + [anon_sym_starts_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1012), + [anon_sym_ends_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_GT_EQ] = ACTIONS(1012), + [aux_sym_cmd_identifier_token6] = ACTIONS(1016), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(154)] = { - [sym_pipeline] = STATE(4212), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(154), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(152)] = { + [sym_pipeline_parenthesized] = STATE(4620), + [sym_cmd_identifier] = STATE(2823), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(152), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -56768,9 +56568,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -56786,14 +56586,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -56806,54 +56606,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(155)] = { - [sym_pipeline] = STATE(4294), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(155), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(153)] = { + [sym_pipeline] = STATE(4316), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(153), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -56868,7 +56668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1030), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -56890,10 +56690,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -56910,50 +56710,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(156)] = { - [sym_pipeline] = STATE(4304), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(156), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(154)] = { + [sym_pipeline] = STATE(4331), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(154), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -56968,7 +56768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1030), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -56990,10 +56790,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57010,50 +56810,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(157)] = { - [sym_pipeline] = STATE(4311), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(157), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(155)] = { + [sym_pipeline] = STATE(4331), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(155), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57068,7 +56868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(461), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57090,10 +56890,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57110,50 +56910,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(158)] = { - [sym_pipeline] = STATE(4331), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(158), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(156)] = { + [sym_comment] = STATE(156), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_like] = ACTIONS(1004), + [anon_sym_not_DASHlike] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_has] = ACTIONS(1004), + [anon_sym_not_DASHhas] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(157)] = { + [sym_pipeline] = STATE(4316), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(157), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57168,7 +57068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(461), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57190,10 +57090,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57210,50 +57110,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(158)] = { + [sym_pipeline] = STATE(4557), + [sym_cmd_identifier] = STATE(2828), + [sym__ctrl_expression] = STATE(3283), + [sym_ctrl_if] = STATE(3300), + [sym_ctrl_match] = STATE(3300), + [sym_ctrl_try] = STATE(3300), + [sym_pipe_element] = STATE(3060), + [sym_where_command] = STATE(3283), + [sym__expression] = STATE(2257), + [sym_expr_unary] = STATE(1267), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1267), + [sym__expr_binary_expression] = STATE(2217), + [sym_expr_parenthesized] = STATE(929), + [sym_val_range] = STATE(1267), + [sym__value] = STATE(1267), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1265), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3283), + [sym_comment] = STATE(158), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(292), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, [STATE(159)] = { - [sym_pipeline_parenthesized] = STATE(4460), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_pipeline_parenthesized] = STATE(4615), + [sym_cmd_identifier] = STATE(2823), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(159), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57268,7 +57268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -57290,10 +57290,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57311,49 +57311,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(160)] = { - [sym_pipeline] = STATE(4518), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [sym_pipeline] = STATE(4498), + [sym_cmd_identifier] = STATE(2828), + [sym__ctrl_expression] = STATE(3283), + [sym_ctrl_if] = STATE(3300), + [sym_ctrl_match] = STATE(3300), + [sym_ctrl_try] = STATE(3300), + [sym_pipe_element] = STATE(3060), + [sym_where_command] = STATE(3283), + [sym__expression] = STATE(2257), + [sym_expr_unary] = STATE(1267), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1267), + [sym__expr_binary_expression] = STATE(2217), + [sym_expr_parenthesized] = STATE(929), + [sym_val_range] = STATE(1267), + [sym__value] = STATE(1267), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1265), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3283), [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -57382,7 +57382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -57411,49 +57411,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(161)] = { - [sym_pipeline_parenthesized] = STATE(4589), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_pipeline] = STATE(4335), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(161), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57468,9 +57468,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(461), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57486,14 +57486,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57506,54 +57506,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(162)] = { - [sym_pipeline_parenthesized] = STATE(4592), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_pipeline] = STATE(4249), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(162), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57568,9 +57568,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57586,14 +57586,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57606,54 +57606,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(163)] = { - [sym_pipeline_parenthesized] = STATE(4616), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_pipeline_parenthesized] = STATE(4614), + [sym_cmd_identifier] = STATE(2823), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(163), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57668,7 +57668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -57690,10 +57690,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57711,149 +57711,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(164)] = { - [sym_pipeline_parenthesized] = STATE(4617), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(164), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(165)] = { - [sym_pipeline] = STATE(4409), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [sym_pipeline] = STATE(4594), + [sym_cmd_identifier] = STATE(2828), + [sym__ctrl_expression] = STATE(3283), + [sym_ctrl_if] = STATE(3300), + [sym_ctrl_match] = STATE(3300), + [sym_ctrl_try] = STATE(3300), + [sym_pipe_element] = STATE(3060), + [sym_where_command] = STATE(3283), + [sym__expression] = STATE(2257), + [sym_expr_unary] = STATE(1267), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1267), + [sym__expr_binary_expression] = STATE(2217), + [sym_expr_parenthesized] = STATE(929), + [sym_val_range] = STATE(1267), + [sym__value] = STATE(1267), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1265), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(165), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3283), + [sym_comment] = STATE(164), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -57882,7 +57782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -57910,50 +57810,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, + [STATE(165)] = { + [sym_comment] = STATE(165), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_like] = ACTIONS(1004), + [anon_sym_not_DASHlike] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_has] = ACTIONS(1004), + [anon_sym_not_DASHhas] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(166)] = { - [sym_pipeline] = STATE(4212), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4321), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57968,7 +57968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57990,10 +57990,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58011,49 +58011,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(167)] = { - [sym_pipeline] = STATE(4294), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4335), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58068,7 +58068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58090,10 +58090,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58111,49 +58111,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(168)] = { - [sym_pipeline] = STATE(4304), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4321), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58168,7 +58168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(1030), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58190,10 +58190,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58211,49 +58211,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(169)] = { - [sym_pipeline] = STATE(4311), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4316), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58268,7 +58268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58290,10 +58290,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58311,49 +58311,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(170)] = { - [sym_pipeline] = STATE(4331), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), + [sym_pipeline_parenthesized] = STATE(4468), + [sym_cmd_identifier] = STATE(2823), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(170), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58368,9 +58368,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -58386,14 +58386,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58406,54 +58406,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(171)] = { - [sym_pipeline_parenthesized] = STATE(4589), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_pipeline] = STATE(4331), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), [sym_comment] = STATE(171), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58468,9 +58468,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -58486,14 +58486,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58506,254 +58506,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(172)] = { - [sym_comment] = STATE(172), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(173)] = { - [sym_comment] = STATE(173), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(174)] = { - [sym_pipeline] = STATE(4212), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_pipeline_parenthesized] = STATE(4614), + [sym_cmd_identifier] = STATE(2823), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(172), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58768,9 +58568,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -58786,14 +58586,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58806,54 +58606,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(175)] = { - [sym_pipeline] = STATE(4294), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(173)] = { + [sym_pipeline_parenthesized] = STATE(4615), + [sym_cmd_identifier] = STATE(2823), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(173), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58868,9 +58668,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -58886,14 +58686,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58906,54 +58706,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(176)] = { - [sym_pipeline] = STATE(4304), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(176), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [STATE(174)] = { + [sym_pipeline_parenthesized] = STATE(4619), + [sym_cmd_identifier] = STATE(2823), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(174), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58968,9 +58768,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -58986,14 +58786,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59006,54 +58806,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(177)] = { - [sym_pipeline] = STATE(4311), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(175)] = { + [sym_pipeline_parenthesized] = STATE(4619), + [sym_cmd_identifier] = STATE(2823), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(177), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(175), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59068,9 +58868,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59086,14 +58886,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59106,54 +58906,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(178)] = { - [sym_pipeline] = STATE(4331), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [STATE(176)] = { + [sym_pipeline] = STATE(4321), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59168,7 +58968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(461), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59190,106 +58990,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(179)] = { - [sym_pipeline_parenthesized] = STATE(4592), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(179), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -59306,54 +59006,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(180)] = { - [sym_pipeline_parenthesized] = STATE(4460), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(177)] = { + [sym_pipeline_parenthesized] = STATE(4468), + [sym_cmd_identifier] = STATE(2823), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(180), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(177), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59410,50 +59110,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(181)] = { - [sym_pipeline_parenthesized] = STATE(4616), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(178)] = { + [sym_pipeline] = STATE(4525), + [sym_cmd_identifier] = STATE(2828), + [sym__ctrl_expression] = STATE(3283), + [sym_ctrl_if] = STATE(3300), + [sym_ctrl_match] = STATE(3300), + [sym_ctrl_try] = STATE(3300), + [sym_pipe_element] = STATE(3060), + [sym_where_command] = STATE(3283), + [sym__expression] = STATE(2257), + [sym_expr_unary] = STATE(1267), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1267), + [sym__expr_binary_expression] = STATE(2217), + [sym_expr_parenthesized] = STATE(929), + [sym_val_range] = STATE(1267), + [sym__value] = STATE(1267), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1265), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3283), + [sym_comment] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(292), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(179)] = { + [sym_pipeline_parenthesized] = STATE(4620), + [sym_cmd_identifier] = STATE(2823), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2929), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(181), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), + [sym_comment] = STATE(179), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59510,50 +59310,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(182)] = { - [sym_pipeline_parenthesized] = STATE(4617), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(182), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(180)] = { + [sym_pipeline] = STATE(4335), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(180), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59568,9 +59368,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1030), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59586,14 +59386,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59606,54 +59406,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(183)] = { - [sym_pipeline] = STATE(4412), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [STATE(181)] = { + [sym_pipeline] = STATE(4535), + [sym_cmd_identifier] = STATE(2828), + [sym__ctrl_expression] = STATE(3283), + [sym_ctrl_if] = STATE(3300), + [sym_ctrl_match] = STATE(3300), + [sym_ctrl_try] = STATE(3300), + [sym_pipe_element] = STATE(3060), + [sym_where_command] = STATE(3283), + [sym__expression] = STATE(2257), + [sym_expr_unary] = STATE(1267), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1267), + [sym__expr_binary_expression] = STATE(2217), + [sym_expr_parenthesized] = STATE(929), + [sym_val_range] = STATE(1267), + [sym__value] = STATE(1267), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1265), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), - [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3283), + [sym_comment] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(292), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -59682,7 +59482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -59710,48 +59510,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(184)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(182)] = { + [sym_pipeline] = STATE(4249), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(182), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(282), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(461), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(183)] = { + [sym_pipeline] = STATE(4249), + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2885), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(186), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(183), + [aux_sym_pipeline_repeat1] = STATE(190), [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -59767,7 +59668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1030), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59789,10 +59690,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59809,49 +59710,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(184)] = { + [sym_cmd_identifier] = STATE(2828), + [sym__ctrl_expression] = STATE(3283), + [sym_ctrl_if] = STATE(3300), + [sym_ctrl_match] = STATE(3300), + [sym_ctrl_try] = STATE(3300), + [sym_pipe_element] = STATE(2954), + [sym_where_command] = STATE(3283), + [sym__expression] = STATE(2257), + [sym_expr_unary] = STATE(1267), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1267), + [sym__expr_binary_expression] = STATE(2217), + [sym_expr_parenthesized] = STATE(929), + [sym_val_range] = STATE(1267), + [sym__value] = STATE(1267), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1265), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3283), + [sym_comment] = STATE(184), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(292), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, [STATE(185)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(292), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_like] = ACTIONS(1004), + [anon_sym_not_DASHlike] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_has] = ACTIONS(1004), + [anon_sym_not_DASHhas] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [sym__newline] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1002), + [anon_sym_out_GT_GT] = ACTIONS(1002), + [anon_sym_e_GT_GT] = ACTIONS(1002), + [anon_sym_o_GT_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(186)] = { + [sym_comment] = STATE(186), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_like] = ACTIONS(1004), + [anon_sym_not_DASHlike] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_has] = ACTIONS(1004), + [anon_sym_not_DASHhas] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [sym__newline] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(187)] = { + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2836), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(187), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59908,49 +60106,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(186)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(3228), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(186), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(280), + [STATE(188)] = { + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(3324), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(188), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(277), [anon_sym_export] = ACTIONS(1034), [anon_sym_alias] = ACTIONS(1037), [anon_sym_let] = ACTIONS(1037), @@ -60007,49 +60205,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1127), }, - [STATE(187)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2976), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(187), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [STATE(189)] = { + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2836), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60064,9 +60262,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(461), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -60082,14 +60280,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60102,53 +60300,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(188)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3087), - [sym_comment] = STATE(188), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(190)] = { + [sym_cmd_identifier] = STATE(2764), + [sym__ctrl_expression] = STATE(3166), + [sym_ctrl_if] = STATE(3173), + [sym_ctrl_match] = STATE(3173), + [sym_ctrl_try] = STATE(3173), + [sym_pipe_element] = STATE(2836), + [sym_where_command] = STATE(3166), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3166), + [sym_comment] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(287), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60163,7 +60361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(1030), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -60185,10 +60383,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60205,346 +60403,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(189)] = { - [sym_comment] = STATE(189), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(190)] = { - [sym_comment] = STATE(190), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(191)] = { - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2938), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3252), + [sym_cmd_identifier] = STATE(2823), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2922), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(333), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(192)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2976), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_cmd_identifier] = STATE(2823), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(2922), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(192), [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(273), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60602,48 +60602,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(193)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(3227), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3262), + [sym_cmd_identifier] = STATE(2823), + [sym__ctrl_expression_parenthesized] = STATE(3258), + [sym_ctrl_if_parenthesized] = STATE(3259), + [sym_ctrl_match] = STATE(3259), + [sym_ctrl_try_parenthesized] = STATE(3259), + [sym_pipe_element_parenthesized] = STATE(3267), + [sym_where_command_parenthesized] = STATE(3258), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3296), [sym_comment] = STATE(193), [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(280), [anon_sym_export] = ACTIONS(1130), [anon_sym_alias] = ACTIONS(1133), [anon_sym_let] = ACTIONS(1133), @@ -60701,43 +60701,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1223), }, [STATE(194)] = { - [sym_expr_parenthesized] = STATE(3738), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4475), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(3941), - [sym__spread_variable] = STATE(2972), + [sym_expr_parenthesized] = STATE(3739), + [sym__spread_parenthesized] = STATE(2962), + [sym_val_range] = STATE(3043), + [sym__val_range] = STATE(4476), + [sym__value] = STATE(3043), + [sym_val_nothing] = STATE(3031), + [sym_val_bool] = STATE(3944), + [sym__spread_variable] = STATE(2970), [sym_val_variable] = STATE(3848), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(3366), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), + [sym_val_cellpath] = STATE(3031), + [sym_val_number] = STATE(3031), + [sym__val_number_decimal] = STATE(3396), + [sym__val_number] = STATE(3042), + [sym_val_duration] = STATE(3031), + [sym_val_filesize] = STATE(3031), + [sym_val_binary] = STATE(3031), + [sym_val_string] = STATE(3031), + [sym__raw_str] = STATE(2449), + [sym__str_double_quotes] = STATE(2449), + [sym__str_single_quotes] = STATE(2449), + [sym__str_back_ticks] = STATE(2449), + [sym_val_interpolated] = STATE(3031), + [sym__inter_single_quotes] = STATE(3069), + [sym__inter_double_quotes] = STATE(3001), + [sym_val_list] = STATE(3031), + [sym__spread_list] = STATE(2962), + [sym_val_record] = STATE(3031), + [sym_val_table] = STATE(3031), + [sym_val_closure] = STATE(3031), [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4475), + [sym_redirection] = STATE(2975), + [sym__flag] = STATE(3018), + [sym_short_flag] = STATE(3054), + [sym_long_flag] = STATE(3054), + [sym_unquoted] = STATE(2653), + [sym__unquoted_with_expr] = STATE(2976), + [sym__unquoted_anonymous_prefix] = STATE(4476), [sym_comment] = STATE(194), [anon_sym_true] = ACTIONS(1226), [anon_sym_false] = ACTIONS(1226), @@ -60745,92 +60745,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1230), [aux_sym_cmd_identifier_token4] = ACTIONS(1230), [aux_sym_cmd_identifier_token5] = ACTIONS(1230), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(799), + [sym__newline] = ACTIONS(800), + [sym__space] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_LBRACK] = ACTIONS(802), + [anon_sym_LPAREN] = ACTIONS(804), + [anon_sym_DOLLAR] = ACTIONS(806), [anon_sym_DASH_DASH] = ACTIONS(1232), [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(812), [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(816), [anon_sym_DOT_DOT_EQ] = ACTIONS(1238), [anon_sym_DOT_DOT_LT] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(820), [aux_sym__val_number_decimal_token1] = ACTIONS(1240), [aux_sym__val_number_decimal_token2] = ACTIONS(1240), [aux_sym__val_number_decimal_token3] = ACTIONS(1242), [aux_sym__val_number_decimal_token4] = ACTIONS(1242), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), + [aux_sym__val_number_token1] = ACTIONS(826), + [aux_sym__val_number_token2] = ACTIONS(826), + [aux_sym__val_number_token3] = ACTIONS(826), + [anon_sym_0b] = ACTIONS(828), + [anon_sym_0o] = ACTIONS(830), + [anon_sym_0x] = ACTIONS(830), [sym_val_date] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_SQUOTE] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(840), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(842), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(844), + [anon_sym_err_GT] = ACTIONS(848), + [anon_sym_out_GT] = ACTIONS(848), + [anon_sym_e_GT] = ACTIONS(848), + [anon_sym_o_GT] = ACTIONS(848), + [anon_sym_err_PLUSout_GT] = ACTIONS(848), + [anon_sym_out_PLUSerr_GT] = ACTIONS(848), + [anon_sym_o_PLUSe_GT] = ACTIONS(848), + [anon_sym_e_PLUSo_GT] = ACTIONS(848), + [anon_sym_err_GT_GT] = ACTIONS(848), + [anon_sym_out_GT_GT] = ACTIONS(848), + [anon_sym_e_GT_GT] = ACTIONS(848), + [anon_sym_o_GT_GT] = ACTIONS(848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(848), + [aux_sym_unquoted_token1] = ACTIONS(850), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), + [sym_raw_string_begin] = ACTIONS(852), }, [STATE(195)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(262), - [sym_ctrl_if_parenthesized] = STATE(3315), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(207), + [sym_ctrl_if_parenthesized] = STATE(3265), [sym_block] = STATE(3316), [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), [sym_command] = STATE(3316), [sym_comment] = STATE(195), [anon_sym_export] = ACTIONS(277), @@ -60847,32 +60847,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60890,41 +60890,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(196)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3312), + [sym_block] = STATE(3313), + [sym__expression_parenthesized] = STATE(3313), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3313), [sym_comment] = STATE(196), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -60946,26 +60946,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60983,41 +60983,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(197)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(204), + [sym_ctrl_if_parenthesized] = STATE(3262), + [sym_block] = STATE(3264), + [sym__expression_parenthesized] = STATE(3264), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3264), [sym_comment] = STATE(197), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61039,26 +61039,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61076,41 +61076,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(198)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(203), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3269), + [sym_block] = STATE(3273), + [sym__expression_parenthesized] = STATE(3273), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3273), [sym_comment] = STATE(198), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61132,26 +61132,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61169,41 +61169,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(199)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(229), + [sym_ctrl_if_parenthesized] = STATE(3269), + [sym_block] = STATE(3273), + [sym__expression_parenthesized] = STATE(3273), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3273), [sym_comment] = STATE(199), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61225,26 +61225,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61262,41 +61262,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(200)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(202), + [sym_ctrl_if_parenthesized] = STATE(3312), + [sym_block] = STATE(3313), + [sym__expression_parenthesized] = STATE(3313), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3313), [sym_comment] = STATE(200), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61318,26 +61318,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61355,41 +61355,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(201)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(204), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(231), + [sym_ctrl_if_parenthesized] = STATE(3276), + [sym_block] = STATE(3277), + [sym__expression_parenthesized] = STATE(3277), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3277), [sym_comment] = STATE(201), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61411,26 +61411,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61448,41 +61448,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(202)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3299), + [sym_block] = STATE(3306), + [sym__expression_parenthesized] = STATE(3306), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3306), [sym_comment] = STATE(202), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61504,26 +61504,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61541,41 +61541,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(203)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(233), + [sym_ctrl_if_parenthesized] = STATE(3299), + [sym_block] = STATE(3306), + [sym__expression_parenthesized] = STATE(3306), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3306), [sym_comment] = STATE(203), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61597,26 +61597,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61634,41 +61634,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(204)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3217), + [sym_block] = STATE(3218), + [sym__expression_parenthesized] = STATE(3218), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3218), [sym_comment] = STATE(204), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61690,26 +61690,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61727,41 +61727,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(205)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(202), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(210), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3305), + [sym__expression_parenthesized] = STATE(3305), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3305), [sym_comment] = STATE(205), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61777,32 +61777,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61820,41 +61820,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(206)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(209), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(212), + [sym_ctrl_if_parenthesized] = STATE(3309), + [sym_block] = STATE(3310), + [sym__expression_parenthesized] = STATE(3310), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3310), [sym_comment] = STATE(206), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61870,32 +61870,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61913,41 +61913,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(207)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(212), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3312), + [sym_block] = STATE(3313), + [sym__expression_parenthesized] = STATE(3313), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3313), [sym_comment] = STATE(207), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61963,32 +61963,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62006,41 +62006,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(208)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2853), [aux_sym__repeat_newline] = STATE(214), - [sym_ctrl_if_parenthesized] = STATE(3315), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_ctrl_if_parenthesized] = STATE(3312), + [sym_block] = STATE(3313), + [sym__expression_parenthesized] = STATE(3313), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3313), [sym_comment] = STATE(208), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62056,32 +62056,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62099,41 +62099,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(209)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(216), + [sym_ctrl_if_parenthesized] = STATE(3262), + [sym_block] = STATE(3264), + [sym__expression_parenthesized] = STATE(3264), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3264), [sym_comment] = STATE(209), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62149,32 +62149,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62192,41 +62192,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(210)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(216), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3269), + [sym_block] = STATE(3273), + [sym__expression_parenthesized] = STATE(3273), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3273), [sym_comment] = STATE(210), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62242,32 +62242,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62285,41 +62285,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(211)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2853), [aux_sym__repeat_newline] = STATE(218), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_ctrl_if_parenthesized] = STATE(3269), + [sym_block] = STATE(3273), + [sym__expression_parenthesized] = STATE(3273), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3273), [sym_comment] = STATE(211), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62335,32 +62335,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62378,41 +62378,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(212)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3276), + [sym_block] = STATE(3277), + [sym__expression_parenthesized] = STATE(3277), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3277), [sym_comment] = STATE(212), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62428,32 +62428,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62471,41 +62471,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(213)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2853), [aux_sym__repeat_newline] = STATE(220), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_ctrl_if_parenthesized] = STATE(3276), + [sym_block] = STATE(3277), + [sym__expression_parenthesized] = STATE(3277), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3277), [sym_comment] = STATE(213), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62521,32 +62521,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62564,41 +62564,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(214)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3299), + [sym_block] = STATE(3306), + [sym__expression_parenthesized] = STATE(3306), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3306), [sym_comment] = STATE(214), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62614,32 +62614,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62657,41 +62657,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(215)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2853), [aux_sym__repeat_newline] = STATE(222), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_ctrl_if_parenthesized] = STATE(3299), + [sym_block] = STATE(3306), + [sym__expression_parenthesized] = STATE(3306), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3306), [sym_comment] = STATE(215), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62707,32 +62707,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62750,41 +62750,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(216)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3217), + [sym_block] = STATE(3218), + [sym__expression_parenthesized] = STATE(3218), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3218), [sym_comment] = STATE(216), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62800,32 +62800,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62843,41 +62843,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(217)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(224), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(223), + [sym_ctrl_if_parenthesized] = STATE(3217), + [sym_block] = STATE(3218), + [sym__expression_parenthesized] = STATE(3218), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3218), [sym_comment] = STATE(217), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62893,32 +62893,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62936,41 +62936,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(218)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3222), + [sym_block] = STATE(3223), + [sym__expression_parenthesized] = STATE(3223), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3223), [sym_comment] = STATE(218), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62986,32 +62986,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63029,41 +63029,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(219)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2853), [aux_sym__repeat_newline] = STATE(225), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_ctrl_if_parenthesized] = STATE(3222), + [sym_block] = STATE(3223), + [sym__expression_parenthesized] = STATE(3223), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3223), [sym_comment] = STATE(219), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63079,32 +63079,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63122,41 +63122,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(220)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3226), + [sym_block] = STATE(3215), + [sym__expression_parenthesized] = STATE(3215), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3215), [sym_comment] = STATE(220), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63172,32 +63172,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63215,41 +63215,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(221)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(227), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(226), + [sym_ctrl_if_parenthesized] = STATE(3226), + [sym_block] = STATE(3215), + [sym__expression_parenthesized] = STATE(3215), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3215), [sym_comment] = STATE(221), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63265,32 +63265,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63308,41 +63308,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(222)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_block] = STATE(3238), + [sym__expression_parenthesized] = STATE(3238), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3238), [sym_comment] = STATE(222), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63358,32 +63358,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63401,41 +63401,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(223)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(228), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3240), + [sym_block] = STATE(3242), + [sym__expression_parenthesized] = STATE(3242), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3242), [sym_comment] = STATE(223), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63451,32 +63451,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63494,41 +63494,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(224)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(227), + [sym_ctrl_if_parenthesized] = STATE(3240), + [sym_block] = STATE(3242), + [sym__expression_parenthesized] = STATE(3242), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3242), [sym_comment] = STATE(224), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63544,32 +63544,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63587,41 +63587,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(225)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3244), + [sym_block] = STATE(3245), + [sym__expression_parenthesized] = STATE(3245), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3245), [sym_comment] = STATE(225), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63637,32 +63637,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63680,41 +63680,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(226)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(229), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3246), + [sym_block] = STATE(3251), + [sym__expression_parenthesized] = STATE(3251), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3251), [sym_comment] = STATE(226), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63730,32 +63730,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63773,41 +63773,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(227)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3256), + [sym_block] = STATE(3257), + [sym__expression_parenthesized] = STATE(3257), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3257), [sym_comment] = STATE(227), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63823,32 +63823,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63866,41 +63866,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(228)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(234), + [sym_ctrl_if_parenthesized] = STATE(3217), + [sym_block] = STATE(3218), + [sym__expression_parenthesized] = STATE(3218), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3218), [sym_comment] = STATE(228), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63916,24 +63916,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -63959,41 +63959,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(229)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3222), + [sym_block] = STATE(3223), + [sym__expression_parenthesized] = STATE(3223), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3223), [sym_comment] = STATE(229), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64009,24 +64009,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64052,41 +64052,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(230)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(236), + [sym_ctrl_if_parenthesized] = STATE(3222), + [sym_block] = STATE(3223), + [sym__expression_parenthesized] = STATE(3223), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3223), [sym_comment] = STATE(230), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64108,26 +64108,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64145,41 +64145,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(231)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(266), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3226), + [sym_block] = STATE(3215), + [sym__expression_parenthesized] = STATE(3215), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3215), [sym_comment] = STATE(231), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64195,32 +64195,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64238,41 +64238,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(232)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2853), [aux_sym__repeat_newline] = STATE(237), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_ctrl_if_parenthesized] = STATE(3226), + [sym_block] = STATE(3215), + [sym__expression_parenthesized] = STATE(3215), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3215), [sym_comment] = STATE(232), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64288,32 +64288,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64331,41 +64331,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(233)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(239), - [sym_ctrl_if_parenthesized] = STATE(3315), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_block] = STATE(3238), + [sym__expression_parenthesized] = STATE(3238), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3316), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3238), [sym_comment] = STATE(233), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64381,32 +64381,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64424,41 +64424,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(234)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(200), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3240), + [sym_block] = STATE(3242), + [sym__expression_parenthesized] = STATE(3242), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3242), [sym_comment] = STATE(234), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64480,26 +64480,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64517,41 +64517,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(235)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(241), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(238), + [sym_ctrl_if_parenthesized] = STATE(3240), + [sym_block] = STATE(3242), + [sym__expression_parenthesized] = STATE(3242), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3242), [sym_comment] = STATE(235), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64567,32 +64567,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64610,41 +64610,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(236)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(243), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3244), + [sym_block] = STATE(3245), + [sym__expression_parenthesized] = STATE(3245), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3245), [sym_comment] = STATE(236), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64660,32 +64660,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64703,41 +64703,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(237)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3246), + [sym_block] = STATE(3251), + [sym__expression_parenthesized] = STATE(3251), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3251), [sym_comment] = STATE(237), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64753,32 +64753,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64796,41 +64796,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(238)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(245), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3256), + [sym_block] = STATE(3257), + [sym__expression_parenthesized] = STATE(3257), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3257), [sym_comment] = STATE(238), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64846,32 +64846,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64889,41 +64889,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(239)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(242), + [sym_ctrl_if_parenthesized] = STATE(3265), + [sym_block] = STATE(3316), + [sym__expression_parenthesized] = STATE(3316), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3316), [sym_comment] = STATE(239), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64939,24 +64939,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -64982,41 +64982,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(240)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(247), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(245), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3305), + [sym__expression_parenthesized] = STATE(3305), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3305), [sym_comment] = STATE(240), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65032,24 +65032,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65075,41 +65075,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(241)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(247), + [sym_ctrl_if_parenthesized] = STATE(3309), + [sym_block] = STATE(3310), + [sym__expression_parenthesized] = STATE(3310), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3310), [sym_comment] = STATE(241), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65125,24 +65125,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65168,41 +65168,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(242)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(249), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3312), + [sym_block] = STATE(3313), + [sym__expression_parenthesized] = STATE(3313), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3313), [sym_comment] = STATE(242), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65218,24 +65218,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65261,41 +65261,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(243)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(249), + [sym_ctrl_if_parenthesized] = STATE(3312), + [sym_block] = STATE(3313), + [sym__expression_parenthesized] = STATE(3313), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3313), [sym_comment] = STATE(243), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65311,24 +65311,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65354,41 +65354,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(244)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(250), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(251), + [sym_ctrl_if_parenthesized] = STATE(3262), + [sym_block] = STATE(3264), + [sym__expression_parenthesized] = STATE(3264), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3264), [sym_comment] = STATE(244), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65404,24 +65404,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65447,41 +65447,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(245)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3269), + [sym_block] = STATE(3273), + [sym__expression_parenthesized] = STATE(3273), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3273), [sym_comment] = STATE(245), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65497,24 +65497,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65540,41 +65540,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(246)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(252), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(253), + [sym_ctrl_if_parenthesized] = STATE(3269), + [sym_block] = STATE(3273), + [sym__expression_parenthesized] = STATE(3273), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3273), [sym_comment] = STATE(246), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65590,24 +65590,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65633,41 +65633,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(247)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3276), + [sym_block] = STATE(3277), + [sym__expression_parenthesized] = STATE(3277), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3277), [sym_comment] = STATE(247), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65683,24 +65683,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65726,41 +65726,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(248)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(253), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(255), + [sym_ctrl_if_parenthesized] = STATE(3276), + [sym_block] = STATE(3277), + [sym__expression_parenthesized] = STATE(3277), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3277), [sym_comment] = STATE(248), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65776,24 +65776,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65819,41 +65819,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(249)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3299), + [sym_block] = STATE(3306), + [sym__expression_parenthesized] = STATE(3306), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3306), [sym_comment] = STATE(249), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65869,24 +65869,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -65912,41 +65912,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(250)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(257), + [sym_ctrl_if_parenthesized] = STATE(3299), + [sym_block] = STATE(3306), + [sym__expression_parenthesized] = STATE(3306), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3306), [sym_comment] = STATE(250), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65962,24 +65962,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66005,41 +66005,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(251)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(254), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3217), + [sym_block] = STATE(3218), + [sym__expression_parenthesized] = STATE(3218), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3218), [sym_comment] = STATE(251), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66055,24 +66055,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66098,41 +66098,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(252)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(258), + [sym_ctrl_if_parenthesized] = STATE(3217), + [sym_block] = STATE(3218), + [sym__expression_parenthesized] = STATE(3218), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3218), [sym_comment] = STATE(252), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66148,24 +66148,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66191,41 +66191,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(253)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3222), + [sym_block] = STATE(3223), + [sym__expression_parenthesized] = STATE(3223), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3223), [sym_comment] = STATE(253), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66241,24 +66241,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66284,41 +66284,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(254)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(260), + [sym_ctrl_if_parenthesized] = STATE(3222), + [sym_block] = STATE(3223), + [sym__expression_parenthesized] = STATE(3223), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3223), [sym_comment] = STATE(254), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66334,24 +66334,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66377,41 +66377,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(255)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(257), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3226), + [sym_block] = STATE(3215), + [sym__expression_parenthesized] = STATE(3215), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3215), [sym_comment] = STATE(255), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66427,32 +66427,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66470,41 +66470,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(256)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(260), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(261), + [sym_ctrl_if_parenthesized] = STATE(3226), + [sym_block] = STATE(3215), + [sym__expression_parenthesized] = STATE(3215), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3215), [sym_comment] = STATE(256), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66520,32 +66520,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66563,41 +66563,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(257)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_block] = STATE(3238), + [sym__expression_parenthesized] = STATE(3238), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3238), [sym_comment] = STATE(257), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66613,32 +66613,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66656,41 +66656,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(258)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(264), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3240), + [sym_block] = STATE(3242), + [sym__expression_parenthesized] = STATE(3242), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3242), [sym_comment] = STATE(258), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66706,32 +66706,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66749,41 +66749,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(259)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(196), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(262), + [sym_ctrl_if_parenthesized] = STATE(3240), + [sym_block] = STATE(3242), + [sym__expression_parenthesized] = STATE(3242), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3242), [sym_comment] = STATE(259), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66799,32 +66799,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66842,41 +66842,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(260)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3244), + [sym_block] = STATE(3245), + [sym__expression_parenthesized] = STATE(3245), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3245), [sym_comment] = STATE(260), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66892,32 +66892,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66935,41 +66935,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(261)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(197), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3246), + [sym_block] = STATE(3251), + [sym__expression_parenthesized] = STATE(3251), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3251), [sym_comment] = STATE(261), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66985,32 +66985,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67028,41 +67028,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(262)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3256), + [sym_block] = STATE(3257), + [sym__expression_parenthesized] = STATE(3257), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3257), [sym_comment] = STATE(262), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67078,32 +67078,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67121,41 +67121,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(263)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(230), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(196), + [sym_ctrl_if_parenthesized] = STATE(3265), + [sym_block] = STATE(3316), + [sym__expression_parenthesized] = STATE(3316), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3316), [sym_comment] = STATE(263), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67177,26 +67177,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67214,41 +67214,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(264)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(198), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3305), + [sym__expression_parenthesized] = STATE(3305), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3305), [sym_comment] = STATE(264), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67270,26 +67270,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67307,41 +67307,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(265)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(199), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(266), + [sym_ctrl_if_parenthesized] = STATE(3309), + [sym_block] = STATE(3310), + [sym__expression_parenthesized] = STATE(3310), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3310), [sym_comment] = STATE(265), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67363,26 +67363,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67400,41 +67400,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(266)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), + [sym_cmd_identifier] = STATE(2853), + [aux_sym__repeat_newline] = STATE(1402), + [sym_ctrl_if_parenthesized] = STATE(3276), + [sym_block] = STATE(3277), + [sym__expression_parenthesized] = STATE(3277), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3277), [sym_comment] = STATE(266), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67450,32 +67450,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67494,6 +67494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(267)] = { [sym_comment] = STATE(267), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -67543,7 +67544,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -67576,9 +67576,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1276), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(1276), [aux_sym__immediate_decimal_token5] = ACTIONS(1278), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), @@ -67668,9 +67668,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1280), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1280), [aux_sym__immediate_decimal_token5] = ACTIONS(1282), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), @@ -67760,9 +67760,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1284), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(1284), [aux_sym__immediate_decimal_token5] = ACTIONS(1286), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), @@ -67817,9 +67817,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -67852,9 +67852,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1288), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1288), [aux_sym__immediate_decimal_token5] = ACTIONS(1290), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), @@ -67909,9 +67909,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -67944,9 +67944,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1292), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1292), [aux_sym__immediate_decimal_token5] = ACTIONS(1294), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), @@ -67954,7 +67954,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(272)] = { [sym_comment] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -68004,6 +68003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -68036,232 +68036,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1296), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(1296), [aux_sym__immediate_decimal_token5] = ACTIONS(1298), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, [STATE(273)] = { + [sym_cmd_identifier] = STATE(2823), + [sym__expression_parenthesized] = STATE(2263), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(116), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3243), [sym_comment] = STATE(273), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1300), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(274)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(274), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(275)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(275), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1391), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -68297,10 +68115,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68317,406 +68135,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(276)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(307), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(276), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1304), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(277)] = { - [sym_comment] = STATE(277), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1310), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(278)] = { - [sym_comment] = STATE(278), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1312), - [aux_sym__immediate_decimal_token5] = ACTIONS(1314), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(279)] = { - [sym_comment] = STATE(279), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1278), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(280)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(280), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [STATE(274)] = { + [sym_cmd_identifier] = STATE(2823), + [sym__expression_parenthesized] = STATE(2263), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3243), + [sym_comment] = STATE(274), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1391), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -68752,10 +68206,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1318), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_decimal_token4] = ACTIONS(1320), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68768,228 +68222,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(281)] = { - [sym_cmd_identifier] = STATE(2895), - [sym__expression] = STATE(2262), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3334), - [sym_comment] = STATE(281), - [aux_sym_pipe_element_repeat2] = STATE(1392), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(39), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(39), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(282)] = { - [sym_comment] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1298), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(283)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(283), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), + [STATE(275)] = { + [sym_cmd_identifier] = STATE(2853), + [sym_ctrl_if] = STATE(3097), + [sym_block] = STATE(3098), + [sym__expression] = STATE(3098), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(298), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3098), + [sym_comment] = STATE(275), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69004,31 +68276,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1300), + [aux_sym__val_number_decimal_token2] = ACTIONS(1302), + [aux_sym__val_number_decimal_token3] = ACTIONS(1304), + [aux_sym__val_number_decimal_token4] = ACTIONS(1304), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69041,137 +68313,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(284)] = { - [sym_comment] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1322), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(285)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(285), + [STATE(276)] = { + [sym_cmd_identifier] = STATE(2853), + [sym_ctrl_if] = STATE(3097), + [sym_block] = STATE(3098), + [sym__expression] = STATE(3098), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3098), + [sym_comment] = STATE(276), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69186,23 +68367,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(461), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -69227,133 +68408,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(286)] = { - [sym_comment] = STATE(286), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1286), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(287)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(287), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [STATE(277)] = { + [sym_cmd_identifier] = STATE(2764), + [sym__expression] = STATE(2255), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3150), + [sym_comment] = STATE(277), + [aux_sym_pipe_element_repeat2] = STATE(1389), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69389,10 +68479,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1306), + [aux_sym__val_number_decimal_token2] = ACTIONS(1308), + [aux_sym__val_number_decimal_token3] = ACTIONS(1310), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69409,42 +68499,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(288)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(288), + [STATE(278)] = { + [sym_cmd_identifier] = STATE(2939), + [sym_ctrl_if] = STATE(3231), + [sym_block] = STATE(3232), + [sym__expression] = STATE(3232), + [sym_expr_unary] = STATE(1267), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1267), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(929), + [sym_val_range] = STATE(1267), + [sym__value] = STATE(1267), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1265), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(307), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_command] = STATE(3232), + [sym_comment] = STATE(278), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(39), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(39), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(1312), + [anon_sym_false] = ACTIONS(1312), + [anon_sym_null] = ACTIONS(1314), + [aux_sym_cmd_identifier_token3] = ACTIONS(1316), + [aux_sym_cmd_identifier_token4] = ACTIONS(1316), + [aux_sym_cmd_identifier_token5] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_DOT_DOT] = ACTIONS(69), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(1320), + [aux_sym__val_number_decimal_token2] = ACTIONS(1322), + [aux_sym__val_number_decimal_token3] = ACTIONS(1324), + [aux_sym__val_number_decimal_token4] = ACTIONS(1324), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(279)] = { + [sym_cmd_identifier] = STATE(2853), + [sym_ctrl_if] = STATE(3097), + [sym_block] = STATE(3098), + [sym__expression] = STATE(3098), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(319), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3098), + [sym_comment] = STATE(279), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69459,31 +68640,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1326), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69500,42 +68681,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(289)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4391), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(289), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), + [STATE(280)] = { + [sym_cmd_identifier] = STATE(2823), + [sym__expression_parenthesized] = STATE(2263), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2113), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4400), + [sym__command_parenthesized] = STATE(3243), + [sym_comment] = STATE(280), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1391), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69571,10 +68752,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1318), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_decimal_token4] = ACTIONS(1320), + [aux_sym__val_number_decimal_token1] = ACTIONS(1306), + [aux_sym__val_number_decimal_token2] = ACTIONS(1308), + [aux_sym__val_number_decimal_token3] = ACTIONS(1310), + [aux_sym__val_number_decimal_token4] = ACTIONS(1310), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69591,42 +68772,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(290)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(281)] = { + [sym_comment] = STATE(281), + [ts_builtin_sym_end] = ACTIONS(749), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1282), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(282)] = { + [sym_cmd_identifier] = STATE(2764), + [sym__expression] = STATE(2255), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(290), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3150), + [sym_comment] = STATE(282), + [aux_sym_pipe_element_repeat2] = STATE(1389), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69682,190 +68954,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(291)] = { - [sym_cmd_identifier] = STATE(2929), - [sym_ctrl_if] = STATE(3301), - [sym_block] = STATE(3302), - [sym__expression] = STATE(3302), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_command] = STATE(3302), - [sym_comment] = STATE(291), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(39), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [anon_sym_null] = ACTIONS(1328), - [aux_sym_cmd_identifier_token3] = ACTIONS(1330), - [aux_sym_cmd_identifier_token4] = ACTIONS(1330), - [aux_sym_cmd_identifier_token5] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(69), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [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(1338), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(292)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4759), - [sym_command] = STATE(3079), - [sym_comment] = STATE(292), - [aux_sym_pipe_element_repeat2] = STATE(1392), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(293)] = { - [sym_comment] = STATE(293), + [STATE(283)] = { + [sym_comment] = STATE(283), + [ts_builtin_sym_end] = ACTIONS(773), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -69913,7 +69004,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), @@ -69950,193 +69040,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1340), + [aux_sym__immediate_decimal_token5] = ACTIONS(1328), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(294)] = { - [sym_comment] = STATE(294), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1342), - [sym_duration_unit] = ACTIONS(1344), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(295)] = { - [sym_comment] = STATE(295), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1310), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(296)] = { - [sym_comment] = STATE(296), + [STATE(284)] = { + [sym_comment] = STATE(284), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70174,6 +69084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(749), [aux_sym_cmd_identifier_token6] = ACTIONS(747), [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), [anon_sym_PIPE] = ACTIONS(747), [anon_sym_err_GT_PIPE] = ACTIONS(747), [anon_sym_out_GT_PIPE] = ACTIONS(747), @@ -70183,6 +69094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), @@ -70219,14 +69131,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1346), - [aux_sym__immediate_decimal_token5] = ACTIONS(1348), + [aux_sym__immediate_decimal_token5] = ACTIONS(1294), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(297)] = { - [sym_comment] = STATE(297), + [STATE(285)] = { + [sym_comment] = STATE(285), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1330), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(286)] = { + [sym_cmd_identifier] = STATE(2853), + [sym_ctrl_if] = STATE(3097), + [sym_block] = STATE(3098), + [sym__expression] = STATE(3098), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(310), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_command] = STATE(3098), + [sym_comment] = STATE(286), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1030), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(287)] = { + [sym_cmd_identifier] = STATE(2764), + [sym__expression] = STATE(2255), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(136), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3150), + [sym_comment] = STATE(287), + [aux_sym_pipe_element_repeat2] = STATE(1389), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(288)] = { + [sym_comment] = STATE(288), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70311,13 +69495,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1290), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(298)] = { - [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(773), + [STATE(289)] = { + [sym_comment] = STATE(289), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -70367,6 +69551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(771), [anon_sym_xor2] = ACTIONS(771), @@ -70401,13 +69586,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1332), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(299)] = { - [sym_comment] = STATE(299), - [ts_builtin_sym_end] = ACTIONS(749), + [STATE(290)] = { + [sym_comment] = STATE(290), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70489,374 +69674,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1334), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1336), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(300)] = { - [sym_comment] = STATE(300), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(301)] = { - [sym_comment] = STATE(301), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), + [STATE(291)] = { + [sym_comment] = STATE(291), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token1] = ACTIONS(1338), + [aux_sym__immediate_decimal_token5] = ACTIONS(1340), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(302)] = { - [sym_comment] = STATE(302), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), + [STATE(292)] = { + [sym_cmd_identifier] = STATE(2828), + [sym__expression] = STATE(2261), + [sym_expr_unary] = STATE(1267), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1267), + [sym__expr_binary_expression] = STATE(2217), + [sym_expr_parenthesized] = STATE(929), + [sym_val_range] = STATE(1267), + [sym__value] = STATE(1267), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1265), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3278), + [sym_comment] = STATE(292), + [aux_sym_pipe_element_repeat2] = STATE(1389), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(39), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(39), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(39), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(303)] = { - [sym_comment] = STATE(303), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), + [STATE(293)] = { + [sym_cmd_identifier] = STATE(2764), + [sym__expression] = STATE(2255), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2218), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_env_var] = STATE(4679), + [sym_command] = STATE(3150), + [sym_comment] = STATE(293), + [aux_sym_pipe_element_repeat2] = STATE(1389), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(304)] = { - [sym_comment] = STATE(304), + [STATE(294)] = { + [sym_comment] = STATE(294), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70904,7 +70004,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), @@ -70941,12 +70040,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1336), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(305)] = { - [sym_comment] = STATE(305), + [STATE(295)] = { + [sym_comment] = STATE(295), + [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(296)] = { + [sym_comment] = STATE(296), + [ts_builtin_sym_end] = ACTIONS(773), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -70996,7 +70187,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(771), [anon_sym_xor2] = ACTIONS(771), @@ -71035,99 +70225,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(306)] = { - [sym_comment] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(970), - [anon_sym_SLASH_SLASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_bit_DASHshl] = ACTIONS(970), - [anon_sym_bit_DASHshr] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [anon_sym_BANG_TILDE] = ACTIONS(970), - [anon_sym_like] = ACTIONS(970), - [anon_sym_not_DASHlike] = ACTIONS(970), - [anon_sym_bit_DASHand] = ACTIONS(970), - [anon_sym_bit_DASHxor] = ACTIONS(970), - [anon_sym_bit_DASHor] = ACTIONS(970), - [anon_sym_and] = ACTIONS(970), - [anon_sym_xor] = ACTIONS(970), - [anon_sym_or] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_not_DASHin] = ACTIONS(970), - [anon_sym_has] = ACTIONS(970), - [anon_sym_not_DASHhas] = ACTIONS(970), - [anon_sym_starts_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(970), - [anon_sym_ends_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [sym_filesize_unit] = ACTIONS(1350), - [sym_duration_unit] = ACTIONS(1352), + [STATE(297)] = { + [sym_comment] = STATE(297), + [ts_builtin_sym_end] = ACTIONS(880), + [anon_sym_in] = ACTIONS(878), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_bit_DASHshl] = ACTIONS(880), + [anon_sym_bit_DASHshr] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [anon_sym_BANG_TILDE] = ACTIONS(880), + [anon_sym_like] = ACTIONS(880), + [anon_sym_not_DASHlike] = ACTIONS(880), + [anon_sym_bit_DASHand] = ACTIONS(880), + [anon_sym_bit_DASHxor] = ACTIONS(880), + [anon_sym_bit_DASHor] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_xor] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_in2] = ACTIONS(880), + [anon_sym_not_DASHin] = ACTIONS(880), + [anon_sym_has] = ACTIONS(880), + [anon_sym_not_DASHhas] = ACTIONS(880), + [anon_sym_starts_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(880), + [anon_sym_ends_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(880), + [aux_sym_cmd_identifier_token6] = ACTIONS(878), + [sym__newline] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_err_GT_PIPE] = ACTIONS(878), + [anon_sym_out_GT_PIPE] = ACTIONS(878), + [anon_sym_e_GT_PIPE] = ACTIONS(878), + [anon_sym_o_GT_PIPE] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(878), + [anon_sym_GT2] = ACTIONS(878), + [anon_sym_DASH2] = ACTIONS(878), + [anon_sym_STAR2] = ACTIONS(878), + [anon_sym_and2] = ACTIONS(878), + [anon_sym_xor2] = ACTIONS(878), + [anon_sym_or2] = ACTIONS(878), + [anon_sym_not_DASHin2] = ACTIONS(878), + [anon_sym_has2] = ACTIONS(878), + [anon_sym_not_DASHhas2] = ACTIONS(878), + [anon_sym_starts_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(878), + [anon_sym_ends_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(878), + [anon_sym_EQ_EQ2] = ACTIONS(878), + [anon_sym_BANG_EQ2] = ACTIONS(878), + [anon_sym_LT2] = ACTIONS(878), + [anon_sym_LT_EQ2] = ACTIONS(878), + [anon_sym_GT_EQ2] = ACTIONS(878), + [anon_sym_EQ_TILDE2] = ACTIONS(878), + [anon_sym_BANG_TILDE2] = ACTIONS(878), + [anon_sym_like2] = ACTIONS(878), + [anon_sym_not_DASHlike2] = ACTIONS(878), + [anon_sym_STAR_STAR2] = ACTIONS(878), + [anon_sym_PLUS_PLUS2] = ACTIONS(878), + [anon_sym_SLASH2] = ACTIONS(878), + [anon_sym_mod2] = ACTIONS(878), + [anon_sym_SLASH_SLASH2] = ACTIONS(878), + [anon_sym_PLUS2] = ACTIONS(878), + [anon_sym_bit_DASHshl2] = ACTIONS(878), + [anon_sym_bit_DASHshr2] = ACTIONS(878), + [anon_sym_bit_DASHand2] = ACTIONS(878), + [anon_sym_bit_DASHxor2] = ACTIONS(878), + [anon_sym_bit_DASHor2] = ACTIONS(878), + [anon_sym_DOT_DOT2] = ACTIONS(878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(880), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(307)] = { - [sym_comment] = STATE(307), - [anon_sym_in] = ACTIONS(868), + [STATE(298)] = { + [sym_comment] = STATE(298), + [anon_sym_in] = ACTIONS(860), [anon_sym_STAR_STAR] = ACTIONS(884), [anon_sym_PLUS_PLUS] = ACTIONS(884), [anon_sym_STAR] = ACTIONS(886), @@ -71163,60 +70353,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(886), [anon_sym_GT_EQ] = ACTIONS(884), [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1354), - [sym_duration_unit] = ACTIONS(1356), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(870), + [anon_sym_DOT_DOT_LT2] = ACTIONS(870), + [sym_filesize_unit] = ACTIONS(1342), + [sym_duration_unit] = ACTIONS(1344), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(308)] = { - [sym_comment] = STATE(308), + [STATE(299)] = { + [sym_comment] = STATE(299), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -71254,6 +70444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(741), [aux_sym_cmd_identifier_token6] = ACTIONS(739), [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), [anon_sym_PIPE] = ACTIONS(739), [anon_sym_err_GT_PIPE] = ACTIONS(739), [anon_sym_out_GT_PIPE] = ACTIONS(739), @@ -71263,6 +70454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), @@ -71297,16 +70489,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1358), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1360), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(309)] = { - [sym_comment] = STATE(309), + [STATE(300)] = { + [sym_comment] = STATE(300), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -71354,6 +70544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), @@ -71390,191 +70581,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1362), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(310)] = { - [sym_comment] = STATE(310), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1364), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(311)] = { - [sym_comment] = STATE(311), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1366), - [sym_duration_unit] = ACTIONS(1368), + [STATE(301)] = { + [sym_comment] = STATE(301), + [anon_sym_in] = ACTIONS(878), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_bit_DASHshl] = ACTIONS(880), + [anon_sym_bit_DASHshr] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [anon_sym_BANG_TILDE] = ACTIONS(880), + [anon_sym_like] = ACTIONS(880), + [anon_sym_not_DASHlike] = ACTIONS(880), + [anon_sym_bit_DASHand] = ACTIONS(880), + [anon_sym_bit_DASHxor] = ACTIONS(880), + [anon_sym_bit_DASHor] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_xor] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_in2] = ACTIONS(880), + [anon_sym_not_DASHin] = ACTIONS(880), + [anon_sym_has] = ACTIONS(880), + [anon_sym_not_DASHhas] = ACTIONS(880), + [anon_sym_starts_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(880), + [anon_sym_ends_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(880), + [aux_sym_cmd_identifier_token6] = ACTIONS(878), + [sym__newline] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_err_GT_PIPE] = ACTIONS(878), + [anon_sym_out_GT_PIPE] = ACTIONS(878), + [anon_sym_e_GT_PIPE] = ACTIONS(878), + [anon_sym_o_GT_PIPE] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(878), + [anon_sym_RPAREN] = ACTIONS(878), + [anon_sym_GT2] = ACTIONS(878), + [anon_sym_DASH2] = ACTIONS(878), + [anon_sym_STAR2] = ACTIONS(878), + [anon_sym_and2] = ACTIONS(878), + [anon_sym_xor2] = ACTIONS(878), + [anon_sym_or2] = ACTIONS(878), + [anon_sym_not_DASHin2] = ACTIONS(878), + [anon_sym_has2] = ACTIONS(878), + [anon_sym_not_DASHhas2] = ACTIONS(878), + [anon_sym_starts_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(878), + [anon_sym_ends_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(878), + [anon_sym_EQ_EQ2] = ACTIONS(878), + [anon_sym_BANG_EQ2] = ACTIONS(878), + [anon_sym_LT2] = ACTIONS(878), + [anon_sym_LT_EQ2] = ACTIONS(878), + [anon_sym_GT_EQ2] = ACTIONS(878), + [anon_sym_EQ_TILDE2] = ACTIONS(878), + [anon_sym_BANG_TILDE2] = ACTIONS(878), + [anon_sym_like2] = ACTIONS(878), + [anon_sym_not_DASHlike2] = ACTIONS(878), + [anon_sym_STAR_STAR2] = ACTIONS(878), + [anon_sym_PLUS_PLUS2] = ACTIONS(878), + [anon_sym_SLASH2] = ACTIONS(878), + [anon_sym_mod2] = ACTIONS(878), + [anon_sym_SLASH_SLASH2] = ACTIONS(878), + [anon_sym_PLUS2] = ACTIONS(878), + [anon_sym_bit_DASHshl2] = ACTIONS(878), + [anon_sym_bit_DASHshr2] = ACTIONS(878), + [anon_sym_bit_DASHand2] = ACTIONS(878), + [anon_sym_bit_DASHxor2] = ACTIONS(878), + [anon_sym_bit_DASHor2] = ACTIONS(878), + [anon_sym_DOT_DOT2] = ACTIONS(878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(880), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(312)] = { - [sym_comment] = STATE(312), + [STATE(302)] = { + [sym_comment] = STATE(302), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -71624,6 +70726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(771), [anon_sym_xor2] = ACTIONS(771), @@ -71662,97 +70765,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(313)] = { - [sym_comment] = STATE(313), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), + [STATE(303)] = { + [sym_comment] = STATE(303), + [anon_sym_in] = ACTIONS(878), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_bit_DASHshl] = ACTIONS(880), + [anon_sym_bit_DASHshr] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [anon_sym_BANG_TILDE] = ACTIONS(880), + [anon_sym_like] = ACTIONS(880), + [anon_sym_not_DASHlike] = ACTIONS(880), + [anon_sym_bit_DASHand] = ACTIONS(880), + [anon_sym_bit_DASHxor] = ACTIONS(880), + [anon_sym_bit_DASHor] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_xor] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_in2] = ACTIONS(880), + [anon_sym_not_DASHin] = ACTIONS(880), + [anon_sym_has] = ACTIONS(880), + [anon_sym_not_DASHhas] = ACTIONS(880), + [anon_sym_starts_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(880), + [anon_sym_ends_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(880), + [aux_sym_cmd_identifier_token6] = ACTIONS(878), + [sym__newline] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_err_GT_PIPE] = ACTIONS(878), + [anon_sym_out_GT_PIPE] = ACTIONS(878), + [anon_sym_e_GT_PIPE] = ACTIONS(878), + [anon_sym_o_GT_PIPE] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(878), + [anon_sym_GT2] = ACTIONS(878), + [anon_sym_DASH2] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_STAR2] = ACTIONS(878), + [anon_sym_and2] = ACTIONS(878), + [anon_sym_xor2] = ACTIONS(878), + [anon_sym_or2] = ACTIONS(878), + [anon_sym_not_DASHin2] = ACTIONS(878), + [anon_sym_has2] = ACTIONS(878), + [anon_sym_not_DASHhas2] = ACTIONS(878), + [anon_sym_starts_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(878), + [anon_sym_ends_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(878), + [anon_sym_EQ_EQ2] = ACTIONS(878), + [anon_sym_BANG_EQ2] = ACTIONS(878), + [anon_sym_LT2] = ACTIONS(878), + [anon_sym_LT_EQ2] = ACTIONS(878), + [anon_sym_GT_EQ2] = ACTIONS(878), + [anon_sym_EQ_TILDE2] = ACTIONS(878), + [anon_sym_BANG_TILDE2] = ACTIONS(878), + [anon_sym_like2] = ACTIONS(878), + [anon_sym_not_DASHlike2] = ACTIONS(878), + [anon_sym_STAR_STAR2] = ACTIONS(878), + [anon_sym_PLUS_PLUS2] = ACTIONS(878), + [anon_sym_SLASH2] = ACTIONS(878), + [anon_sym_mod2] = ACTIONS(878), + [anon_sym_SLASH_SLASH2] = ACTIONS(878), + [anon_sym_PLUS2] = ACTIONS(878), + [anon_sym_bit_DASHshl2] = ACTIONS(878), + [anon_sym_bit_DASHshr2] = ACTIONS(878), + [anon_sym_bit_DASHand2] = ACTIONS(878), + [anon_sym_bit_DASHxor2] = ACTIONS(878), + [anon_sym_bit_DASHor2] = ACTIONS(878), + [anon_sym_DOT_DOT2] = ACTIONS(878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(880), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(314)] = { - [sym_comment] = STATE(314), + [STATE(304)] = { + [sym_comment] = STATE(304), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -71790,7 +70894,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(749), [aux_sym_cmd_identifier_token6] = ACTIONS(747), [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), [anon_sym_PIPE] = ACTIONS(747), [anon_sym_err_GT_PIPE] = ACTIONS(747), [anon_sym_out_GT_PIPE] = ACTIONS(747), @@ -71834,14 +70937,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(747), [anon_sym_bit_DASHor2] = ACTIONS(747), [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1346), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1348), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(315)] = { - [sym_comment] = STATE(315), + [STATE(305)] = { + [sym_comment] = STATE(305), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -71924,13 +71029,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1360), + [aux_sym__immediate_decimal_token1] = ACTIONS(1350), + [aux_sym__immediate_decimal_token5] = ACTIONS(1352), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(316)] = { - [sym_comment] = STATE(316), + [STATE(306)] = { + [sym_comment] = STATE(306), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(884), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(886), + [anon_sym_SLASH] = ACTIONS(886), + [anon_sym_mod] = ACTIONS(884), + [anon_sym_SLASH_SLASH] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_bit_DASHshl] = ACTIONS(884), + [anon_sym_bit_DASHshr] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [anon_sym_BANG_TILDE] = ACTIONS(884), + [anon_sym_like] = ACTIONS(884), + [anon_sym_not_DASHlike] = ACTIONS(884), + [anon_sym_bit_DASHand] = ACTIONS(884), + [anon_sym_bit_DASHxor] = ACTIONS(884), + [anon_sym_bit_DASHor] = ACTIONS(884), + [anon_sym_and] = ACTIONS(884), + [anon_sym_xor] = ACTIONS(884), + [anon_sym_or] = ACTIONS(884), + [anon_sym_in2] = ACTIONS(884), + [anon_sym_not_DASHin] = ACTIONS(884), + [anon_sym_has] = ACTIONS(884), + [anon_sym_not_DASHhas] = ACTIONS(884), + [anon_sym_starts_DASHwith] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), + [anon_sym_ends_DASHwith] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_BANG_EQ] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(886), + [anon_sym_LT_EQ] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(886), + [anon_sym_GT_EQ] = ACTIONS(884), + [aux_sym_cmd_identifier_token6] = ACTIONS(888), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_RPAREN] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(870), + [anon_sym_DOT_DOT_LT2] = ACTIONS(870), + [sym_filesize_unit] = ACTIONS(1354), + [sym_duration_unit] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(307)] = { + [sym_comment] = STATE(307), + [ts_builtin_sym_end] = ACTIONS(960), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(962), + [anon_sym_PLUS_PLUS] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_SLASH] = ACTIONS(964), + [anon_sym_mod] = ACTIONS(962), + [anon_sym_SLASH_SLASH] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_bit_DASHshl] = ACTIONS(962), + [anon_sym_bit_DASHshr] = ACTIONS(962), + [anon_sym_EQ_TILDE] = ACTIONS(962), + [anon_sym_BANG_TILDE] = ACTIONS(962), + [anon_sym_like] = ACTIONS(962), + [anon_sym_not_DASHlike] = ACTIONS(962), + [anon_sym_bit_DASHand] = ACTIONS(962), + [anon_sym_bit_DASHxor] = ACTIONS(962), + [anon_sym_bit_DASHor] = ACTIONS(962), + [anon_sym_and] = ACTIONS(962), + [anon_sym_xor] = ACTIONS(962), + [anon_sym_or] = ACTIONS(962), + [anon_sym_in2] = ACTIONS(962), + [anon_sym_not_DASHin] = ACTIONS(962), + [anon_sym_has] = ACTIONS(962), + [anon_sym_not_DASHhas] = ACTIONS(962), + [anon_sym_starts_DASHwith] = ACTIONS(962), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(962), + [anon_sym_ends_DASHwith] = ACTIONS(962), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(962), + [anon_sym_EQ_EQ] = ACTIONS(962), + [anon_sym_BANG_EQ] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_LT_EQ] = ACTIONS(962), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(962), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(970), + [sym_filesize_unit] = ACTIONS(1358), + [sym_duration_unit] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(308)] = { + [sym_comment] = STATE(308), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -71968,6 +71254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(773), [aux_sym_cmd_identifier_token6] = ACTIONS(771), [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), [anon_sym_PIPE] = ACTIONS(771), [anon_sym_err_GT_PIPE] = ACTIONS(771), [anon_sym_out_GT_PIPE] = ACTIONS(771), @@ -72013,120 +71300,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1362), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(317)] = { - [sym_comment] = STATE(317), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), + [STATE(309)] = { + [sym_comment] = STATE(309), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(318)] = { - [sym_comment] = STATE(318), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), + [STATE(310)] = { + [sym_comment] = STATE(310), + [anon_sym_in] = ACTIONS(860), + [anon_sym_STAR_STAR] = ACTIONS(884), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(886), + [anon_sym_SLASH] = ACTIONS(886), + [anon_sym_mod] = ACTIONS(884), + [anon_sym_SLASH_SLASH] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_bit_DASHshl] = ACTIONS(884), + [anon_sym_bit_DASHshr] = ACTIONS(884), + [anon_sym_EQ_TILDE] = ACTIONS(884), + [anon_sym_BANG_TILDE] = ACTIONS(884), + [anon_sym_like] = ACTIONS(884), + [anon_sym_not_DASHlike] = ACTIONS(884), + [anon_sym_bit_DASHand] = ACTIONS(884), + [anon_sym_bit_DASHxor] = ACTIONS(884), + [anon_sym_bit_DASHor] = ACTIONS(884), + [anon_sym_and] = ACTIONS(884), + [anon_sym_xor] = ACTIONS(884), + [anon_sym_or] = ACTIONS(884), + [anon_sym_in2] = ACTIONS(884), + [anon_sym_not_DASHin] = ACTIONS(884), + [anon_sym_has] = ACTIONS(884), + [anon_sym_not_DASHhas] = ACTIONS(884), + [anon_sym_starts_DASHwith] = ACTIONS(884), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), + [anon_sym_ends_DASHwith] = ACTIONS(884), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), + [anon_sym_EQ_EQ] = ACTIONS(884), + [anon_sym_BANG_EQ] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(886), + [anon_sym_LT_EQ] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(886), + [anon_sym_GT_EQ] = ACTIONS(884), + [aux_sym_cmd_identifier_token6] = ACTIONS(888), + [sym__newline] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(870), + [anon_sym_DOT_DOT_LT2] = ACTIONS(870), + [sym_filesize_unit] = ACTIONS(1364), + [sym_duration_unit] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(311)] = { + [sym_comment] = STATE(311), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), [anon_sym_or] = ACTIONS(749), [anon_sym_in2] = ACTIONS(749), [anon_sym_not_DASHin] = ACTIONS(749), @@ -72189,13 +71568,637 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1348), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(312)] = { + [sym_comment] = STATE(312), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1368), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(313)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym__match_pattern_expression] = STATE(4141), + [sym__match_pattern_value] = STATE(4519), + [sym__match_pattern_list_body] = STATE(4778), + [sym__match_pattern_list_body_or_empty] = STATE(4378), + [sym__match_pattern_list] = STATE(4520), + [sym__match_pattern_rest] = STATE(4827), + [sym__match_pattern_record] = STATE(4521), + [sym_expr_parenthesized] = STATE(3858), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4576), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4577), + [sym_val_bool] = STATE(4024), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3859), + [sym_val_cellpath] = STATE(4536), + [sym_val_number] = STATE(4577), + [sym__val_number_decimal] = STATE(3391), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4577), + [sym_val_filesize] = STATE(4577), + [sym_val_binary] = STATE(4577), + [sym_val_string] = STATE(4577), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_interpolated] = STATE(4536), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4583), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(5052), + [sym_val_entry] = STATE(4552), + [sym_val_record] = STATE(4536), + [sym__table_head] = STATE(3717), + [sym_val_table] = STATE(4577), + [sym_val_closure] = STATE(4536), + [sym__unquoted_in_list] = STATE(3860), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(313), + [aux_sym__types_body_repeat1] = STATE(380), + [aux_sym_parameter_repeat2] = STATE(4027), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1370), + [anon_sym_false] = ACTIONS(1370), + [anon_sym_null] = ACTIONS(1372), + [aux_sym_cmd_identifier_token3] = ACTIONS(1374), + [aux_sym_cmd_identifier_token4] = ACTIONS(1374), + [aux_sym_cmd_identifier_token5] = ACTIONS(1374), + [sym__newline] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DOT_DOT] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1392), + [anon_sym_DOT_DOT_LT] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_decimal_token2] = ACTIONS(1396), + [aux_sym__val_number_decimal_token3] = ACTIONS(1398), + [aux_sym__val_number_decimal_token4] = ACTIONS(1398), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, + [STATE(314)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym__match_pattern_expression] = STATE(4141), + [sym__match_pattern_value] = STATE(4519), + [sym__match_pattern_list_body] = STATE(4778), + [sym__match_pattern_list_body_or_empty] = STATE(4378), + [sym__match_pattern_list] = STATE(4520), + [sym__match_pattern_rest] = STATE(4827), + [sym__match_pattern_record] = STATE(4521), + [sym_expr_parenthesized] = STATE(3858), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4576), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4577), + [sym_val_bool] = STATE(4024), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3859), + [sym_val_cellpath] = STATE(4536), + [sym_val_number] = STATE(4577), + [sym__val_number_decimal] = STATE(3391), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4577), + [sym_val_filesize] = STATE(4577), + [sym_val_binary] = STATE(4577), + [sym_val_string] = STATE(4577), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_interpolated] = STATE(4536), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4583), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(4928), + [sym_val_entry] = STATE(4552), + [sym_val_record] = STATE(4536), + [sym__table_head] = STATE(3717), + [sym_val_table] = STATE(4577), + [sym_val_closure] = STATE(4536), + [sym__unquoted_in_list] = STATE(3860), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(314), + [aux_sym__types_body_repeat1] = STATE(380), + [aux_sym_parameter_repeat2] = STATE(4027), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1370), + [anon_sym_false] = ACTIONS(1370), + [anon_sym_null] = ACTIONS(1372), + [aux_sym_cmd_identifier_token3] = ACTIONS(1374), + [aux_sym_cmd_identifier_token4] = ACTIONS(1374), + [aux_sym_cmd_identifier_token5] = ACTIONS(1374), + [sym__newline] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DOT_DOT] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1392), + [anon_sym_DOT_DOT_LT] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_decimal_token2] = ACTIONS(1396), + [aux_sym__val_number_decimal_token3] = ACTIONS(1398), + [aux_sym__val_number_decimal_token4] = ACTIONS(1398), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, + [STATE(315)] = { + [sym_comment] = STATE(315), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(316)] = { + [sym_comment] = STATE(316), + [anon_sym_in] = ACTIONS(878), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_bit_DASHshl] = ACTIONS(880), + [anon_sym_bit_DASHshr] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [anon_sym_BANG_TILDE] = ACTIONS(880), + [anon_sym_like] = ACTIONS(880), + [anon_sym_not_DASHlike] = ACTIONS(880), + [anon_sym_bit_DASHand] = ACTIONS(880), + [anon_sym_bit_DASHxor] = ACTIONS(880), + [anon_sym_bit_DASHor] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_xor] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_in2] = ACTIONS(880), + [anon_sym_not_DASHin] = ACTIONS(880), + [anon_sym_has] = ACTIONS(880), + [anon_sym_not_DASHhas] = ACTIONS(880), + [anon_sym_starts_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(880), + [anon_sym_ends_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(880), + [aux_sym_cmd_identifier_token6] = ACTIONS(878), + [sym__newline] = ACTIONS(878), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_err_GT_PIPE] = ACTIONS(878), + [anon_sym_out_GT_PIPE] = ACTIONS(878), + [anon_sym_e_GT_PIPE] = ACTIONS(878), + [anon_sym_o_GT_PIPE] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(878), + [anon_sym_GT2] = ACTIONS(878), + [anon_sym_DASH2] = ACTIONS(878), + [anon_sym_STAR2] = ACTIONS(878), + [anon_sym_and2] = ACTIONS(878), + [anon_sym_xor2] = ACTIONS(878), + [anon_sym_or2] = ACTIONS(878), + [anon_sym_not_DASHin2] = ACTIONS(878), + [anon_sym_has2] = ACTIONS(878), + [anon_sym_not_DASHhas2] = ACTIONS(878), + [anon_sym_starts_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(878), + [anon_sym_ends_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(878), + [anon_sym_EQ_EQ2] = ACTIONS(878), + [anon_sym_BANG_EQ2] = ACTIONS(878), + [anon_sym_LT2] = ACTIONS(878), + [anon_sym_LT_EQ2] = ACTIONS(878), + [anon_sym_GT_EQ2] = ACTIONS(878), + [anon_sym_EQ_TILDE2] = ACTIONS(878), + [anon_sym_BANG_TILDE2] = ACTIONS(878), + [anon_sym_like2] = ACTIONS(878), + [anon_sym_not_DASHlike2] = ACTIONS(878), + [anon_sym_STAR_STAR2] = ACTIONS(878), + [anon_sym_PLUS_PLUS2] = ACTIONS(878), + [anon_sym_SLASH2] = ACTIONS(878), + [anon_sym_mod2] = ACTIONS(878), + [anon_sym_SLASH_SLASH2] = ACTIONS(878), + [anon_sym_PLUS2] = ACTIONS(878), + [anon_sym_bit_DASHshl2] = ACTIONS(878), + [anon_sym_bit_DASHshr2] = ACTIONS(878), + [anon_sym_bit_DASHand2] = ACTIONS(878), + [anon_sym_bit_DASHxor2] = ACTIONS(878), + [anon_sym_bit_DASHor2] = ACTIONS(878), + [anon_sym_DOT_DOT2] = ACTIONS(878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(880), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(317)] = { + [sym_comment] = STATE(317), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(318)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym__match_pattern_expression] = STATE(4141), + [sym__match_pattern_value] = STATE(4519), + [sym__match_pattern_list_body] = STATE(4778), + [sym__match_pattern_list_body_or_empty] = STATE(4378), + [sym__match_pattern_list] = STATE(4520), + [sym__match_pattern_rest] = STATE(4827), + [sym__match_pattern_record] = STATE(4521), + [sym_expr_parenthesized] = STATE(3858), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4576), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4577), + [sym_val_bool] = STATE(4024), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3859), + [sym_val_cellpath] = STATE(4536), + [sym_val_number] = STATE(4577), + [sym__val_number_decimal] = STATE(3391), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4577), + [sym_val_filesize] = STATE(4577), + [sym_val_binary] = STATE(4577), + [sym_val_string] = STATE(4577), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_interpolated] = STATE(4536), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4583), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(5093), + [sym_val_entry] = STATE(4552), + [sym_val_record] = STATE(4536), + [sym__table_head] = STATE(3717), + [sym_val_table] = STATE(4577), + [sym_val_closure] = STATE(4536), + [sym__unquoted_in_list] = STATE(3860), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(318), + [aux_sym__types_body_repeat1] = STATE(380), + [aux_sym_parameter_repeat2] = STATE(4027), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1370), + [anon_sym_false] = ACTIONS(1370), + [anon_sym_null] = ACTIONS(1372), + [aux_sym_cmd_identifier_token3] = ACTIONS(1374), + [aux_sym_cmd_identifier_token4] = ACTIONS(1374), + [aux_sym_cmd_identifier_token5] = ACTIONS(1374), + [sym__newline] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DOT_DOT] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1392), + [anon_sym_DOT_DOT_LT] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_decimal_token2] = ACTIONS(1396), + [aux_sym__val_number_decimal_token3] = ACTIONS(1398), + [aux_sym__val_number_decimal_token4] = ACTIONS(1398), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, [STATE(319)] = { [sym_comment] = STATE(319), - [anon_sym_in] = ACTIONS(868), + [anon_sym_in] = ACTIONS(860), [anon_sym_STAR_STAR] = ACTIONS(884), [anon_sym_PLUS_PLUS] = ACTIONS(884), [anon_sym_STAR] = ACTIONS(886), @@ -72231,1574 +72234,1254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(886), [anon_sym_GT_EQ] = ACTIONS(884), [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1372), + [sym__newline] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_err_GT_PIPE] = ACTIONS(860), + [anon_sym_out_GT_PIPE] = ACTIONS(860), + [anon_sym_e_GT_PIPE] = ACTIONS(860), + [anon_sym_o_GT_PIPE] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(860), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(860), + [anon_sym_BANG_EQ2] = ACTIONS(860), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(860), + [anon_sym_GT_EQ2] = ACTIONS(860), + [anon_sym_EQ_TILDE2] = ACTIONS(860), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_DOT_DOT2] = ACTIONS(868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(870), + [anon_sym_DOT_DOT_LT2] = ACTIONS(870), + [sym_filesize_unit] = ACTIONS(1428), + [sym_duration_unit] = ACTIONS(1430), [anon_sym_POUND] = ACTIONS(103), }, [STATE(320)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4980), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(320), - [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4025), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_RBRACK] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(321)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5080), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(321), - [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4025), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_RBRACK] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(322)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5047), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(322), - [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4025), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_RBRACK] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_in] = ACTIONS(878), + [anon_sym_STAR_STAR] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_SLASH] = ACTIONS(878), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_bit_DASHshl] = ACTIONS(880), + [anon_sym_bit_DASHshr] = ACTIONS(880), + [anon_sym_EQ_TILDE] = ACTIONS(880), + [anon_sym_BANG_TILDE] = ACTIONS(880), + [anon_sym_like] = ACTIONS(880), + [anon_sym_not_DASHlike] = ACTIONS(880), + [anon_sym_bit_DASHand] = ACTIONS(880), + [anon_sym_bit_DASHxor] = ACTIONS(880), + [anon_sym_bit_DASHor] = ACTIONS(880), + [anon_sym_and] = ACTIONS(880), + [anon_sym_xor] = ACTIONS(880), + [anon_sym_or] = ACTIONS(880), + [anon_sym_in2] = ACTIONS(880), + [anon_sym_not_DASHin] = ACTIONS(880), + [anon_sym_has] = ACTIONS(880), + [anon_sym_not_DASHhas] = ACTIONS(880), + [anon_sym_starts_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(880), + [anon_sym_ends_DASHwith] = ACTIONS(880), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(880), + [anon_sym_EQ_EQ] = ACTIONS(880), + [anon_sym_BANG_EQ] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(880), + [aux_sym_cmd_identifier_token6] = ACTIONS(878), + [sym__newline] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_err_GT_PIPE] = ACTIONS(878), + [anon_sym_out_GT_PIPE] = ACTIONS(878), + [anon_sym_e_GT_PIPE] = ACTIONS(878), + [anon_sym_o_GT_PIPE] = ACTIONS(878), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(878), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(878), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(878), + [anon_sym_GT2] = ACTIONS(878), + [anon_sym_DASH2] = ACTIONS(878), + [anon_sym_STAR2] = ACTIONS(878), + [anon_sym_and2] = ACTIONS(878), + [anon_sym_xor2] = ACTIONS(878), + [anon_sym_or2] = ACTIONS(878), + [anon_sym_not_DASHin2] = ACTIONS(878), + [anon_sym_has2] = ACTIONS(878), + [anon_sym_not_DASHhas2] = ACTIONS(878), + [anon_sym_starts_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(878), + [anon_sym_ends_DASHwith2] = ACTIONS(878), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(878), + [anon_sym_EQ_EQ2] = ACTIONS(878), + [anon_sym_BANG_EQ2] = ACTIONS(878), + [anon_sym_LT2] = ACTIONS(878), + [anon_sym_LT_EQ2] = ACTIONS(878), + [anon_sym_GT_EQ2] = ACTIONS(878), + [anon_sym_EQ_TILDE2] = ACTIONS(878), + [anon_sym_BANG_TILDE2] = ACTIONS(878), + [anon_sym_like2] = ACTIONS(878), + [anon_sym_not_DASHlike2] = ACTIONS(878), + [anon_sym_STAR_STAR2] = ACTIONS(878), + [anon_sym_PLUS_PLUS2] = ACTIONS(878), + [anon_sym_SLASH2] = ACTIONS(878), + [anon_sym_mod2] = ACTIONS(878), + [anon_sym_SLASH_SLASH2] = ACTIONS(878), + [anon_sym_PLUS2] = ACTIONS(878), + [anon_sym_bit_DASHshl2] = ACTIONS(878), + [anon_sym_bit_DASHshr2] = ACTIONS(878), + [anon_sym_bit_DASHand2] = ACTIONS(878), + [anon_sym_bit_DASHxor2] = ACTIONS(878), + [anon_sym_bit_DASHor2] = ACTIONS(878), + [anon_sym_DOT_DOT2] = ACTIONS(878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(880), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(323)] = { [sym_comment] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_like] = ACTIONS(1004), + [anon_sym_not_DASHlike] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_has] = ACTIONS(1004), + [anon_sym_not_DASHhas] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_RPAREN] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(324)] = { [sym_comment] = STATE(324), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_like] = ACTIONS(1004), + [anon_sym_not_DASHlike] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_has] = ACTIONS(1004), + [anon_sym_not_DASHhas] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(325)] = { [sym_comment] = STATE(325), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_bit_DASHshl] = ACTIONS(1012), + [anon_sym_bit_DASHshr] = ACTIONS(1012), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_like] = ACTIONS(1012), + [anon_sym_not_DASHlike] = ACTIONS(1012), + [anon_sym_bit_DASHand] = ACTIONS(1012), + [anon_sym_bit_DASHxor] = ACTIONS(1012), + [anon_sym_bit_DASHor] = ACTIONS(1012), + [anon_sym_and] = ACTIONS(1012), + [anon_sym_xor] = ACTIONS(1012), + [anon_sym_or] = ACTIONS(1012), + [anon_sym_in2] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1012), + [anon_sym_has] = ACTIONS(1012), + [anon_sym_not_DASHhas] = ACTIONS(1012), + [anon_sym_starts_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1012), + [anon_sym_ends_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_GT_EQ] = ACTIONS(1012), + [aux_sym_cmd_identifier_token6] = ACTIONS(1016), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(326)] = { [sym_comment] = STATE(326), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_like] = ACTIONS(1004), + [anon_sym_not_DASHlike] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_has] = ACTIONS(1004), + [anon_sym_not_DASHhas] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(327)] = { [sym_comment] = STATE(327), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_like] = ACTIONS(1004), + [anon_sym_not_DASHlike] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_has] = ACTIONS(1004), + [anon_sym_not_DASHhas] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(328)] = { [sym_comment] = STATE(328), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_bit_DASHshl] = ACTIONS(1012), + [anon_sym_bit_DASHshr] = ACTIONS(1012), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_like] = ACTIONS(1012), + [anon_sym_not_DASHlike] = ACTIONS(1012), + [anon_sym_bit_DASHand] = ACTIONS(1012), + [anon_sym_bit_DASHxor] = ACTIONS(1012), + [anon_sym_bit_DASHor] = ACTIONS(1012), + [anon_sym_and] = ACTIONS(1012), + [anon_sym_xor] = ACTIONS(1012), + [anon_sym_or] = ACTIONS(1012), + [anon_sym_in2] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1012), + [anon_sym_has] = ACTIONS(1012), + [anon_sym_not_DASHhas] = ACTIONS(1012), + [anon_sym_starts_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1012), + [anon_sym_ends_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_GT_EQ] = ACTIONS(1012), + [aux_sym_cmd_identifier_token6] = ACTIONS(1016), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(329)] = { [sym_comment] = STATE(329), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_like] = ACTIONS(1004), + [anon_sym_not_DASHlike] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_has] = ACTIONS(1004), + [anon_sym_not_DASHhas] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [sym__newline] = ACTIONS(1002), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(103), }, [STATE(330)] = { [sym_comment] = STATE(330), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_like] = ACTIONS(1004), + [anon_sym_not_DASHlike] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_has] = ACTIONS(1004), + [anon_sym_not_DASHhas] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(331)] = { [sym_comment] = STATE(331), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_like] = ACTIONS(1004), + [anon_sym_not_DASHlike] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_has] = ACTIONS(1004), + [anon_sym_not_DASHhas] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [sym__newline] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(332)] = { [sym_comment] = STATE(332), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(333)] = { - [sym_cell_path] = STATE(368), - [sym_path] = STATE(339), - [sym_comment] = STATE(333), - [aux_sym__where_predicate_lhs_repeat1] = STATE(363), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_PLUS_EQ] = ACTIONS(1432), - [anon_sym_DASH_EQ] = ACTIONS(1432), - [anon_sym_STAR_EQ] = ACTIONS(1432), - [anon_sym_SLASH_EQ] = ACTIONS(1432), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1432), - [anon_sym_in] = ACTIONS(1432), - [sym__newline] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_err_GT_PIPE] = ACTIONS(1432), - [anon_sym_out_GT_PIPE] = ACTIONS(1432), - [anon_sym_e_GT_PIPE] = ACTIONS(1432), - [anon_sym_o_GT_PIPE] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1432), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1432), - [anon_sym_xor2] = ACTIONS(1432), - [anon_sym_or2] = ACTIONS(1432), - [anon_sym_not_DASHin2] = ACTIONS(1432), - [anon_sym_has2] = ACTIONS(1432), - [anon_sym_not_DASHhas2] = ACTIONS(1432), - [anon_sym_starts_DASHwith2] = ACTIONS(1432), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1432), - [anon_sym_ends_DASHwith2] = ACTIONS(1432), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1432), - [anon_sym_EQ_EQ2] = ACTIONS(1432), - [anon_sym_BANG_EQ2] = ACTIONS(1432), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1432), - [anon_sym_GT_EQ2] = ACTIONS(1432), - [anon_sym_EQ_TILDE2] = ACTIONS(1432), - [anon_sym_BANG_TILDE2] = ACTIONS(1432), - [anon_sym_like2] = ACTIONS(1432), - [anon_sym_not_DASHlike2] = ACTIONS(1432), - [anon_sym_STAR_STAR2] = ACTIONS(1432), - [anon_sym_PLUS_PLUS2] = ACTIONS(1432), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1432), - [anon_sym_SLASH_SLASH2] = ACTIONS(1432), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1432), - [anon_sym_bit_DASHshr2] = ACTIONS(1432), - [anon_sym_bit_DASHand2] = ACTIONS(1432), - [anon_sym_bit_DASHxor2] = ACTIONS(1432), - [anon_sym_bit_DASHor2] = ACTIONS(1432), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [sym__entry_separator] = ACTIONS(1434), - [anon_sym_COLON2] = ACTIONS(1432), - [anon_sym_DOT2] = ACTIONS(1436), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1432), - [anon_sym_out_GT_GT] = ACTIONS(1432), - [anon_sym_e_GT_GT] = ACTIONS(1432), - [anon_sym_o_GT_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(334)] = { - [sym_comment] = STATE(334), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1438), - [anon_sym_DASH_EQ] = ACTIONS(1438), - [anon_sym_STAR_EQ] = ACTIONS(1438), - [anon_sym_SLASH_EQ] = ACTIONS(1438), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1438), - [anon_sym_in] = ACTIONS(1438), - [sym__newline] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_err_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_GT_PIPE] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(1438), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1438), - [anon_sym_xor2] = ACTIONS(1438), - [anon_sym_or2] = ACTIONS(1438), - [anon_sym_not_DASHin2] = ACTIONS(1438), - [anon_sym_has2] = ACTIONS(1438), - [anon_sym_not_DASHhas2] = ACTIONS(1438), - [anon_sym_starts_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1438), - [anon_sym_ends_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1438), - [anon_sym_EQ_EQ2] = ACTIONS(1438), - [anon_sym_BANG_EQ2] = ACTIONS(1438), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1438), - [anon_sym_GT_EQ2] = ACTIONS(1438), - [anon_sym_EQ_TILDE2] = ACTIONS(1438), - [anon_sym_BANG_TILDE2] = ACTIONS(1438), - [anon_sym_like2] = ACTIONS(1438), - [anon_sym_not_DASHlike2] = ACTIONS(1438), - [anon_sym_STAR_STAR2] = ACTIONS(1438), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1438), - [anon_sym_SLASH_SLASH2] = ACTIONS(1438), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1438), - [anon_sym_bit_DASHshr2] = ACTIONS(1438), - [anon_sym_bit_DASHand2] = ACTIONS(1438), - [anon_sym_bit_DASHxor2] = ACTIONS(1438), - [anon_sym_bit_DASHor2] = ACTIONS(1438), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [sym__entry_separator] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1438), - [anon_sym_QMARK2] = ACTIONS(1442), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1438), - [anon_sym_out_GT_GT] = ACTIONS(1438), - [anon_sym_e_GT_GT] = ACTIONS(1438), - [anon_sym_o_GT_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(335)] = { - [sym_cell_path] = STATE(405), - [sym_path] = STATE(385), - [sym_comment] = STATE(335), - [aux_sym__where_predicate_lhs_repeat1] = STATE(338), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_PLUS_EQ] = ACTIONS(1434), - [anon_sym_DASH_EQ] = ACTIONS(1434), - [anon_sym_STAR_EQ] = ACTIONS(1434), - [anon_sym_SLASH_EQ] = ACTIONS(1434), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1432), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_COLON2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1444), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(336)] = { - [sym__path_suffix] = STATE(351), - [sym_comment] = STATE(336), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1446), - [anon_sym_DASH_EQ] = ACTIONS(1446), - [anon_sym_STAR_EQ] = ACTIONS(1446), - [anon_sym_SLASH_EQ] = ACTIONS(1446), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1446), - [anon_sym_in] = ACTIONS(1446), - [sym__newline] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1446), - [anon_sym_err_GT_PIPE] = ACTIONS(1446), - [anon_sym_out_GT_PIPE] = ACTIONS(1446), - [anon_sym_e_GT_PIPE] = ACTIONS(1446), - [anon_sym_o_GT_PIPE] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1446), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1446), - [anon_sym_xor2] = ACTIONS(1446), - [anon_sym_or2] = ACTIONS(1446), - [anon_sym_not_DASHin2] = ACTIONS(1446), - [anon_sym_has2] = ACTIONS(1446), - [anon_sym_not_DASHhas2] = ACTIONS(1446), - [anon_sym_starts_DASHwith2] = ACTIONS(1446), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1446), - [anon_sym_ends_DASHwith2] = ACTIONS(1446), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1446), - [anon_sym_EQ_EQ2] = ACTIONS(1446), - [anon_sym_BANG_EQ2] = ACTIONS(1446), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1446), - [anon_sym_GT_EQ2] = ACTIONS(1446), - [anon_sym_EQ_TILDE2] = ACTIONS(1446), - [anon_sym_BANG_TILDE2] = ACTIONS(1446), - [anon_sym_like2] = ACTIONS(1446), - [anon_sym_not_DASHlike2] = ACTIONS(1446), - [anon_sym_STAR_STAR2] = ACTIONS(1446), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1446), - [anon_sym_SLASH_SLASH2] = ACTIONS(1446), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1446), - [anon_sym_bit_DASHshr2] = ACTIONS(1446), - [anon_sym_bit_DASHand2] = ACTIONS(1446), - [anon_sym_bit_DASHxor2] = ACTIONS(1446), - [anon_sym_bit_DASHor2] = ACTIONS(1446), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [sym__entry_separator] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1446), - [anon_sym_QMARK2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1446), - [anon_sym_out_GT_GT] = ACTIONS(1446), - [anon_sym_e_GT_GT] = ACTIONS(1446), - [anon_sym_o_GT_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(337)] = { - [sym__path_suffix] = STATE(388), - [sym_comment] = STATE(337), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(338)] = { - [sym_path] = STATE(385), - [sym_comment] = STATE(338), - [aux_sym__where_predicate_lhs_repeat1] = STATE(353), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_PLUS_EQ] = ACTIONS(1460), - [anon_sym_DASH_EQ] = ACTIONS(1460), - [anon_sym_STAR_EQ] = ACTIONS(1460), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_bit_DASHshl] = ACTIONS(1004), + [anon_sym_bit_DASHshr] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_BANG_TILDE] = ACTIONS(1004), + [anon_sym_like] = ACTIONS(1004), + [anon_sym_not_DASHlike] = ACTIONS(1004), + [anon_sym_bit_DASHand] = ACTIONS(1004), + [anon_sym_bit_DASHxor] = ACTIONS(1004), + [anon_sym_bit_DASHor] = ACTIONS(1004), + [anon_sym_and] = ACTIONS(1004), + [anon_sym_xor] = ACTIONS(1004), + [anon_sym_or] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_not_DASHin] = ACTIONS(1004), + [anon_sym_has] = ACTIONS(1004), + [anon_sym_not_DASHhas] = ACTIONS(1004), + [anon_sym_starts_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), + [anon_sym_ends_DASHwith] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [sym__newline] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_err_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_GT_PIPE] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1002), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1002), + [anon_sym_xor2] = ACTIONS(1002), + [anon_sym_or2] = ACTIONS(1002), + [anon_sym_not_DASHin2] = ACTIONS(1002), + [anon_sym_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1002), + [anon_sym_GT_EQ2] = ACTIONS(1002), + [anon_sym_EQ_TILDE2] = ACTIONS(1002), + [anon_sym_BANG_TILDE2] = ACTIONS(1002), + [anon_sym_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1002), + [anon_sym_bit_DASHshr2] = ACTIONS(1002), + [anon_sym_bit_DASHand2] = ACTIONS(1002), + [anon_sym_bit_DASHxor2] = ACTIONS(1002), + [anon_sym_bit_DASHor2] = ACTIONS(1002), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(333)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4536), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), + [sym_val_cellpath] = STATE(4536), + [sym_val_number] = STATE(4536), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4536), + [sym_val_filesize] = STATE(4536), + [sym_val_binary] = STATE(4536), + [sym_val_string] = STATE(4536), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_interpolated] = STATE(4536), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4583), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(5058), + [sym_val_entry] = STATE(4552), + [sym_val_record] = STATE(4536), + [sym__table_head] = STATE(3671), + [sym_val_table] = STATE(4536), + [sym_val_closure] = STATE(4536), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(333), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, + [STATE(334)] = { + [sym_cell_path] = STATE(374), + [sym_path] = STATE(363), + [sym_comment] = STATE(334), + [aux_sym__where_predicate_lhs_repeat1] = STATE(365), + [anon_sym_EQ] = ACTIONS(1460), + [anon_sym_PLUS_EQ] = ACTIONS(1460), + [anon_sym_DASH_EQ] = ACTIONS(1460), + [anon_sym_STAR_EQ] = ACTIONS(1460), [anon_sym_SLASH_EQ] = ACTIONS(1460), [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1460), [anon_sym_in] = ACTIONS(1460), @@ -73813,11 +73496,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1458), + [anon_sym_GT2] = ACTIONS(1460), + [anon_sym_DASH2] = ACTIONS(1460), [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1458), + [anon_sym_STAR2] = ACTIONS(1460), [anon_sym_and2] = ACTIONS(1460), [anon_sym_xor2] = ACTIONS(1460), [anon_sym_or2] = ACTIONS(1460), @@ -73830,7 +73512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), [anon_sym_EQ_EQ2] = ACTIONS(1460), [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), + [anon_sym_LT2] = ACTIONS(1460), [anon_sym_LT_EQ2] = ACTIONS(1460), [anon_sym_GT_EQ2] = ACTIONS(1460), [anon_sym_EQ_TILDE2] = ACTIONS(1460), @@ -73838,29 +73520,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1460), [anon_sym_not_DASHlike2] = ACTIONS(1460), [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1458), - [anon_sym_SLASH2] = ACTIONS(1458), + [anon_sym_PLUS_PLUS2] = ACTIONS(1460), + [anon_sym_SLASH2] = ACTIONS(1460), [anon_sym_mod2] = ACTIONS(1460), [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), + [anon_sym_PLUS2] = ACTIONS(1460), [anon_sym_bit_DASHshl2] = ACTIONS(1460), [anon_sym_bit_DASHshr2] = ACTIONS(1460), [anon_sym_bit_DASHand2] = ACTIONS(1460), [anon_sym_bit_DASHxor2] = ACTIONS(1460), [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), + [anon_sym_DOT_DOT2] = ACTIONS(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [sym__entry_separator] = ACTIONS(1462), [anon_sym_COLON2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1444), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), + [anon_sym_DOT2] = ACTIONS(1464), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), [anon_sym_err_GT_GT] = ACTIONS(1460), [anon_sym_out_GT_GT] = ACTIONS(1460), [anon_sym_e_GT_GT] = ACTIONS(1460), @@ -73869,90 +73552,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(339)] = { - [sym_comment] = STATE(339), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1462), - [anon_sym_DASH_EQ] = ACTIONS(1462), - [anon_sym_STAR_EQ] = ACTIONS(1462), - [anon_sym_SLASH_EQ] = ACTIONS(1462), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1462), - [anon_sym_in] = ACTIONS(1462), - [sym__newline] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_err_GT_PIPE] = ACTIONS(1462), - [anon_sym_out_GT_PIPE] = ACTIONS(1462), - [anon_sym_e_GT_PIPE] = ACTIONS(1462), - [anon_sym_o_GT_PIPE] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1462), - [anon_sym_RBRACK] = ACTIONS(1462), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1462), - [anon_sym_xor2] = ACTIONS(1462), - [anon_sym_or2] = ACTIONS(1462), - [anon_sym_not_DASHin2] = ACTIONS(1462), - [anon_sym_has2] = ACTIONS(1462), - [anon_sym_not_DASHhas2] = ACTIONS(1462), - [anon_sym_starts_DASHwith2] = ACTIONS(1462), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1462), - [anon_sym_ends_DASHwith2] = ACTIONS(1462), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1462), - [anon_sym_EQ_EQ2] = ACTIONS(1462), - [anon_sym_BANG_EQ2] = ACTIONS(1462), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1462), - [anon_sym_GT_EQ2] = ACTIONS(1462), - [anon_sym_EQ_TILDE2] = ACTIONS(1462), - [anon_sym_BANG_TILDE2] = ACTIONS(1462), - [anon_sym_like2] = ACTIONS(1462), - [anon_sym_not_DASHlike2] = ACTIONS(1462), - [anon_sym_STAR_STAR2] = ACTIONS(1462), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1462), - [anon_sym_SLASH_SLASH2] = ACTIONS(1462), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1462), - [anon_sym_bit_DASHshr2] = ACTIONS(1462), - [anon_sym_bit_DASHand2] = ACTIONS(1462), - [anon_sym_bit_DASHxor2] = ACTIONS(1462), - [anon_sym_bit_DASHor2] = ACTIONS(1462), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [sym__entry_separator] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1462), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1462), - [anon_sym_out_GT_GT] = ACTIONS(1462), - [anon_sym_e_GT_GT] = ACTIONS(1462), - [anon_sym_o_GT_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1462), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(340)] = { - [sym_comment] = STATE(340), + [STATE(335)] = { + [sym_comment] = STATE(335), [anon_sym_EQ] = ACTIONS(1466), [anon_sym_PLUS_EQ] = ACTIONS(1466), [anon_sym_DASH_EQ] = ACTIONS(1466), @@ -73971,9 +73574,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), + [anon_sym_RBRACK] = ACTIONS(1466), [anon_sym_GT2] = ACTIONS(1466), [anon_sym_DASH2] = ACTIONS(1466), [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_DOT_DOT] = ACTIONS(1466), [anon_sym_STAR2] = ACTIONS(1466), [anon_sym_and2] = ACTIONS(1466), [anon_sym_xor2] = ACTIONS(1466), @@ -74010,8 +73615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), [sym__entry_separator] = ACTIONS(1468), [anon_sym_COLON2] = ACTIONS(1466), - [anon_sym_QMARK2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_QMARK2] = ACTIONS(1470), [anon_sym_DOT2] = ACTIONS(1466), [anon_sym_err_GT] = ACTIONS(1466), [anon_sym_out_GT] = ACTIONS(1466), @@ -74031,409 +73635,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(341)] = { - [sym_comment] = STATE(341), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1470), - [anon_sym_DASH_EQ] = ACTIONS(1470), - [anon_sym_STAR_EQ] = ACTIONS(1470), - [anon_sym_SLASH_EQ] = ACTIONS(1470), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [sym__newline] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_err_GT_PIPE] = ACTIONS(1470), - [anon_sym_out_GT_PIPE] = ACTIONS(1470), - [anon_sym_e_GT_PIPE] = ACTIONS(1470), - [anon_sym_o_GT_PIPE] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1470), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1470), - [anon_sym_xor2] = ACTIONS(1470), - [anon_sym_or2] = ACTIONS(1470), - [anon_sym_not_DASHin2] = ACTIONS(1470), - [anon_sym_has2] = ACTIONS(1470), - [anon_sym_not_DASHhas2] = ACTIONS(1470), - [anon_sym_starts_DASHwith2] = ACTIONS(1470), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1470), - [anon_sym_ends_DASHwith2] = ACTIONS(1470), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1470), - [anon_sym_EQ_EQ2] = ACTIONS(1470), - [anon_sym_BANG_EQ2] = ACTIONS(1470), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1470), - [anon_sym_GT_EQ2] = ACTIONS(1470), - [anon_sym_EQ_TILDE2] = ACTIONS(1470), - [anon_sym_BANG_TILDE2] = ACTIONS(1470), - [anon_sym_like2] = ACTIONS(1470), - [anon_sym_not_DASHlike2] = ACTIONS(1470), - [anon_sym_STAR_STAR2] = ACTIONS(1470), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1470), - [anon_sym_SLASH_SLASH2] = ACTIONS(1470), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1470), - [anon_sym_bit_DASHshr2] = ACTIONS(1470), - [anon_sym_bit_DASHand2] = ACTIONS(1470), - [anon_sym_bit_DASHxor2] = ACTIONS(1470), - [anon_sym_bit_DASHor2] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [sym__entry_separator] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1470), - [anon_sym_QMARK2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1470), - [anon_sym_out_GT_GT] = ACTIONS(1470), - [anon_sym_e_GT_GT] = ACTIONS(1470), - [anon_sym_o_GT_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(342)] = { - [sym_comment] = STATE(342), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1474), - [anon_sym_DASH_EQ] = ACTIONS(1474), - [anon_sym_STAR_EQ] = ACTIONS(1474), - [anon_sym_SLASH_EQ] = ACTIONS(1474), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1474), - [anon_sym_in] = ACTIONS(1474), - [sym__newline] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_err_GT_PIPE] = ACTIONS(1474), - [anon_sym_out_GT_PIPE] = ACTIONS(1474), - [anon_sym_e_GT_PIPE] = ACTIONS(1474), - [anon_sym_o_GT_PIPE] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1474), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1474), - [anon_sym_xor2] = ACTIONS(1474), - [anon_sym_or2] = ACTIONS(1474), - [anon_sym_not_DASHin2] = ACTIONS(1474), - [anon_sym_has2] = ACTIONS(1474), - [anon_sym_not_DASHhas2] = ACTIONS(1474), - [anon_sym_starts_DASHwith2] = ACTIONS(1474), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1474), - [anon_sym_ends_DASHwith2] = ACTIONS(1474), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1474), - [anon_sym_EQ_EQ2] = ACTIONS(1474), - [anon_sym_BANG_EQ2] = ACTIONS(1474), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1474), - [anon_sym_GT_EQ2] = ACTIONS(1474), - [anon_sym_EQ_TILDE2] = ACTIONS(1474), - [anon_sym_BANG_TILDE2] = ACTIONS(1474), - [anon_sym_like2] = ACTIONS(1474), - [anon_sym_not_DASHlike2] = ACTIONS(1474), - [anon_sym_STAR_STAR2] = ACTIONS(1474), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1474), - [anon_sym_SLASH_SLASH2] = ACTIONS(1474), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1474), - [anon_sym_bit_DASHshr2] = ACTIONS(1474), - [anon_sym_bit_DASHand2] = ACTIONS(1474), - [anon_sym_bit_DASHxor2] = ACTIONS(1474), - [anon_sym_bit_DASHor2] = ACTIONS(1474), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [sym__entry_separator] = ACTIONS(1476), - [anon_sym_COLON2] = ACTIONS(1474), - [anon_sym_QMARK2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1474), - [anon_sym_out_GT_GT] = ACTIONS(1474), - [anon_sym_e_GT_GT] = ACTIONS(1474), - [anon_sym_o_GT_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(343)] = { - [sym_comment] = STATE(343), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [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(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(344)] = { - [sym_comment] = STATE(344), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_STAR_EQ] = ACTIONS(1472), - [anon_sym_SLASH_EQ] = ACTIONS(1472), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(345)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), + [STATE(336)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), [sym_val_cellpath] = STATE(4536), [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), [sym_val_duration] = STATE(4536), [sym_val_filesize] = STATE(4536), [sym_val_binary] = STATE(4536), [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5177), - [sym_val_entry] = STATE(4451), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4583), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(4950), + [sym_val_entry] = STATE(4552), [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3656), + [sym__table_head] = STATE(3711), [sym_val_table] = STATE(4536), [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(345), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(336), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), }, - [STATE(346)] = { - [sym_comment] = STATE(346), - [anon_sym_EQ] = ACTIONS(1474), + [STATE(337)] = { + [sym_cell_path] = STATE(402), + [sym_path] = STATE(386), + [sym_comment] = STATE(337), + [aux_sym__where_predicate_lhs_repeat1] = STATE(360), + [anon_sym_EQ] = ACTIONS(1460), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1462), + [anon_sym_in] = ACTIONS(1462), + [sym__newline] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_err_GT_PIPE] = ACTIONS(1462), + [anon_sym_out_GT_PIPE] = ACTIONS(1462), + [anon_sym_e_GT_PIPE] = ACTIONS(1462), + [anon_sym_o_GT_PIPE] = ACTIONS(1462), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1462), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1462), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1462), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_GT2] = ACTIONS(1460), + [anon_sym_DASH2] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_STAR2] = ACTIONS(1460), + [anon_sym_and2] = ACTIONS(1462), + [anon_sym_xor2] = ACTIONS(1462), + [anon_sym_or2] = ACTIONS(1462), + [anon_sym_not_DASHin2] = ACTIONS(1462), + [anon_sym_has2] = ACTIONS(1462), + [anon_sym_not_DASHhas2] = ACTIONS(1462), + [anon_sym_starts_DASHwith2] = ACTIONS(1462), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1462), + [anon_sym_ends_DASHwith2] = ACTIONS(1462), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1462), + [anon_sym_EQ_EQ2] = ACTIONS(1462), + [anon_sym_BANG_EQ2] = ACTIONS(1462), + [anon_sym_LT2] = ACTIONS(1460), + [anon_sym_LT_EQ2] = ACTIONS(1462), + [anon_sym_GT_EQ2] = ACTIONS(1462), + [anon_sym_EQ_TILDE2] = ACTIONS(1462), + [anon_sym_BANG_TILDE2] = ACTIONS(1462), + [anon_sym_like2] = ACTIONS(1462), + [anon_sym_not_DASHlike2] = ACTIONS(1462), + [anon_sym_STAR_STAR2] = ACTIONS(1462), + [anon_sym_PLUS_PLUS2] = ACTIONS(1460), + [anon_sym_SLASH2] = ACTIONS(1460), + [anon_sym_mod2] = ACTIONS(1462), + [anon_sym_SLASH_SLASH2] = ACTIONS(1462), + [anon_sym_PLUS2] = ACTIONS(1460), + [anon_sym_bit_DASHshl2] = ACTIONS(1462), + [anon_sym_bit_DASHshr2] = ACTIONS(1462), + [anon_sym_bit_DASHand2] = ACTIONS(1462), + [anon_sym_bit_DASHxor2] = ACTIONS(1462), + [anon_sym_bit_DASHor2] = ACTIONS(1462), + [anon_sym_DOT_DOT2] = ACTIONS(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [anon_sym_COLON2] = ACTIONS(1462), + [anon_sym_DOT2] = ACTIONS(1474), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [anon_sym_err_GT_GT] = ACTIONS(1462), + [anon_sym_out_GT_GT] = ACTIONS(1462), + [anon_sym_e_GT_GT] = ACTIONS(1462), + [anon_sym_o_GT_GT] = ACTIONS(1462), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1462), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1462), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1462), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(338)] = { + [sym__path_suffix] = STATE(389), + [sym_comment] = STATE(338), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1478), + [anon_sym_in] = ACTIONS(1478), + [sym__newline] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_err_GT_PIPE] = ACTIONS(1478), + [anon_sym_out_GT_PIPE] = ACTIONS(1478), + [anon_sym_e_GT_PIPE] = ACTIONS(1478), + [anon_sym_o_GT_PIPE] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_GT2] = ACTIONS(1476), + [anon_sym_DASH2] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_STAR2] = ACTIONS(1476), + [anon_sym_and2] = ACTIONS(1478), + [anon_sym_xor2] = ACTIONS(1478), + [anon_sym_or2] = ACTIONS(1478), + [anon_sym_not_DASHin2] = ACTIONS(1478), + [anon_sym_has2] = ACTIONS(1478), + [anon_sym_not_DASHhas2] = ACTIONS(1478), + [anon_sym_starts_DASHwith2] = ACTIONS(1478), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1478), + [anon_sym_ends_DASHwith2] = ACTIONS(1478), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1478), + [anon_sym_EQ_EQ2] = ACTIONS(1478), + [anon_sym_BANG_EQ2] = ACTIONS(1478), + [anon_sym_LT2] = ACTIONS(1476), + [anon_sym_LT_EQ2] = ACTIONS(1478), + [anon_sym_GT_EQ2] = ACTIONS(1478), + [anon_sym_EQ_TILDE2] = ACTIONS(1478), + [anon_sym_BANG_TILDE2] = ACTIONS(1478), + [anon_sym_like2] = ACTIONS(1478), + [anon_sym_not_DASHlike2] = ACTIONS(1478), + [anon_sym_STAR_STAR2] = ACTIONS(1478), + [anon_sym_PLUS_PLUS2] = ACTIONS(1476), + [anon_sym_SLASH2] = ACTIONS(1476), + [anon_sym_mod2] = ACTIONS(1478), + [anon_sym_SLASH_SLASH2] = ACTIONS(1478), + [anon_sym_PLUS2] = ACTIONS(1476), + [anon_sym_bit_DASHshl2] = ACTIONS(1478), + [anon_sym_bit_DASHshr2] = ACTIONS(1478), + [anon_sym_bit_DASHand2] = ACTIONS(1478), + [anon_sym_bit_DASHxor2] = ACTIONS(1478), + [anon_sym_bit_DASHor2] = ACTIONS(1478), + [anon_sym_DOT_DOT2] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), + [anon_sym_COLON2] = ACTIONS(1478), + [anon_sym_QMARK2] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_DOT2] = ACTIONS(1476), + [anon_sym_err_GT] = ACTIONS(1476), + [anon_sym_out_GT] = ACTIONS(1476), + [anon_sym_e_GT] = ACTIONS(1476), + [anon_sym_o_GT] = ACTIONS(1476), + [anon_sym_err_PLUSout_GT] = ACTIONS(1476), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), + [anon_sym_o_PLUSe_GT] = ACTIONS(1476), + [anon_sym_e_PLUSo_GT] = ACTIONS(1476), + [anon_sym_err_GT_GT] = ACTIONS(1478), + [anon_sym_out_GT_GT] = ACTIONS(1478), + [anon_sym_e_GT_GT] = ACTIONS(1478), + [anon_sym_o_GT_GT] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(339)] = { + [sym__path_suffix] = STATE(362), + [sym_comment] = STATE(339), + [anon_sym_EQ] = ACTIONS(1476), [anon_sym_PLUS_EQ] = ACTIONS(1476), [anon_sym_DASH_EQ] = ACTIONS(1476), [anon_sym_STAR_EQ] = ACTIONS(1476), @@ -74451,11 +73899,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), + [anon_sym_GT2] = ACTIONS(1476), + [anon_sym_DASH2] = ACTIONS(1476), [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), + [anon_sym_STAR2] = ACTIONS(1476), [anon_sym_and2] = ACTIONS(1476), [anon_sym_xor2] = ACTIONS(1476), [anon_sym_or2] = ACTIONS(1476), @@ -74468,7 +73915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), [anon_sym_EQ_EQ2] = ACTIONS(1476), [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), + [anon_sym_LT2] = ACTIONS(1476), [anon_sym_LT_EQ2] = ACTIONS(1476), [anon_sym_GT_EQ2] = ACTIONS(1476), [anon_sym_EQ_TILDE2] = ACTIONS(1476), @@ -74476,31 +73923,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1476), [anon_sym_not_DASHlike2] = ACTIONS(1476), [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), + [anon_sym_PLUS_PLUS2] = ACTIONS(1476), + [anon_sym_SLASH2] = ACTIONS(1476), [anon_sym_mod2] = ACTIONS(1476), [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), + [anon_sym_PLUS2] = ACTIONS(1476), [anon_sym_bit_DASHshl2] = ACTIONS(1476), [anon_sym_bit_DASHshr2] = ACTIONS(1476), [anon_sym_bit_DASHand2] = ACTIONS(1476), [anon_sym_bit_DASHxor2] = ACTIONS(1476), [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), + [anon_sym_DOT_DOT2] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), + [sym__entry_separator] = ACTIONS(1478), [anon_sym_COLON2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), + [anon_sym_QMARK2] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_DOT2] = ACTIONS(1476), + [anon_sym_err_GT] = ACTIONS(1476), + [anon_sym_out_GT] = ACTIONS(1476), + [anon_sym_e_GT] = ACTIONS(1476), + [anon_sym_o_GT] = ACTIONS(1476), + [anon_sym_err_PLUSout_GT] = ACTIONS(1476), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), + [anon_sym_o_PLUSe_GT] = ACTIONS(1476), + [anon_sym_e_PLUSo_GT] = ACTIONS(1476), [anon_sym_err_GT_GT] = ACTIONS(1476), [anon_sym_out_GT_GT] = ACTIONS(1476), [anon_sym_e_GT_GT] = ACTIONS(1476), @@ -74509,170 +73957,899 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(347)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), + [STATE(340)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4536), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), + [sym_val_cellpath] = STATE(4536), + [sym_val_number] = STATE(4536), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4536), + [sym_val_filesize] = STATE(4536), + [sym_val_binary] = STATE(4536), + [sym_val_string] = STATE(4536), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_interpolated] = STATE(4536), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4583), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(5087), + [sym_val_entry] = STATE(4552), + [sym_val_record] = STATE(4536), + [sym__table_head] = STATE(3659), + [sym_val_table] = STATE(4536), + [sym_val_closure] = STATE(4536), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(340), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, + [STATE(341)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4536), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), + [sym_val_cellpath] = STATE(4536), + [sym_val_number] = STATE(4536), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4536), + [sym_val_filesize] = STATE(4536), + [sym_val_binary] = STATE(4536), + [sym_val_string] = STATE(4536), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_interpolated] = STATE(4536), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4583), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(5052), + [sym_val_entry] = STATE(4552), + [sym_val_record] = STATE(4536), + [sym__table_head] = STATE(3656), + [sym_val_table] = STATE(4536), + [sym_val_closure] = STATE(4536), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(341), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, + [STATE(342)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4536), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), + [sym_val_cellpath] = STATE(4536), + [sym_val_number] = STATE(4536), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4536), + [sym_val_filesize] = STATE(4536), + [sym_val_binary] = STATE(4536), + [sym_val_string] = STATE(4536), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_interpolated] = STATE(4536), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4583), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(5093), + [sym_val_entry] = STATE(4552), + [sym_val_record] = STATE(4536), + [sym__table_head] = STATE(3656), + [sym_val_table] = STATE(4536), + [sym_val_closure] = STATE(4536), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(342), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, + [STATE(343)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4536), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), + [sym_val_cellpath] = STATE(4536), + [sym_val_number] = STATE(4536), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4536), + [sym_val_filesize] = STATE(4536), + [sym_val_binary] = STATE(4536), + [sym_val_string] = STATE(4536), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_interpolated] = STATE(4536), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4583), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(5007), + [sym_val_entry] = STATE(4552), + [sym_val_record] = STATE(4536), + [sym__table_head] = STATE(3712), + [sym_val_table] = STATE(4536), + [sym_val_closure] = STATE(4536), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(343), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, + [STATE(344)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4536), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), + [sym_val_cellpath] = STATE(4536), + [sym_val_number] = STATE(4536), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4536), + [sym_val_filesize] = STATE(4536), + [sym_val_binary] = STATE(4536), + [sym_val_string] = STATE(4536), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_interpolated] = STATE(4536), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4583), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(5079), + [sym_val_entry] = STATE(4552), + [sym_val_record] = STATE(4536), + [sym__table_head] = STATE(3665), + [sym_val_table] = STATE(4536), + [sym_val_closure] = STATE(4536), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(344), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, + [STATE(345)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), [sym_val_cellpath] = STATE(4536), [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), [sym_val_duration] = STATE(4536), [sym_val_filesize] = STATE(4536), [sym_val_binary] = STATE(4536), [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5080), - [sym_val_entry] = STATE(4451), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4583), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(5200), + [sym_val_entry] = STATE(4552), [sym_val_record] = STATE(4536), [sym__table_head] = STATE(3697), [sym_val_table] = STATE(4536), [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(345), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, + [STATE(346)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4536), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), + [sym_val_cellpath] = STATE(4536), + [sym_val_number] = STATE(4536), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4536), + [sym_val_filesize] = STATE(4536), + [sym_val_binary] = STATE(4536), + [sym_val_string] = STATE(4536), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_interpolated] = STATE(4536), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4583), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(4811), + [sym_val_entry] = STATE(4552), + [sym_val_record] = STATE(4536), + [sym__table_head] = STATE(3628), + [sym_val_table] = STATE(4536), + [sym_val_closure] = STATE(4536), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(346), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, + [STATE(347)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4536), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), + [sym_val_cellpath] = STATE(4536), + [sym_val_number] = STATE(4536), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4536), + [sym_val_filesize] = STATE(4536), + [sym_val_binary] = STATE(4536), + [sym_val_string] = STATE(4536), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_interpolated] = STATE(4536), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4583), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(5043), + [sym_val_entry] = STATE(4552), + [sym_val_record] = STATE(4536), + [sym__table_head] = STATE(3666), + [sym_val_table] = STATE(4536), + [sym_val_closure] = STATE(4536), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), [sym_comment] = STATE(347), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), }, [STATE(348)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), + [aux_sym__repeat_newline] = STATE(4304), + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), [sym_val_cellpath] = STATE(4536), [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), [sym_val_duration] = STATE(4536), [sym_val_filesize] = STATE(4536), [sym_val_binary] = STATE(4536), [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4886), - [sym_val_entry] = STATE(4451), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4583), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(4935), + [sym_val_entry] = STATE(4552), [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3646), + [sym__table_head] = STATE(3651), [sym_val_table] = STATE(4536), [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), [sym_comment] = STATE(348), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), }, [STATE(349)] = { [sym_comment] = STATE(349), + [anon_sym_EQ] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1508), + [anon_sym_DASH_EQ] = ACTIONS(1508), + [anon_sym_STAR_EQ] = ACTIONS(1508), + [anon_sym_SLASH_EQ] = ACTIONS(1508), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1508), + [anon_sym_in] = ACTIONS(1508), + [sym__newline] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_GT2] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_STAR2] = ACTIONS(1506), + [anon_sym_and2] = ACTIONS(1508), + [anon_sym_xor2] = ACTIONS(1508), + [anon_sym_or2] = ACTIONS(1508), + [anon_sym_not_DASHin2] = ACTIONS(1508), + [anon_sym_has2] = ACTIONS(1508), + [anon_sym_not_DASHhas2] = ACTIONS(1508), + [anon_sym_starts_DASHwith2] = ACTIONS(1508), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1508), + [anon_sym_ends_DASHwith2] = ACTIONS(1508), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1508), + [anon_sym_EQ_EQ2] = ACTIONS(1508), + [anon_sym_BANG_EQ2] = ACTIONS(1508), + [anon_sym_LT2] = ACTIONS(1506), + [anon_sym_LT_EQ2] = ACTIONS(1508), + [anon_sym_GT_EQ2] = ACTIONS(1508), + [anon_sym_EQ_TILDE2] = ACTIONS(1508), + [anon_sym_BANG_TILDE2] = ACTIONS(1508), + [anon_sym_like2] = ACTIONS(1508), + [anon_sym_not_DASHlike2] = ACTIONS(1508), + [anon_sym_STAR_STAR2] = ACTIONS(1508), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1506), + [anon_sym_mod2] = ACTIONS(1508), + [anon_sym_SLASH_SLASH2] = ACTIONS(1508), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_bit_DASHshl2] = ACTIONS(1508), + [anon_sym_bit_DASHshr2] = ACTIONS(1508), + [anon_sym_bit_DASHand2] = ACTIONS(1508), + [anon_sym_bit_DASHxor2] = ACTIONS(1508), + [anon_sym_bit_DASHor2] = ACTIONS(1508), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [anon_sym_COLON2] = ACTIONS(1508), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_DOT2] = ACTIONS(1506), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(350)] = { + [sym_comment] = STATE(350), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_PLUS_EQ] = ACTIONS(1512), + [anon_sym_DASH_EQ] = ACTIONS(1512), + [anon_sym_STAR_EQ] = ACTIONS(1512), + [anon_sym_SLASH_EQ] = ACTIONS(1512), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1512), + [anon_sym_in] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1510), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1510), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_like2] = ACTIONS(1512), + [anon_sym_not_DASHlike2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1510), + [anon_sym_SLASH2] = ACTIONS(1510), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [anon_sym_COLON2] = ACTIONS(1512), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_DOT2] = ACTIONS(1510), + [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(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(351)] = { + [sym_comment] = STATE(351), [anon_sym_EQ] = ACTIONS(1514), [anon_sym_PLUS_EQ] = ACTIONS(1516), [anon_sym_DASH_EQ] = ACTIONS(1516), @@ -74751,89 +74928,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(350)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4809), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3709), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(350), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(351)] = { - [sym_comment] = STATE(351), - [anon_sym_EQ] = ACTIONS(1520), + [STATE(352)] = { + [sym_comment] = STATE(352), + [anon_sym_EQ] = ACTIONS(1518), [anon_sym_PLUS_EQ] = ACTIONS(1520), [anon_sym_DASH_EQ] = ACTIONS(1520), [anon_sym_STAR_EQ] = ACTIONS(1520), @@ -74851,12 +74948,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_RBRACK] = ACTIONS(1520), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_GT2] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1518), [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1520), - [anon_sym_STAR2] = ACTIONS(1520), + [anon_sym_STAR2] = ACTIONS(1518), [anon_sym_and2] = ACTIONS(1520), [anon_sym_xor2] = ACTIONS(1520), [anon_sym_or2] = ACTIONS(1520), @@ -74869,7 +74965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1520), [anon_sym_EQ_EQ2] = ACTIONS(1520), [anon_sym_BANG_EQ2] = ACTIONS(1520), - [anon_sym_LT2] = ACTIONS(1520), + [anon_sym_LT2] = ACTIONS(1518), [anon_sym_LT_EQ2] = ACTIONS(1520), [anon_sym_GT_EQ2] = ACTIONS(1520), [anon_sym_EQ_TILDE2] = ACTIONS(1520), @@ -74877,30 +74973,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1520), [anon_sym_not_DASHlike2] = ACTIONS(1520), [anon_sym_STAR_STAR2] = ACTIONS(1520), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), + [anon_sym_PLUS_PLUS2] = ACTIONS(1518), + [anon_sym_SLASH2] = ACTIONS(1518), [anon_sym_mod2] = ACTIONS(1520), [anon_sym_SLASH_SLASH2] = ACTIONS(1520), - [anon_sym_PLUS2] = ACTIONS(1520), + [anon_sym_PLUS2] = ACTIONS(1518), [anon_sym_bit_DASHshl2] = ACTIONS(1520), [anon_sym_bit_DASHshr2] = ACTIONS(1520), [anon_sym_bit_DASHand2] = ACTIONS(1520), [anon_sym_bit_DASHxor2] = ACTIONS(1520), [anon_sym_bit_DASHor2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [sym__entry_separator] = ACTIONS(1522), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), [anon_sym_COLON2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), + [anon_sym_QMARK2] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_DOT2] = ACTIONS(1518), + [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), @@ -74909,10 +75006,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3), + }, + [STATE(353)] = { + [sym_comment] = STATE(353), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_PLUS_EQ] = ACTIONS(1522), + [anon_sym_DASH_EQ] = ACTIONS(1522), + [anon_sym_STAR_EQ] = ACTIONS(1522), + [anon_sym_SLASH_EQ] = ACTIONS(1522), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1522), + [anon_sym_in] = ACTIONS(1522), + [sym__newline] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_err_GT_PIPE] = ACTIONS(1522), + [anon_sym_out_GT_PIPE] = ACTIONS(1522), + [anon_sym_e_GT_PIPE] = ACTIONS(1522), + [anon_sym_o_GT_PIPE] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), + [anon_sym_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_STAR2] = ACTIONS(1522), + [anon_sym_and2] = ACTIONS(1522), + [anon_sym_xor2] = ACTIONS(1522), + [anon_sym_or2] = ACTIONS(1522), + [anon_sym_not_DASHin2] = ACTIONS(1522), + [anon_sym_has2] = ACTIONS(1522), + [anon_sym_not_DASHhas2] = ACTIONS(1522), + [anon_sym_starts_DASHwith2] = ACTIONS(1522), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), + [anon_sym_ends_DASHwith2] = ACTIONS(1522), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), + [anon_sym_EQ_EQ2] = ACTIONS(1522), + [anon_sym_BANG_EQ2] = ACTIONS(1522), + [anon_sym_LT2] = ACTIONS(1522), + [anon_sym_LT_EQ2] = ACTIONS(1522), + [anon_sym_GT_EQ2] = ACTIONS(1522), + [anon_sym_EQ_TILDE2] = ACTIONS(1522), + [anon_sym_BANG_TILDE2] = ACTIONS(1522), + [anon_sym_like2] = ACTIONS(1522), + [anon_sym_not_DASHlike2] = ACTIONS(1522), + [anon_sym_STAR_STAR2] = ACTIONS(1522), + [anon_sym_PLUS_PLUS2] = ACTIONS(1522), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1522), + [anon_sym_SLASH_SLASH2] = ACTIONS(1522), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_bit_DASHshl2] = ACTIONS(1522), + [anon_sym_bit_DASHshr2] = ACTIONS(1522), + [anon_sym_bit_DASHand2] = ACTIONS(1522), + [anon_sym_bit_DASHxor2] = ACTIONS(1522), + [anon_sym_bit_DASHor2] = ACTIONS(1522), + [anon_sym_DOT_DOT2] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [sym__entry_separator] = ACTIONS(1524), + [anon_sym_COLON2] = ACTIONS(1522), + [anon_sym_QMARK2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [anon_sym_err_GT_GT] = ACTIONS(1522), + [anon_sym_out_GT_GT] = ACTIONS(1522), + [anon_sym_e_GT_GT] = ACTIONS(1522), + [anon_sym_o_GT_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(352)] = { - [sym_comment] = STATE(352), + [STATE(354)] = { + [sym_comment] = STATE(354), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_PLUS_EQ] = ACTIONS(1526), + [anon_sym_DASH_EQ] = ACTIONS(1526), + [anon_sym_STAR_EQ] = ACTIONS(1526), + [anon_sym_SLASH_EQ] = ACTIONS(1526), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1526), + [anon_sym_in] = ACTIONS(1526), + [sym__newline] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym_PIPE] = ACTIONS(1526), + [anon_sym_err_GT_PIPE] = ACTIONS(1526), + [anon_sym_out_GT_PIPE] = ACTIONS(1526), + [anon_sym_e_GT_PIPE] = ACTIONS(1526), + [anon_sym_o_GT_PIPE] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), + [anon_sym_GT2] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_STAR2] = ACTIONS(1526), + [anon_sym_and2] = ACTIONS(1526), + [anon_sym_xor2] = ACTIONS(1526), + [anon_sym_or2] = ACTIONS(1526), + [anon_sym_not_DASHin2] = ACTIONS(1526), + [anon_sym_has2] = ACTIONS(1526), + [anon_sym_not_DASHhas2] = ACTIONS(1526), + [anon_sym_starts_DASHwith2] = ACTIONS(1526), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), + [anon_sym_ends_DASHwith2] = ACTIONS(1526), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), + [anon_sym_EQ_EQ2] = ACTIONS(1526), + [anon_sym_BANG_EQ2] = ACTIONS(1526), + [anon_sym_LT2] = ACTIONS(1526), + [anon_sym_LT_EQ2] = ACTIONS(1526), + [anon_sym_GT_EQ2] = ACTIONS(1526), + [anon_sym_EQ_TILDE2] = ACTIONS(1526), + [anon_sym_BANG_TILDE2] = ACTIONS(1526), + [anon_sym_like2] = ACTIONS(1526), + [anon_sym_not_DASHlike2] = ACTIONS(1526), + [anon_sym_STAR_STAR2] = ACTIONS(1526), + [anon_sym_PLUS_PLUS2] = ACTIONS(1526), + [anon_sym_SLASH2] = ACTIONS(1526), + [anon_sym_mod2] = ACTIONS(1526), + [anon_sym_SLASH_SLASH2] = ACTIONS(1526), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_bit_DASHshl2] = ACTIONS(1526), + [anon_sym_bit_DASHshr2] = ACTIONS(1526), + [anon_sym_bit_DASHand2] = ACTIONS(1526), + [anon_sym_bit_DASHxor2] = ACTIONS(1526), + [anon_sym_bit_DASHor2] = ACTIONS(1526), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [sym__entry_separator] = ACTIONS(1528), + [anon_sym_COLON2] = ACTIONS(1526), + [anon_sym_QMARK2] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_DOT2] = ACTIONS(1526), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1526), + [anon_sym_out_GT_GT] = ACTIONS(1526), + [anon_sym_e_GT_GT] = ACTIONS(1526), + [anon_sym_o_GT_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(355)] = { + [sym_comment] = STATE(355), + [anon_sym_EQ] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1506), + [anon_sym_in] = 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_GT2] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_STAR2] = ACTIONS(1506), + [anon_sym_and2] = ACTIONS(1506), + [anon_sym_xor2] = ACTIONS(1506), + [anon_sym_or2] = ACTIONS(1506), + [anon_sym_not_DASHin2] = ACTIONS(1506), + [anon_sym_has2] = ACTIONS(1506), + [anon_sym_not_DASHhas2] = ACTIONS(1506), + [anon_sym_starts_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1506), + [anon_sym_ends_DASHwith2] = ACTIONS(1506), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1506), + [anon_sym_EQ_EQ2] = ACTIONS(1506), + [anon_sym_BANG_EQ2] = ACTIONS(1506), + [anon_sym_LT2] = ACTIONS(1506), + [anon_sym_LT_EQ2] = ACTIONS(1506), + [anon_sym_GT_EQ2] = ACTIONS(1506), + [anon_sym_EQ_TILDE2] = ACTIONS(1506), + [anon_sym_BANG_TILDE2] = ACTIONS(1506), + [anon_sym_like2] = ACTIONS(1506), + [anon_sym_not_DASHlike2] = ACTIONS(1506), + [anon_sym_STAR_STAR2] = ACTIONS(1506), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1506), + [anon_sym_mod2] = ACTIONS(1506), + [anon_sym_SLASH_SLASH2] = ACTIONS(1506), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_bit_DASHshl2] = ACTIONS(1506), + [anon_sym_bit_DASHshr2] = ACTIONS(1506), + [anon_sym_bit_DASHand2] = ACTIONS(1506), + [anon_sym_bit_DASHxor2] = ACTIONS(1506), + [anon_sym_bit_DASHor2] = ACTIONS(1506), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [sym__entry_separator] = ACTIONS(1508), + [anon_sym_COLON2] = ACTIONS(1506), + [anon_sym_QMARK2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_DOT2] = ACTIONS(1506), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [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), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(356)] = { + [sym_comment] = STATE(356), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1510), + [anon_sym_in] = ACTIONS(1510), + [sym__newline] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_err_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_GT_PIPE] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1510), + [anon_sym_GT2] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_STAR2] = ACTIONS(1510), + [anon_sym_and2] = ACTIONS(1510), + [anon_sym_xor2] = ACTIONS(1510), + [anon_sym_or2] = ACTIONS(1510), + [anon_sym_not_DASHin2] = ACTIONS(1510), + [anon_sym_has2] = ACTIONS(1510), + [anon_sym_not_DASHhas2] = ACTIONS(1510), + [anon_sym_starts_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1510), + [anon_sym_ends_DASHwith2] = ACTIONS(1510), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1510), + [anon_sym_EQ_EQ2] = ACTIONS(1510), + [anon_sym_BANG_EQ2] = ACTIONS(1510), + [anon_sym_LT2] = ACTIONS(1510), + [anon_sym_LT_EQ2] = ACTIONS(1510), + [anon_sym_GT_EQ2] = ACTIONS(1510), + [anon_sym_EQ_TILDE2] = ACTIONS(1510), + [anon_sym_BANG_TILDE2] = ACTIONS(1510), + [anon_sym_like2] = ACTIONS(1510), + [anon_sym_not_DASHlike2] = ACTIONS(1510), + [anon_sym_STAR_STAR2] = ACTIONS(1510), + [anon_sym_PLUS_PLUS2] = ACTIONS(1510), + [anon_sym_SLASH2] = ACTIONS(1510), + [anon_sym_mod2] = ACTIONS(1510), + [anon_sym_SLASH_SLASH2] = ACTIONS(1510), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_bit_DASHshl2] = ACTIONS(1510), + [anon_sym_bit_DASHshr2] = ACTIONS(1510), + [anon_sym_bit_DASHand2] = ACTIONS(1510), + [anon_sym_bit_DASHxor2] = ACTIONS(1510), + [anon_sym_bit_DASHor2] = ACTIONS(1510), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [sym__entry_separator] = ACTIONS(1512), + [anon_sym_COLON2] = ACTIONS(1510), + [anon_sym_QMARK2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_DOT2] = ACTIONS(1510), + [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(1510), + [anon_sym_out_GT_GT] = ACTIONS(1510), + [anon_sym_e_GT_GT] = ACTIONS(1510), + [anon_sym_o_GT_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(357)] = { + [sym_comment] = STATE(357), [anon_sym_EQ] = ACTIONS(1514), [anon_sym_PLUS_EQ] = ACTIONS(1514), [anon_sym_DASH_EQ] = ACTIONS(1514), @@ -74991,649 +75408,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(353)] = { - [sym_path] = STATE(385), - [sym_comment] = STATE(353), - [aux_sym__where_predicate_lhs_repeat1] = STATE(353), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_PLUS_EQ] = ACTIONS(1526), - [anon_sym_DASH_EQ] = ACTIONS(1526), - [anon_sym_STAR_EQ] = ACTIONS(1526), - [anon_sym_SLASH_EQ] = ACTIONS(1526), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(354)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5047), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(354), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(355)] = { - [sym_comment] = STATE(355), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_STAR_EQ] = ACTIONS(1468), - [anon_sym_SLASH_EQ] = ACTIONS(1468), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(356)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5041), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3665), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(356), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(357)] = { - [sym_comment] = STATE(357), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [sym__newline] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1535), - [anon_sym_err_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_GT_PIPE] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), - [anon_sym_RBRACK] = ACTIONS(1535), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1535), - [anon_sym_xor2] = ACTIONS(1535), - [anon_sym_or2] = ACTIONS(1535), - [anon_sym_not_DASHin2] = ACTIONS(1535), - [anon_sym_has2] = ACTIONS(1535), - [anon_sym_not_DASHhas2] = ACTIONS(1535), - [anon_sym_starts_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), - [anon_sym_ends_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), - [anon_sym_EQ_EQ2] = ACTIONS(1535), - [anon_sym_BANG_EQ2] = ACTIONS(1535), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1535), - [anon_sym_GT_EQ2] = ACTIONS(1535), - [anon_sym_EQ_TILDE2] = ACTIONS(1535), - [anon_sym_BANG_TILDE2] = ACTIONS(1535), - [anon_sym_like2] = ACTIONS(1535), - [anon_sym_not_DASHlike2] = ACTIONS(1535), - [anon_sym_STAR_STAR2] = ACTIONS(1535), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1535), - [anon_sym_SLASH_SLASH2] = ACTIONS(1535), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1535), - [anon_sym_bit_DASHshr2] = ACTIONS(1535), - [anon_sym_bit_DASHand2] = ACTIONS(1535), - [anon_sym_bit_DASHxor2] = ACTIONS(1535), - [anon_sym_bit_DASHor2] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [sym__entry_separator] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1535), - [anon_sym_out_GT_GT] = ACTIONS(1535), - [anon_sym_e_GT_GT] = ACTIONS(1535), - [anon_sym_o_GT_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(358)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4926), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3675), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(358), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_PLUS_EQ] = ACTIONS(1518), + [anon_sym_DASH_EQ] = ACTIONS(1518), + [anon_sym_STAR_EQ] = ACTIONS(1518), + [anon_sym_SLASH_EQ] = ACTIONS(1518), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1518), + [anon_sym_in] = ACTIONS(1518), + [sym__newline] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_err_GT_PIPE] = ACTIONS(1518), + [anon_sym_out_GT_PIPE] = ACTIONS(1518), + [anon_sym_e_GT_PIPE] = ACTIONS(1518), + [anon_sym_o_GT_PIPE] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1518), + [anon_sym_GT2] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_STAR2] = ACTIONS(1518), + [anon_sym_and2] = ACTIONS(1518), + [anon_sym_xor2] = ACTIONS(1518), + [anon_sym_or2] = ACTIONS(1518), + [anon_sym_not_DASHin2] = ACTIONS(1518), + [anon_sym_has2] = ACTIONS(1518), + [anon_sym_not_DASHhas2] = ACTIONS(1518), + [anon_sym_starts_DASHwith2] = ACTIONS(1518), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1518), + [anon_sym_ends_DASHwith2] = ACTIONS(1518), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1518), + [anon_sym_EQ_EQ2] = ACTIONS(1518), + [anon_sym_BANG_EQ2] = ACTIONS(1518), + [anon_sym_LT2] = ACTIONS(1518), + [anon_sym_LT_EQ2] = ACTIONS(1518), + [anon_sym_GT_EQ2] = ACTIONS(1518), + [anon_sym_EQ_TILDE2] = ACTIONS(1518), + [anon_sym_BANG_TILDE2] = ACTIONS(1518), + [anon_sym_like2] = ACTIONS(1518), + [anon_sym_not_DASHlike2] = ACTIONS(1518), + [anon_sym_STAR_STAR2] = ACTIONS(1518), + [anon_sym_PLUS_PLUS2] = ACTIONS(1518), + [anon_sym_SLASH2] = ACTIONS(1518), + [anon_sym_mod2] = ACTIONS(1518), + [anon_sym_SLASH_SLASH2] = ACTIONS(1518), + [anon_sym_PLUS2] = ACTIONS(1518), + [anon_sym_bit_DASHshl2] = ACTIONS(1518), + [anon_sym_bit_DASHshr2] = ACTIONS(1518), + [anon_sym_bit_DASHand2] = ACTIONS(1518), + [anon_sym_bit_DASHxor2] = ACTIONS(1518), + [anon_sym_bit_DASHor2] = ACTIONS(1518), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [sym__entry_separator] = ACTIONS(1520), + [anon_sym_COLON2] = ACTIONS(1518), + [anon_sym_QMARK2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_DOT2] = ACTIONS(1518), + [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(1518), + [anon_sym_out_GT_GT] = ACTIONS(1518), + [anon_sym_e_GT_GT] = ACTIONS(1518), + [anon_sym_o_GT_GT] = ACTIONS(1518), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1518), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1518), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1518), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(359)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5003), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3702), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(359), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1530), + [anon_sym_PLUS_EQ] = ACTIONS(1530), + [anon_sym_DASH_EQ] = ACTIONS(1530), + [anon_sym_STAR_EQ] = ACTIONS(1530), + [anon_sym_SLASH_EQ] = ACTIONS(1530), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1530), + [anon_sym_in] = 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_RBRACK] = ACTIONS(1530), + [anon_sym_GT2] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_DOT_DOT] = ACTIONS(1530), + [anon_sym_STAR2] = ACTIONS(1530), + [anon_sym_and2] = ACTIONS(1530), + [anon_sym_xor2] = ACTIONS(1530), + [anon_sym_or2] = ACTIONS(1530), + [anon_sym_not_DASHin2] = ACTIONS(1530), + [anon_sym_has2] = ACTIONS(1530), + [anon_sym_not_DASHhas2] = ACTIONS(1530), + [anon_sym_starts_DASHwith2] = ACTIONS(1530), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1530), + [anon_sym_ends_DASHwith2] = ACTIONS(1530), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1530), + [anon_sym_EQ_EQ2] = ACTIONS(1530), + [anon_sym_BANG_EQ2] = ACTIONS(1530), + [anon_sym_LT2] = ACTIONS(1530), + [anon_sym_LT_EQ2] = ACTIONS(1530), + [anon_sym_GT_EQ2] = ACTIONS(1530), + [anon_sym_EQ_TILDE2] = ACTIONS(1530), + [anon_sym_BANG_TILDE2] = ACTIONS(1530), + [anon_sym_like2] = ACTIONS(1530), + [anon_sym_not_DASHlike2] = ACTIONS(1530), + [anon_sym_STAR_STAR2] = ACTIONS(1530), + [anon_sym_PLUS_PLUS2] = ACTIONS(1530), + [anon_sym_SLASH2] = ACTIONS(1530), + [anon_sym_mod2] = ACTIONS(1530), + [anon_sym_SLASH_SLASH2] = ACTIONS(1530), + [anon_sym_PLUS2] = ACTIONS(1530), + [anon_sym_bit_DASHshl2] = ACTIONS(1530), + [anon_sym_bit_DASHshr2] = ACTIONS(1530), + [anon_sym_bit_DASHand2] = ACTIONS(1530), + [anon_sym_bit_DASHxor2] = ACTIONS(1530), + [anon_sym_bit_DASHor2] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1530), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), + [sym__entry_separator] = ACTIONS(1532), + [anon_sym_COLON2] = ACTIONS(1530), + [anon_sym_DOT2] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1530), + [anon_sym_out_GT] = ACTIONS(1530), + [anon_sym_e_GT] = ACTIONS(1530), + [anon_sym_o_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT] = ACTIONS(1530), + [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(103), }, [STATE(360)] = { + [sym_path] = STATE(386), [sym_comment] = STATE(360), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1543), - [anon_sym_in] = ACTIONS(1543), - [sym__newline] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_err_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_GT_PIPE] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1543), - [anon_sym_xor2] = ACTIONS(1543), - [anon_sym_or2] = ACTIONS(1543), - [anon_sym_not_DASHin2] = ACTIONS(1543), - [anon_sym_has2] = ACTIONS(1543), - [anon_sym_not_DASHhas2] = ACTIONS(1543), - [anon_sym_starts_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1543), - [anon_sym_ends_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1543), - [anon_sym_EQ_EQ2] = ACTIONS(1543), - [anon_sym_BANG_EQ2] = ACTIONS(1543), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1543), - [anon_sym_GT_EQ2] = ACTIONS(1543), - [anon_sym_EQ_TILDE2] = ACTIONS(1543), - [anon_sym_BANG_TILDE2] = ACTIONS(1543), - [anon_sym_like2] = ACTIONS(1543), - [anon_sym_not_DASHlike2] = ACTIONS(1543), - [anon_sym_STAR_STAR2] = ACTIONS(1543), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1543), - [anon_sym_SLASH_SLASH2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1543), - [anon_sym_bit_DASHshr2] = ACTIONS(1543), - [anon_sym_bit_DASHand2] = ACTIONS(1543), - [anon_sym_bit_DASHxor2] = ACTIONS(1543), - [anon_sym_bit_DASHor2] = ACTIONS(1543), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [sym__entry_separator] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1543), - [anon_sym_QMARK2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1543), - [anon_sym_out_GT_GT] = ACTIONS(1543), - [anon_sym_e_GT_GT] = ACTIONS(1543), - [anon_sym_o_GT_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym__where_predicate_lhs_repeat1] = STATE(361), + [anon_sym_EQ] = ACTIONS(1534), + [anon_sym_PLUS_EQ] = ACTIONS(1536), + [anon_sym_DASH_EQ] = ACTIONS(1536), + [anon_sym_STAR_EQ] = ACTIONS(1536), + [anon_sym_SLASH_EQ] = ACTIONS(1536), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1536), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_err_GT_PIPE] = ACTIONS(1536), + [anon_sym_out_GT_PIPE] = ACTIONS(1536), + [anon_sym_e_GT_PIPE] = ACTIONS(1536), + [anon_sym_o_GT_PIPE] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_GT2] = ACTIONS(1534), + [anon_sym_DASH2] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_STAR2] = ACTIONS(1534), + [anon_sym_and2] = ACTIONS(1536), + [anon_sym_xor2] = ACTIONS(1536), + [anon_sym_or2] = ACTIONS(1536), + [anon_sym_not_DASHin2] = ACTIONS(1536), + [anon_sym_has2] = ACTIONS(1536), + [anon_sym_not_DASHhas2] = ACTIONS(1536), + [anon_sym_starts_DASHwith2] = ACTIONS(1536), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1536), + [anon_sym_ends_DASHwith2] = ACTIONS(1536), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1536), + [anon_sym_EQ_EQ2] = ACTIONS(1536), + [anon_sym_BANG_EQ2] = ACTIONS(1536), + [anon_sym_LT2] = ACTIONS(1534), + [anon_sym_LT_EQ2] = ACTIONS(1536), + [anon_sym_GT_EQ2] = ACTIONS(1536), + [anon_sym_EQ_TILDE2] = ACTIONS(1536), + [anon_sym_BANG_TILDE2] = ACTIONS(1536), + [anon_sym_like2] = ACTIONS(1536), + [anon_sym_not_DASHlike2] = ACTIONS(1536), + [anon_sym_STAR_STAR2] = ACTIONS(1536), + [anon_sym_PLUS_PLUS2] = ACTIONS(1534), + [anon_sym_SLASH2] = ACTIONS(1534), + [anon_sym_mod2] = ACTIONS(1536), + [anon_sym_SLASH_SLASH2] = ACTIONS(1536), + [anon_sym_PLUS2] = ACTIONS(1534), + [anon_sym_bit_DASHshl2] = ACTIONS(1536), + [anon_sym_bit_DASHshr2] = ACTIONS(1536), + [anon_sym_bit_DASHand2] = ACTIONS(1536), + [anon_sym_bit_DASHxor2] = ACTIONS(1536), + [anon_sym_bit_DASHor2] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1534), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1536), + [anon_sym_COLON2] = ACTIONS(1536), + [anon_sym_DOT2] = ACTIONS(1474), + [anon_sym_err_GT] = ACTIONS(1534), + [anon_sym_out_GT] = ACTIONS(1534), + [anon_sym_e_GT] = ACTIONS(1534), + [anon_sym_o_GT] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT] = ACTIONS(1534), + [anon_sym_err_GT_GT] = ACTIONS(1536), + [anon_sym_out_GT_GT] = ACTIONS(1536), + [anon_sym_e_GT_GT] = ACTIONS(1536), + [anon_sym_o_GT_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(361)] = { + [sym_path] = STATE(386), [sym_comment] = STATE(361), - [anon_sym_EQ] = ACTIONS(1543), + [aux_sym__where_predicate_lhs_repeat1] = STATE(361), + [anon_sym_EQ] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(1540), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1540), + [anon_sym_xor2] = ACTIONS(1540), + [anon_sym_or2] = ACTIONS(1540), + [anon_sym_not_DASHin2] = ACTIONS(1540), + [anon_sym_has2] = ACTIONS(1540), + [anon_sym_not_DASHhas2] = ACTIONS(1540), + [anon_sym_starts_DASHwith2] = ACTIONS(1540), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1540), + [anon_sym_ends_DASHwith2] = ACTIONS(1540), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1540), + [anon_sym_EQ_EQ2] = ACTIONS(1540), + [anon_sym_BANG_EQ2] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1540), + [anon_sym_GT_EQ2] = ACTIONS(1540), + [anon_sym_EQ_TILDE2] = ACTIONS(1540), + [anon_sym_BANG_TILDE2] = ACTIONS(1540), + [anon_sym_like2] = ACTIONS(1540), + [anon_sym_not_DASHlike2] = ACTIONS(1540), + [anon_sym_STAR_STAR2] = ACTIONS(1540), + [anon_sym_PLUS_PLUS2] = ACTIONS(1538), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1540), + [anon_sym_SLASH_SLASH2] = ACTIONS(1540), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_bit_DASHshl2] = ACTIONS(1540), + [anon_sym_bit_DASHshr2] = ACTIONS(1540), + [anon_sym_bit_DASHand2] = ACTIONS(1540), + [anon_sym_bit_DASHxor2] = ACTIONS(1540), + [anon_sym_bit_DASHor2] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1538), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), + [anon_sym_COLON2] = ACTIONS(1540), + [anon_sym_DOT2] = ACTIONS(1542), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(362)] = { + [sym_comment] = STATE(362), + [anon_sym_EQ] = ACTIONS(1545), [anon_sym_PLUS_EQ] = ACTIONS(1545), [anon_sym_DASH_EQ] = ACTIONS(1545), [anon_sym_STAR_EQ] = ACTIONS(1545), @@ -75651,11 +75748,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), + [anon_sym_RBRACK] = ACTIONS(1545), + [anon_sym_GT2] = ACTIONS(1545), + [anon_sym_DASH2] = ACTIONS(1545), [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_STAR2] = ACTIONS(1545), [anon_sym_and2] = ACTIONS(1545), [anon_sym_xor2] = ACTIONS(1545), [anon_sym_or2] = ACTIONS(1545), @@ -75668,7 +75766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), [anon_sym_EQ_EQ2] = ACTIONS(1545), [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), + [anon_sym_LT2] = ACTIONS(1545), [anon_sym_LT_EQ2] = ACTIONS(1545), [anon_sym_GT_EQ2] = ACTIONS(1545), [anon_sym_EQ_TILDE2] = ACTIONS(1545), @@ -75676,31 +75774,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1545), [anon_sym_not_DASHlike2] = ACTIONS(1545), [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS_PLUS2] = ACTIONS(1545), + [anon_sym_SLASH2] = ACTIONS(1545), [anon_sym_mod2] = ACTIONS(1545), [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1545), [anon_sym_bit_DASHshl2] = ACTIONS(1545), [anon_sym_bit_DASHshr2] = ACTIONS(1545), [anon_sym_bit_DASHand2] = ACTIONS(1545), [anon_sym_bit_DASHxor2] = ACTIONS(1545), [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), + [anon_sym_DOT_DOT2] = ACTIONS(1545), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), + [sym__entry_separator] = ACTIONS(1547), [anon_sym_COLON2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), + [anon_sym_DOT2] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), [anon_sym_err_GT_GT] = ACTIONS(1545), [anon_sym_out_GT_GT] = ACTIONS(1545), [anon_sym_e_GT_GT] = ACTIONS(1545), @@ -75709,173 +75806,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(362)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5056), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3670), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(362), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(363)] = { - [sym_path] = STATE(339), [sym_comment] = STATE(363), - [aux_sym__where_predicate_lhs_repeat1] = STATE(364), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_PLUS_EQ] = ACTIONS(1458), - [anon_sym_DASH_EQ] = ACTIONS(1458), - [anon_sym_STAR_EQ] = ACTIONS(1458), - [anon_sym_SLASH_EQ] = ACTIONS(1458), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1458), - [anon_sym_in] = ACTIONS(1458), - [sym__newline] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_err_GT_PIPE] = ACTIONS(1458), - [anon_sym_out_GT_PIPE] = ACTIONS(1458), - [anon_sym_e_GT_PIPE] = ACTIONS(1458), - [anon_sym_o_GT_PIPE] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1458), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1458), - [anon_sym_xor2] = ACTIONS(1458), - [anon_sym_or2] = ACTIONS(1458), - [anon_sym_not_DASHin2] = ACTIONS(1458), - [anon_sym_has2] = ACTIONS(1458), - [anon_sym_not_DASHhas2] = ACTIONS(1458), - [anon_sym_starts_DASHwith2] = ACTIONS(1458), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1458), - [anon_sym_ends_DASHwith2] = ACTIONS(1458), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1458), - [anon_sym_EQ_EQ2] = ACTIONS(1458), - [anon_sym_BANG_EQ2] = ACTIONS(1458), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1458), - [anon_sym_GT_EQ2] = ACTIONS(1458), - [anon_sym_EQ_TILDE2] = ACTIONS(1458), - [anon_sym_BANG_TILDE2] = ACTIONS(1458), - [anon_sym_like2] = ACTIONS(1458), - [anon_sym_not_DASHlike2] = ACTIONS(1458), - [anon_sym_STAR_STAR2] = ACTIONS(1458), - [anon_sym_PLUS_PLUS2] = ACTIONS(1458), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1458), - [anon_sym_SLASH_SLASH2] = ACTIONS(1458), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1458), - [anon_sym_bit_DASHshr2] = ACTIONS(1458), - [anon_sym_bit_DASHand2] = ACTIONS(1458), - [anon_sym_bit_DASHxor2] = ACTIONS(1458), - [anon_sym_bit_DASHor2] = ACTIONS(1458), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [sym__entry_separator] = ACTIONS(1460), - [anon_sym_COLON2] = ACTIONS(1458), - [anon_sym_DOT2] = ACTIONS(1436), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1458), - [anon_sym_out_GT_GT] = ACTIONS(1458), - [anon_sym_e_GT_GT] = ACTIONS(1458), - [anon_sym_o_GT_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1549), + [anon_sym_PLUS_EQ] = ACTIONS(1549), + [anon_sym_DASH_EQ] = ACTIONS(1549), + [anon_sym_STAR_EQ] = ACTIONS(1549), + [anon_sym_SLASH_EQ] = ACTIONS(1549), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1549), + [anon_sym_in] = ACTIONS(1549), + [sym__newline] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_err_GT_PIPE] = ACTIONS(1549), + [anon_sym_out_GT_PIPE] = ACTIONS(1549), + [anon_sym_e_GT_PIPE] = ACTIONS(1549), + [anon_sym_o_GT_PIPE] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1549), + [anon_sym_RBRACK] = ACTIONS(1549), + [anon_sym_GT2] = ACTIONS(1549), + [anon_sym_DASH2] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(1549), + [anon_sym_STAR2] = ACTIONS(1549), + [anon_sym_and2] = ACTIONS(1549), + [anon_sym_xor2] = ACTIONS(1549), + [anon_sym_or2] = ACTIONS(1549), + [anon_sym_not_DASHin2] = ACTIONS(1549), + [anon_sym_has2] = ACTIONS(1549), + [anon_sym_not_DASHhas2] = ACTIONS(1549), + [anon_sym_starts_DASHwith2] = ACTIONS(1549), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1549), + [anon_sym_ends_DASHwith2] = ACTIONS(1549), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1549), + [anon_sym_EQ_EQ2] = ACTIONS(1549), + [anon_sym_BANG_EQ2] = ACTIONS(1549), + [anon_sym_LT2] = ACTIONS(1549), + [anon_sym_LT_EQ2] = ACTIONS(1549), + [anon_sym_GT_EQ2] = ACTIONS(1549), + [anon_sym_EQ_TILDE2] = ACTIONS(1549), + [anon_sym_BANG_TILDE2] = ACTIONS(1549), + [anon_sym_like2] = ACTIONS(1549), + [anon_sym_not_DASHlike2] = ACTIONS(1549), + [anon_sym_STAR_STAR2] = ACTIONS(1549), + [anon_sym_PLUS_PLUS2] = ACTIONS(1549), + [anon_sym_SLASH2] = ACTIONS(1549), + [anon_sym_mod2] = ACTIONS(1549), + [anon_sym_SLASH_SLASH2] = ACTIONS(1549), + [anon_sym_PLUS2] = ACTIONS(1549), + [anon_sym_bit_DASHshl2] = ACTIONS(1549), + [anon_sym_bit_DASHshr2] = ACTIONS(1549), + [anon_sym_bit_DASHand2] = ACTIONS(1549), + [anon_sym_bit_DASHxor2] = ACTIONS(1549), + [anon_sym_bit_DASHor2] = ACTIONS(1549), + [anon_sym_DOT_DOT2] = ACTIONS(1549), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1551), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1551), + [sym__entry_separator] = ACTIONS(1551), + [anon_sym_COLON2] = ACTIONS(1549), + [anon_sym_DOT2] = ACTIONS(1549), + [anon_sym_err_GT] = ACTIONS(1549), + [anon_sym_out_GT] = ACTIONS(1549), + [anon_sym_e_GT] = ACTIONS(1549), + [anon_sym_o_GT] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT] = ACTIONS(1549), + [anon_sym_err_GT_GT] = ACTIONS(1549), + [anon_sym_out_GT_GT] = ACTIONS(1549), + [anon_sym_e_GT_GT] = ACTIONS(1549), + [anon_sym_o_GT_GT] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1549), [anon_sym_POUND] = ACTIONS(103), }, [STATE(364)] = { - [sym_path] = STATE(339), [sym_comment] = STATE(364), - [aux_sym__where_predicate_lhs_repeat1] = STATE(364), - [anon_sym_EQ] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(1522), [anon_sym_PLUS_EQ] = ACTIONS(1524), [anon_sym_DASH_EQ] = ACTIONS(1524), [anon_sym_STAR_EQ] = ACTIONS(1524), @@ -75893,10 +75908,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_STAR2] = ACTIONS(1524), + [anon_sym_STAR2] = ACTIONS(1522), [anon_sym_and2] = ACTIONS(1524), [anon_sym_xor2] = ACTIONS(1524), [anon_sym_or2] = ACTIONS(1524), @@ -75909,7 +75925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1524), [anon_sym_EQ_EQ2] = ACTIONS(1524), [anon_sym_BANG_EQ2] = ACTIONS(1524), - [anon_sym_LT2] = ACTIONS(1524), + [anon_sym_LT2] = ACTIONS(1522), [anon_sym_LT_EQ2] = ACTIONS(1524), [anon_sym_GT_EQ2] = ACTIONS(1524), [anon_sym_EQ_TILDE2] = ACTIONS(1524), @@ -75917,30 +75933,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1524), [anon_sym_not_DASHlike2] = ACTIONS(1524), [anon_sym_STAR_STAR2] = ACTIONS(1524), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), + [anon_sym_PLUS_PLUS2] = ACTIONS(1522), + [anon_sym_SLASH2] = ACTIONS(1522), [anon_sym_mod2] = ACTIONS(1524), [anon_sym_SLASH_SLASH2] = ACTIONS(1524), - [anon_sym_PLUS2] = ACTIONS(1524), + [anon_sym_PLUS2] = ACTIONS(1522), [anon_sym_bit_DASHshl2] = ACTIONS(1524), [anon_sym_bit_DASHshr2] = ACTIONS(1524), [anon_sym_bit_DASHand2] = ACTIONS(1524), [anon_sym_bit_DASHxor2] = ACTIONS(1524), [anon_sym_bit_DASHor2] = ACTIONS(1524), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [sym__entry_separator] = ACTIONS(1526), + [anon_sym_DOT_DOT2] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), [anon_sym_COLON2] = ACTIONS(1524), - [anon_sym_DOT2] = ACTIONS(1549), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), + [anon_sym_QMARK2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), [anon_sym_err_GT_GT] = ACTIONS(1524), [anon_sym_out_GT_GT] = ACTIONS(1524), [anon_sym_e_GT_GT] = ACTIONS(1524), @@ -75949,2363 +75966,2059 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(365)] = { + [sym_path] = STATE(363), [sym_comment] = STATE(365), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1478), - [anon_sym_DASH_EQ] = ACTIONS(1478), - [anon_sym_STAR_EQ] = ACTIONS(1478), - [anon_sym_SLASH_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [sym__newline] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_err_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_GT_PIPE] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1478), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1478), - [anon_sym_xor2] = ACTIONS(1478), - [anon_sym_or2] = ACTIONS(1478), - [anon_sym_not_DASHin2] = ACTIONS(1478), - [anon_sym_has2] = ACTIONS(1478), - [anon_sym_not_DASHhas2] = ACTIONS(1478), - [anon_sym_starts_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1478), - [anon_sym_ends_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1478), - [anon_sym_EQ_EQ2] = ACTIONS(1478), - [anon_sym_BANG_EQ2] = ACTIONS(1478), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1478), - [anon_sym_GT_EQ2] = ACTIONS(1478), - [anon_sym_EQ_TILDE2] = ACTIONS(1478), - [anon_sym_BANG_TILDE2] = ACTIONS(1478), - [anon_sym_like2] = ACTIONS(1478), - [anon_sym_not_DASHlike2] = ACTIONS(1478), - [anon_sym_STAR_STAR2] = ACTIONS(1478), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1478), - [anon_sym_SLASH_SLASH2] = ACTIONS(1478), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1478), - [anon_sym_bit_DASHshr2] = ACTIONS(1478), - [anon_sym_bit_DASHand2] = ACTIONS(1478), - [anon_sym_bit_DASHxor2] = ACTIONS(1478), - [anon_sym_bit_DASHor2] = ACTIONS(1478), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [sym__entry_separator] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1478), - [anon_sym_QMARK2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [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(1478), - [anon_sym_out_GT_GT] = ACTIONS(1478), - [anon_sym_e_GT_GT] = ACTIONS(1478), - [anon_sym_o_GT_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1478), + [aux_sym__where_predicate_lhs_repeat1] = STATE(366), + [anon_sym_EQ] = ACTIONS(1534), + [anon_sym_PLUS_EQ] = ACTIONS(1534), + [anon_sym_DASH_EQ] = ACTIONS(1534), + [anon_sym_STAR_EQ] = ACTIONS(1534), + [anon_sym_SLASH_EQ] = ACTIONS(1534), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1534), + [anon_sym_in] = ACTIONS(1534), + [sym__newline] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_err_GT_PIPE] = ACTIONS(1534), + [anon_sym_out_GT_PIPE] = ACTIONS(1534), + [anon_sym_e_GT_PIPE] = ACTIONS(1534), + [anon_sym_o_GT_PIPE] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1534), + [anon_sym_GT2] = ACTIONS(1534), + [anon_sym_DASH2] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_STAR2] = ACTIONS(1534), + [anon_sym_and2] = ACTIONS(1534), + [anon_sym_xor2] = ACTIONS(1534), + [anon_sym_or2] = ACTIONS(1534), + [anon_sym_not_DASHin2] = ACTIONS(1534), + [anon_sym_has2] = ACTIONS(1534), + [anon_sym_not_DASHhas2] = ACTIONS(1534), + [anon_sym_starts_DASHwith2] = ACTIONS(1534), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1534), + [anon_sym_ends_DASHwith2] = ACTIONS(1534), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1534), + [anon_sym_EQ_EQ2] = ACTIONS(1534), + [anon_sym_BANG_EQ2] = ACTIONS(1534), + [anon_sym_LT2] = ACTIONS(1534), + [anon_sym_LT_EQ2] = ACTIONS(1534), + [anon_sym_GT_EQ2] = ACTIONS(1534), + [anon_sym_EQ_TILDE2] = ACTIONS(1534), + [anon_sym_BANG_TILDE2] = ACTIONS(1534), + [anon_sym_like2] = ACTIONS(1534), + [anon_sym_not_DASHlike2] = ACTIONS(1534), + [anon_sym_STAR_STAR2] = ACTIONS(1534), + [anon_sym_PLUS_PLUS2] = ACTIONS(1534), + [anon_sym_SLASH2] = ACTIONS(1534), + [anon_sym_mod2] = ACTIONS(1534), + [anon_sym_SLASH_SLASH2] = ACTIONS(1534), + [anon_sym_PLUS2] = ACTIONS(1534), + [anon_sym_bit_DASHshl2] = ACTIONS(1534), + [anon_sym_bit_DASHshr2] = ACTIONS(1534), + [anon_sym_bit_DASHand2] = ACTIONS(1534), + [anon_sym_bit_DASHxor2] = ACTIONS(1534), + [anon_sym_bit_DASHor2] = ACTIONS(1534), + [anon_sym_DOT_DOT2] = ACTIONS(1534), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1536), + [sym__entry_separator] = ACTIONS(1536), + [anon_sym_COLON2] = ACTIONS(1534), + [anon_sym_DOT2] = ACTIONS(1464), + [anon_sym_err_GT] = ACTIONS(1534), + [anon_sym_out_GT] = ACTIONS(1534), + [anon_sym_e_GT] = ACTIONS(1534), + [anon_sym_o_GT] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT] = ACTIONS(1534), + [anon_sym_err_GT_GT] = ACTIONS(1534), + [anon_sym_out_GT_GT] = ACTIONS(1534), + [anon_sym_e_GT_GT] = ACTIONS(1534), + [anon_sym_o_GT_GT] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1534), [anon_sym_POUND] = ACTIONS(103), }, [STATE(366)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), + [sym_path] = STATE(363), + [sym_comment] = STATE(366), + [aux_sym__where_predicate_lhs_repeat1] = STATE(366), + [anon_sym_EQ] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1538), + [anon_sym_DASH_EQ] = ACTIONS(1538), + [anon_sym_STAR_EQ] = ACTIONS(1538), + [anon_sym_SLASH_EQ] = ACTIONS(1538), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1538), + [anon_sym_in] = 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_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1538), + [anon_sym_xor2] = ACTIONS(1538), + [anon_sym_or2] = ACTIONS(1538), + [anon_sym_not_DASHin2] = ACTIONS(1538), + [anon_sym_has2] = ACTIONS(1538), + [anon_sym_not_DASHhas2] = ACTIONS(1538), + [anon_sym_starts_DASHwith2] = ACTIONS(1538), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1538), + [anon_sym_ends_DASHwith2] = ACTIONS(1538), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1538), + [anon_sym_EQ_EQ2] = ACTIONS(1538), + [anon_sym_BANG_EQ2] = ACTIONS(1538), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1538), + [anon_sym_GT_EQ2] = ACTIONS(1538), + [anon_sym_EQ_TILDE2] = ACTIONS(1538), + [anon_sym_BANG_TILDE2] = ACTIONS(1538), + [anon_sym_like2] = ACTIONS(1538), + [anon_sym_not_DASHlike2] = ACTIONS(1538), + [anon_sym_STAR_STAR2] = ACTIONS(1538), + [anon_sym_PLUS_PLUS2] = ACTIONS(1538), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1538), + [anon_sym_SLASH_SLASH2] = ACTIONS(1538), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_bit_DASHshl2] = ACTIONS(1538), + [anon_sym_bit_DASHshr2] = ACTIONS(1538), + [anon_sym_bit_DASHand2] = ACTIONS(1538), + [anon_sym_bit_DASHxor2] = ACTIONS(1538), + [anon_sym_bit_DASHor2] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1538), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), + [sym__entry_separator] = ACTIONS(1540), + [anon_sym_COLON2] = ACTIONS(1538), + [anon_sym_DOT2] = ACTIONS(1553), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [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(103), + }, + [STATE(367)] = { + [sym_comment] = STATE(367), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_PLUS_EQ] = ACTIONS(1528), + [anon_sym_DASH_EQ] = ACTIONS(1528), + [anon_sym_STAR_EQ] = ACTIONS(1528), + [anon_sym_SLASH_EQ] = ACTIONS(1528), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1528), + [anon_sym_in] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_GT2] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_STAR2] = ACTIONS(1526), + [anon_sym_and2] = ACTIONS(1528), + [anon_sym_xor2] = ACTIONS(1528), + [anon_sym_or2] = ACTIONS(1528), + [anon_sym_not_DASHin2] = ACTIONS(1528), + [anon_sym_has2] = ACTIONS(1528), + [anon_sym_not_DASHhas2] = ACTIONS(1528), + [anon_sym_starts_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1528), + [anon_sym_ends_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1528), + [anon_sym_EQ_EQ2] = ACTIONS(1528), + [anon_sym_BANG_EQ2] = ACTIONS(1528), + [anon_sym_LT2] = ACTIONS(1526), + [anon_sym_LT_EQ2] = ACTIONS(1528), + [anon_sym_GT_EQ2] = ACTIONS(1528), + [anon_sym_EQ_TILDE2] = ACTIONS(1528), + [anon_sym_BANG_TILDE2] = ACTIONS(1528), + [anon_sym_like2] = ACTIONS(1528), + [anon_sym_not_DASHlike2] = ACTIONS(1528), + [anon_sym_STAR_STAR2] = ACTIONS(1528), + [anon_sym_PLUS_PLUS2] = ACTIONS(1526), + [anon_sym_SLASH2] = ACTIONS(1526), + [anon_sym_mod2] = ACTIONS(1528), + [anon_sym_SLASH_SLASH2] = ACTIONS(1528), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_bit_DASHshl2] = ACTIONS(1528), + [anon_sym_bit_DASHshr2] = ACTIONS(1528), + [anon_sym_bit_DASHand2] = ACTIONS(1528), + [anon_sym_bit_DASHxor2] = ACTIONS(1528), + [anon_sym_bit_DASHor2] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_COLON2] = ACTIONS(1528), + [anon_sym_QMARK2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_DOT2] = ACTIONS(1526), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(368)] = { + [sym_comment] = STATE(368), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1468), + [anon_sym_DASH_EQ] = ACTIONS(1468), + [anon_sym_STAR_EQ] = ACTIONS(1468), + [anon_sym_SLASH_EQ] = ACTIONS(1468), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), + [anon_sym_in] = ACTIONS(1468), + [sym__newline] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_err_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_GT_PIPE] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_GT2] = ACTIONS(1466), + [anon_sym_DASH2] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_STAR2] = ACTIONS(1466), + [anon_sym_and2] = ACTIONS(1468), + [anon_sym_xor2] = ACTIONS(1468), + [anon_sym_or2] = ACTIONS(1468), + [anon_sym_not_DASHin2] = ACTIONS(1468), + [anon_sym_has2] = ACTIONS(1468), + [anon_sym_not_DASHhas2] = ACTIONS(1468), + [anon_sym_starts_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), + [anon_sym_ends_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), + [anon_sym_EQ_EQ2] = ACTIONS(1468), + [anon_sym_BANG_EQ2] = ACTIONS(1468), + [anon_sym_LT2] = ACTIONS(1466), + [anon_sym_LT_EQ2] = ACTIONS(1468), + [anon_sym_GT_EQ2] = ACTIONS(1468), + [anon_sym_EQ_TILDE2] = ACTIONS(1468), + [anon_sym_BANG_TILDE2] = ACTIONS(1468), + [anon_sym_like2] = ACTIONS(1468), + [anon_sym_not_DASHlike2] = ACTIONS(1468), + [anon_sym_STAR_STAR2] = ACTIONS(1468), + [anon_sym_PLUS_PLUS2] = ACTIONS(1466), + [anon_sym_SLASH2] = ACTIONS(1466), + [anon_sym_mod2] = ACTIONS(1468), + [anon_sym_SLASH_SLASH2] = ACTIONS(1468), + [anon_sym_PLUS2] = ACTIONS(1466), + [anon_sym_bit_DASHshl2] = ACTIONS(1468), + [anon_sym_bit_DASHshr2] = ACTIONS(1468), + [anon_sym_bit_DASHand2] = ACTIONS(1468), + [anon_sym_bit_DASHxor2] = ACTIONS(1468), + [anon_sym_bit_DASHor2] = ACTIONS(1468), + [anon_sym_DOT_DOT2] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), + [anon_sym_COLON2] = ACTIONS(1468), + [anon_sym_QMARK2] = ACTIONS(1556), + [anon_sym_DOT2] = ACTIONS(1466), + [anon_sym_err_GT] = ACTIONS(1466), + [anon_sym_out_GT] = ACTIONS(1466), + [anon_sym_e_GT] = ACTIONS(1466), + [anon_sym_o_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT] = ACTIONS(1466), + [anon_sym_err_GT_GT] = ACTIONS(1468), + [anon_sym_out_GT_GT] = ACTIONS(1468), + [anon_sym_e_GT_GT] = ACTIONS(1468), + [anon_sym_o_GT_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(369)] = { + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), [sym_val_cellpath] = STATE(4536), [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), [sym_val_duration] = STATE(4536), [sym_val_filesize] = STATE(4536), [sym_val_binary] = STATE(4536), [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4934), - [sym_val_entry] = STATE(4451), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4536), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(4811), + [sym_val_entry] = STATE(4552), [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3650), [sym_val_table] = STATE(4536), [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(366), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(369), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), }, - [STATE(367)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), + [STATE(370)] = { + [sym_cell_path] = STATE(435), + [sym_path] = STATE(426), + [sym_comment] = STATE(370), + [aux_sym__where_predicate_lhs_repeat1] = STATE(394), + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_EQ] = ACTIONS(1460), + [anon_sym_PLUS_EQ] = ACTIONS(1462), + [anon_sym_DASH_EQ] = ACTIONS(1462), + [anon_sym_STAR_EQ] = ACTIONS(1462), + [anon_sym_SLASH_EQ] = ACTIONS(1462), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1462), + [anon_sym_in] = ACTIONS(1462), + [sym__newline] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_err_GT_PIPE] = ACTIONS(1462), + [anon_sym_out_GT_PIPE] = ACTIONS(1462), + [anon_sym_e_GT_PIPE] = ACTIONS(1462), + [anon_sym_o_GT_PIPE] = ACTIONS(1462), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1462), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1462), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1462), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1462), + [anon_sym_GT2] = ACTIONS(1460), + [anon_sym_DASH2] = ACTIONS(1460), + [anon_sym_STAR2] = ACTIONS(1460), + [anon_sym_and2] = ACTIONS(1462), + [anon_sym_xor2] = ACTIONS(1462), + [anon_sym_or2] = ACTIONS(1462), + [anon_sym_not_DASHin2] = ACTIONS(1462), + [anon_sym_has2] = ACTIONS(1462), + [anon_sym_not_DASHhas2] = ACTIONS(1462), + [anon_sym_starts_DASHwith2] = ACTIONS(1462), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1462), + [anon_sym_ends_DASHwith2] = ACTIONS(1462), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1462), + [anon_sym_EQ_EQ2] = ACTIONS(1462), + [anon_sym_BANG_EQ2] = ACTIONS(1462), + [anon_sym_LT2] = ACTIONS(1460), + [anon_sym_LT_EQ2] = ACTIONS(1462), + [anon_sym_GT_EQ2] = ACTIONS(1462), + [anon_sym_EQ_TILDE2] = ACTIONS(1462), + [anon_sym_BANG_TILDE2] = ACTIONS(1462), + [anon_sym_like2] = ACTIONS(1462), + [anon_sym_not_DASHlike2] = ACTIONS(1462), + [anon_sym_STAR_STAR2] = ACTIONS(1462), + [anon_sym_PLUS_PLUS2] = ACTIONS(1460), + [anon_sym_SLASH2] = ACTIONS(1460), + [anon_sym_mod2] = ACTIONS(1462), + [anon_sym_SLASH_SLASH2] = ACTIONS(1462), + [anon_sym_PLUS2] = ACTIONS(1460), + [anon_sym_bit_DASHshl2] = ACTIONS(1462), + [anon_sym_bit_DASHshr2] = ACTIONS(1462), + [anon_sym_bit_DASHand2] = ACTIONS(1462), + [anon_sym_bit_DASHxor2] = ACTIONS(1462), + [anon_sym_bit_DASHor2] = ACTIONS(1462), + [anon_sym_DOT_DOT2] = ACTIONS(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [anon_sym_DOT2] = ACTIONS(1562), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [anon_sym_err_GT_GT] = ACTIONS(1462), + [anon_sym_out_GT_GT] = ACTIONS(1462), + [anon_sym_e_GT_GT] = ACTIONS(1462), + [anon_sym_o_GT_GT] = ACTIONS(1462), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1462), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1462), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1462), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(371)] = { + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), [sym_val_cellpath] = STATE(4536), [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), [sym_val_duration] = STATE(4536), [sym_val_filesize] = STATE(4536), [sym_val_binary] = STATE(4536), [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4461), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5014), - [sym_val_entry] = STATE(4451), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4536), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(4928), + [sym_val_entry] = STATE(4552), [sym_val_record] = STATE(4536), - [sym__table_head] = STATE(3728), [sym_val_table] = STATE(4536), [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(367), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(371), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(368)] = { - [sym_comment] = STATE(368), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1556), - [anon_sym_DASH_EQ] = ACTIONS(1556), - [anon_sym_STAR_EQ] = ACTIONS(1556), - [anon_sym_SLASH_EQ] = ACTIONS(1556), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1556), - [anon_sym_in] = 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_RBRACK] = ACTIONS(1556), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1556), - [anon_sym_xor2] = ACTIONS(1556), - [anon_sym_or2] = ACTIONS(1556), - [anon_sym_not_DASHin2] = ACTIONS(1556), - [anon_sym_has2] = ACTIONS(1556), - [anon_sym_not_DASHhas2] = ACTIONS(1556), - [anon_sym_starts_DASHwith2] = ACTIONS(1556), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1556), - [anon_sym_ends_DASHwith2] = ACTIONS(1556), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1556), - [anon_sym_EQ_EQ2] = ACTIONS(1556), - [anon_sym_BANG_EQ2] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1556), - [anon_sym_GT_EQ2] = ACTIONS(1556), - [anon_sym_EQ_TILDE2] = ACTIONS(1556), - [anon_sym_BANG_TILDE2] = ACTIONS(1556), - [anon_sym_like2] = ACTIONS(1556), - [anon_sym_not_DASHlike2] = ACTIONS(1556), - [anon_sym_STAR_STAR2] = ACTIONS(1556), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1556), - [anon_sym_SLASH_SLASH2] = ACTIONS(1556), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1556), - [anon_sym_bit_DASHshr2] = ACTIONS(1556), - [anon_sym_bit_DASHand2] = ACTIONS(1556), - [anon_sym_bit_DASHxor2] = ACTIONS(1556), - [anon_sym_bit_DASHor2] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [sym__entry_separator] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [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(103), - }, - [STATE(369)] = { - [sym_comment] = STATE(369), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(370)] = { - [sym_cell_path] = STATE(453), - [sym_path] = STATE(417), - [sym_comment] = STATE(370), - [aux_sym__where_predicate_lhs_repeat1] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(1434), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_PLUS_EQ] = ACTIONS(1434), - [anon_sym_DASH_EQ] = ACTIONS(1434), - [anon_sym_STAR_EQ] = ACTIONS(1434), - [anon_sym_SLASH_EQ] = ACTIONS(1434), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1432), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1432), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1562), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(371)] = { - [sym__match_pattern_expression] = STATE(4290), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4575), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4576), - [sym_val_bool] = STATE(4022), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4576), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4576), - [sym_val_filesize] = STATE(4576), - [sym_val_binary] = STATE(4576), - [sym_val_string] = STATE(4576), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4583), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4576), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(3774), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(371), - [aux_sym__types_body_repeat1] = STATE(2117), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1424), - [aux_sym_list_body_repeat1] = STATE(630), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1568), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), }, [STATE(372)] = { [sym_comment] = STATE(372), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1570), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(373)] = { - [sym_comment] = STATE(373), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1438), - [anon_sym_DASH_EQ] = ACTIONS(1438), - [anon_sym_STAR_EQ] = ACTIONS(1438), - [anon_sym_SLASH_EQ] = ACTIONS(1438), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1438), - [anon_sym_in] = ACTIONS(1438), - [sym__newline] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_err_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_GT_PIPE] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1438), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1438), - [anon_sym_xor2] = ACTIONS(1438), - [anon_sym_or2] = ACTIONS(1438), - [anon_sym_not_DASHin2] = ACTIONS(1438), - [anon_sym_has2] = ACTIONS(1438), - [anon_sym_not_DASHhas2] = ACTIONS(1438), - [anon_sym_starts_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1438), - [anon_sym_ends_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1438), - [anon_sym_EQ_EQ2] = ACTIONS(1438), - [anon_sym_BANG_EQ2] = ACTIONS(1438), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1438), - [anon_sym_GT_EQ2] = ACTIONS(1438), - [anon_sym_EQ_TILDE2] = ACTIONS(1438), - [anon_sym_BANG_TILDE2] = ACTIONS(1438), - [anon_sym_like2] = ACTIONS(1438), - [anon_sym_not_DASHlike2] = ACTIONS(1438), - [anon_sym_STAR_STAR2] = ACTIONS(1438), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1438), - [anon_sym_SLASH_SLASH2] = ACTIONS(1438), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1438), - [anon_sym_bit_DASHshr2] = ACTIONS(1438), - [anon_sym_bit_DASHand2] = ACTIONS(1438), - [anon_sym_bit_DASHxor2] = ACTIONS(1438), - [anon_sym_bit_DASHor2] = ACTIONS(1438), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [sym__entry_separator] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1438), - [anon_sym_out_GT_GT] = ACTIONS(1438), - [anon_sym_e_GT_GT] = ACTIONS(1438), - [anon_sym_o_GT_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1466), + [anon_sym_in] = ACTIONS(1466), + [sym__newline] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_err_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_GT_PIPE] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), + [anon_sym_GT2] = ACTIONS(1466), + [anon_sym_DASH2] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_STAR2] = ACTIONS(1466), + [anon_sym_and2] = ACTIONS(1466), + [anon_sym_xor2] = ACTIONS(1466), + [anon_sym_or2] = ACTIONS(1466), + [anon_sym_not_DASHin2] = ACTIONS(1466), + [anon_sym_has2] = ACTIONS(1466), + [anon_sym_not_DASHhas2] = ACTIONS(1466), + [anon_sym_starts_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), + [anon_sym_ends_DASHwith2] = ACTIONS(1466), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), + [anon_sym_EQ_EQ2] = ACTIONS(1466), + [anon_sym_BANG_EQ2] = ACTIONS(1466), + [anon_sym_LT2] = ACTIONS(1466), + [anon_sym_LT_EQ2] = ACTIONS(1466), + [anon_sym_GT_EQ2] = ACTIONS(1466), + [anon_sym_EQ_TILDE2] = ACTIONS(1466), + [anon_sym_BANG_TILDE2] = ACTIONS(1466), + [anon_sym_like2] = ACTIONS(1466), + [anon_sym_not_DASHlike2] = ACTIONS(1466), + [anon_sym_STAR_STAR2] = ACTIONS(1466), + [anon_sym_PLUS_PLUS2] = ACTIONS(1466), + [anon_sym_SLASH2] = ACTIONS(1466), + [anon_sym_mod2] = ACTIONS(1466), + [anon_sym_SLASH_SLASH2] = ACTIONS(1466), + [anon_sym_PLUS2] = ACTIONS(1466), + [anon_sym_bit_DASHshl2] = ACTIONS(1466), + [anon_sym_bit_DASHshr2] = ACTIONS(1466), + [anon_sym_bit_DASHand2] = ACTIONS(1466), + [anon_sym_bit_DASHxor2] = ACTIONS(1466), + [anon_sym_bit_DASHor2] = ACTIONS(1466), + [anon_sym_DOT_DOT2] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), + [sym__entry_separator] = ACTIONS(1468), + [anon_sym_COLON2] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_DOT2] = ACTIONS(1466), + [anon_sym_err_GT] = ACTIONS(1466), + [anon_sym_out_GT] = ACTIONS(1466), + [anon_sym_e_GT] = ACTIONS(1466), + [anon_sym_o_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT] = ACTIONS(1466), + [anon_sym_err_GT_GT] = ACTIONS(1466), + [anon_sym_out_GT_GT] = ACTIONS(1466), + [anon_sym_e_GT_GT] = ACTIONS(1466), + [anon_sym_o_GT_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(374)] = { - [sym__path_suffix] = STATE(432), - [sym_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(375)] = { - [sym_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(376)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), + [STATE(373)] = { + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), [sym_val_cellpath] = STATE(4536), [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), [sym_val_duration] = STATE(4536), [sym_val_filesize] = STATE(4536), [sym_val_binary] = STATE(4536), [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4944), - [sym_val_entry] = STATE(4451), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(4828), + [sym_val_entry] = STATE(4552), [sym_val_record] = STATE(4536), [sym_val_table] = STATE(4536), [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(376), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(373), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), }, - [STATE(377)] = { - [sym__expr_parenthesized_immediate] = STATE(692), - [sym__immediate_decimal] = STATE(675), - [sym_val_variable] = STATE(692), - [sym_comment] = STATE(377), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1590), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [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(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [STATE(374)] = { + [sym_comment] = STATE(374), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_PLUS_EQ] = ACTIONS(1568), + [anon_sym_DASH_EQ] = ACTIONS(1568), + [anon_sym_STAR_EQ] = ACTIONS(1568), + [anon_sym_SLASH_EQ] = ACTIONS(1568), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1568), + [anon_sym_in] = ACTIONS(1568), + [sym__newline] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_err_GT_PIPE] = ACTIONS(1568), + [anon_sym_out_GT_PIPE] = ACTIONS(1568), + [anon_sym_e_GT_PIPE] = ACTIONS(1568), + [anon_sym_o_GT_PIPE] = ACTIONS(1568), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1568), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1568), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1568), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1568), + [anon_sym_RBRACK] = ACTIONS(1568), + [anon_sym_GT2] = ACTIONS(1568), + [anon_sym_DASH2] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(1568), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_STAR2] = ACTIONS(1568), + [anon_sym_and2] = ACTIONS(1568), + [anon_sym_xor2] = ACTIONS(1568), + [anon_sym_or2] = ACTIONS(1568), + [anon_sym_not_DASHin2] = ACTIONS(1568), + [anon_sym_has2] = ACTIONS(1568), + [anon_sym_not_DASHhas2] = ACTIONS(1568), + [anon_sym_starts_DASHwith2] = ACTIONS(1568), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1568), + [anon_sym_ends_DASHwith2] = ACTIONS(1568), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1568), + [anon_sym_EQ_EQ2] = ACTIONS(1568), + [anon_sym_BANG_EQ2] = ACTIONS(1568), + [anon_sym_LT2] = ACTIONS(1568), + [anon_sym_LT_EQ2] = ACTIONS(1568), + [anon_sym_GT_EQ2] = ACTIONS(1568), + [anon_sym_EQ_TILDE2] = ACTIONS(1568), + [anon_sym_BANG_TILDE2] = ACTIONS(1568), + [anon_sym_like2] = ACTIONS(1568), + [anon_sym_not_DASHlike2] = ACTIONS(1568), + [anon_sym_STAR_STAR2] = ACTIONS(1568), + [anon_sym_PLUS_PLUS2] = ACTIONS(1568), + [anon_sym_SLASH2] = ACTIONS(1568), + [anon_sym_mod2] = ACTIONS(1568), + [anon_sym_SLASH_SLASH2] = ACTIONS(1568), + [anon_sym_PLUS2] = ACTIONS(1568), + [anon_sym_bit_DASHshl2] = ACTIONS(1568), + [anon_sym_bit_DASHshr2] = ACTIONS(1568), + [anon_sym_bit_DASHand2] = ACTIONS(1568), + [anon_sym_bit_DASHxor2] = ACTIONS(1568), + [anon_sym_bit_DASHor2] = ACTIONS(1568), + [anon_sym_DOT_DOT2] = ACTIONS(1568), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1570), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1570), + [sym__entry_separator] = ACTIONS(1570), + [anon_sym_COLON2] = ACTIONS(1568), + [anon_sym_err_GT] = ACTIONS(1568), + [anon_sym_out_GT] = ACTIONS(1568), + [anon_sym_e_GT] = ACTIONS(1568), + [anon_sym_o_GT] = ACTIONS(1568), + [anon_sym_err_PLUSout_GT] = ACTIONS(1568), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1568), + [anon_sym_o_PLUSe_GT] = ACTIONS(1568), + [anon_sym_e_PLUSo_GT] = ACTIONS(1568), + [anon_sym_err_GT_GT] = ACTIONS(1568), + [anon_sym_out_GT_GT] = ACTIONS(1568), + [anon_sym_e_GT_GT] = ACTIONS(1568), + [anon_sym_o_GT_GT] = ACTIONS(1568), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1568), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1568), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1568), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1568), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(375)] = { + [sym_comment] = STATE(375), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1468), + [anon_sym_DASH_EQ] = ACTIONS(1468), + [anon_sym_STAR_EQ] = ACTIONS(1468), + [anon_sym_SLASH_EQ] = ACTIONS(1468), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), + [anon_sym_in] = ACTIONS(1468), + [sym__newline] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_err_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_GT_PIPE] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_GT2] = ACTIONS(1466), + [anon_sym_DASH2] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_STAR2] = ACTIONS(1466), + [anon_sym_and2] = ACTIONS(1468), + [anon_sym_xor2] = ACTIONS(1468), + [anon_sym_or2] = ACTIONS(1468), + [anon_sym_not_DASHin2] = ACTIONS(1468), + [anon_sym_has2] = ACTIONS(1468), + [anon_sym_not_DASHhas2] = ACTIONS(1468), + [anon_sym_starts_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), + [anon_sym_ends_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), + [anon_sym_EQ_EQ2] = ACTIONS(1468), + [anon_sym_BANG_EQ2] = ACTIONS(1468), + [anon_sym_LT2] = ACTIONS(1466), + [anon_sym_LT_EQ2] = ACTIONS(1468), + [anon_sym_GT_EQ2] = ACTIONS(1468), + [anon_sym_EQ_TILDE2] = ACTIONS(1468), + [anon_sym_BANG_TILDE2] = ACTIONS(1468), + [anon_sym_like2] = ACTIONS(1468), + [anon_sym_not_DASHlike2] = ACTIONS(1468), + [anon_sym_STAR_STAR2] = ACTIONS(1468), + [anon_sym_PLUS_PLUS2] = ACTIONS(1466), + [anon_sym_SLASH2] = ACTIONS(1466), + [anon_sym_mod2] = ACTIONS(1468), + [anon_sym_SLASH_SLASH2] = ACTIONS(1468), + [anon_sym_PLUS2] = ACTIONS(1466), + [anon_sym_bit_DASHshl2] = ACTIONS(1468), + [anon_sym_bit_DASHshr2] = ACTIONS(1468), + [anon_sym_bit_DASHand2] = ACTIONS(1468), + [anon_sym_bit_DASHxor2] = ACTIONS(1468), + [anon_sym_bit_DASHor2] = ACTIONS(1468), + [anon_sym_DOT_DOT2] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), + [anon_sym_COLON2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_DOT2] = ACTIONS(1466), + [anon_sym_err_GT] = ACTIONS(1466), + [anon_sym_out_GT] = ACTIONS(1466), + [anon_sym_e_GT] = ACTIONS(1466), + [anon_sym_o_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT] = ACTIONS(1466), + [anon_sym_err_GT_GT] = ACTIONS(1468), + [anon_sym_out_GT_GT] = ACTIONS(1468), + [anon_sym_e_GT_GT] = ACTIONS(1468), + [anon_sym_o_GT_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(378)] = { - [sym__expr_parenthesized_immediate] = STATE(698), - [sym__immediate_decimal] = STATE(705), - [sym_val_variable] = STATE(698), - [sym_comment] = STATE(378), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1600), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), + [STATE(376)] = { + [sym__path_suffix] = STATE(413), + [sym_comment] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1478), + [anon_sym_in] = ACTIONS(1478), + [sym__newline] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_err_GT_PIPE] = ACTIONS(1478), + [anon_sym_out_GT_PIPE] = ACTIONS(1478), + [anon_sym_e_GT_PIPE] = ACTIONS(1478), + [anon_sym_o_GT_PIPE] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1478), + [anon_sym_GT2] = ACTIONS(1476), + [anon_sym_DASH2] = ACTIONS(1476), + [anon_sym_STAR2] = ACTIONS(1476), + [anon_sym_and2] = ACTIONS(1478), + [anon_sym_xor2] = ACTIONS(1478), + [anon_sym_or2] = ACTIONS(1478), + [anon_sym_not_DASHin2] = ACTIONS(1478), + [anon_sym_has2] = ACTIONS(1478), + [anon_sym_not_DASHhas2] = ACTIONS(1478), + [anon_sym_starts_DASHwith2] = ACTIONS(1478), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1478), + [anon_sym_ends_DASHwith2] = ACTIONS(1478), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1478), + [anon_sym_EQ_EQ2] = ACTIONS(1478), + [anon_sym_BANG_EQ2] = ACTIONS(1478), + [anon_sym_LT2] = ACTIONS(1476), + [anon_sym_LT_EQ2] = ACTIONS(1478), + [anon_sym_GT_EQ2] = ACTIONS(1478), + [anon_sym_EQ_TILDE2] = ACTIONS(1478), + [anon_sym_BANG_TILDE2] = ACTIONS(1478), + [anon_sym_like2] = ACTIONS(1478), + [anon_sym_not_DASHlike2] = ACTIONS(1478), + [anon_sym_STAR_STAR2] = ACTIONS(1478), + [anon_sym_PLUS_PLUS2] = ACTIONS(1476), + [anon_sym_SLASH2] = ACTIONS(1476), + [anon_sym_mod2] = ACTIONS(1478), + [anon_sym_SLASH_SLASH2] = ACTIONS(1478), + [anon_sym_PLUS2] = ACTIONS(1476), + [anon_sym_bit_DASHshl2] = ACTIONS(1478), + [anon_sym_bit_DASHshr2] = ACTIONS(1478), + [anon_sym_bit_DASHand2] = ACTIONS(1478), + [anon_sym_bit_DASHxor2] = ACTIONS(1478), + [anon_sym_bit_DASHor2] = ACTIONS(1478), + [anon_sym_DOT_DOT2] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), + [anon_sym_QMARK2] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_DOT2] = ACTIONS(1476), + [anon_sym_err_GT] = ACTIONS(1476), + [anon_sym_out_GT] = ACTIONS(1476), + [anon_sym_e_GT] = ACTIONS(1476), + [anon_sym_o_GT] = ACTIONS(1476), + [anon_sym_err_PLUSout_GT] = ACTIONS(1476), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), + [anon_sym_o_PLUSe_GT] = ACTIONS(1476), + [anon_sym_e_PLUSo_GT] = ACTIONS(1476), + [anon_sym_err_GT_GT] = ACTIONS(1478), + [anon_sym_out_GT_GT] = ACTIONS(1478), + [anon_sym_e_GT_GT] = ACTIONS(1478), + [anon_sym_o_GT_GT] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1478), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(379)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), + [STATE(377)] = { + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), [sym_val_cellpath] = STATE(4536), [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), [sym_val_duration] = STATE(4536), [sym_val_filesize] = STATE(4536), [sym_val_binary] = STATE(4536), [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4870), - [sym_val_entry] = STATE(4451), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(4980), + [sym_val_entry] = STATE(4552), [sym_val_record] = STATE(4536), [sym_val_table] = STATE(4536), [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(379), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(377), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), }, - [STATE(380)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), + [STATE(378)] = { + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), [sym_val_cellpath] = STATE(4536), [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), [sym_val_duration] = STATE(4536), [sym_val_filesize] = STATE(4536), [sym_val_binary] = STATE(4536), [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5080), - [sym_val_entry] = STATE(4451), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(5093), + [sym_val_entry] = STATE(4552), [sym_val_record] = STATE(4536), [sym_val_table] = STATE(4536), [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(380), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(378), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(381)] = { - [sym_path] = STATE(417), - [sym_comment] = STATE(381), - [aux_sym__where_predicate_lhs_repeat1] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_PLUS_EQ] = ACTIONS(1460), - [anon_sym_DASH_EQ] = ACTIONS(1460), - [anon_sym_STAR_EQ] = ACTIONS(1460), - [anon_sym_SLASH_EQ] = ACTIONS(1460), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1460), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1458), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1458), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1562), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(382)] = { - [sym_path] = STATE(417), - [sym_comment] = STATE(382), - [aux_sym__where_predicate_lhs_repeat1] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(1526), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_PLUS_EQ] = ACTIONS(1526), - [anon_sym_DASH_EQ] = ACTIONS(1526), - [anon_sym_STAR_EQ] = ACTIONS(1526), - [anon_sym_SLASH_EQ] = ACTIONS(1526), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1604), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), }, - [STATE(383)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), + [STATE(379)] = { + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), [sym_val_cellpath] = STATE(4536), [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), [sym_val_duration] = STATE(4536), [sym_val_filesize] = STATE(4536), [sym_val_binary] = STATE(4536), [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5091), - [sym_val_entry] = STATE(4451), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(5058), + [sym_val_entry] = STATE(4552), [sym_val_record] = STATE(4536), [sym_val_table] = STATE(4536), [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(383), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(379), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), }, - [STATE(384)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), + [STATE(380)] = { + [sym__match_pattern_expression] = STATE(4296), + [sym__match_pattern_value] = STATE(4519), + [sym__match_pattern_list] = STATE(4520), + [sym__match_pattern_record] = STATE(4521), + [sym_expr_parenthesized] = STATE(3858), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4576), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4577), + [sym_val_bool] = STATE(4024), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3859), [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), + [sym_val_number] = STATE(4577), + [sym__val_number_decimal] = STATE(3391), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4577), + [sym_val_filesize] = STATE(4577), + [sym_val_binary] = STATE(4577), + [sym_val_string] = STATE(4577), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4809), - [sym_val_entry] = STATE(4451), + [sym__spread_list] = STATE(4668), + [sym_val_entry] = STATE(4589), [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), + [sym_val_table] = STATE(4577), [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(384), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [sym__unquoted_in_list] = STATE(3775), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(380), + [aux_sym__types_body_repeat1] = STATE(2122), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1419), + [aux_sym_list_body_repeat1] = STATE(649), + [anon_sym_true] = ACTIONS(1370), + [anon_sym_false] = ACTIONS(1370), + [anon_sym_null] = ACTIONS(1372), + [aux_sym_cmd_identifier_token3] = ACTIONS(1374), + [aux_sym_cmd_identifier_token4] = ACTIONS(1374), + [aux_sym_cmd_identifier_token5] = ACTIONS(1374), + [sym__newline] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_DOT_DOT] = ACTIONS(1584), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1392), + [anon_sym_DOT_DOT_LT] = ACTIONS(1392), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(385)] = { - [sym_comment] = STATE(385), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_decimal_token2] = ACTIONS(1396), + [aux_sym__val_number_decimal_token3] = ACTIONS(1398), + [aux_sym__val_number_decimal_token4] = ACTIONS(1398), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), }, - [STATE(386)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), + [STATE(381)] = { + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), [sym_val_cellpath] = STATE(4536), [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), [sym_val_duration] = STATE(4536), [sym_val_filesize] = STATE(4536), [sym_val_binary] = STATE(4536), [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4980), - [sym_val_entry] = STATE(4451), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(4974), + [sym_val_entry] = STATE(4552), [sym_val_record] = STATE(4536), [sym_val_table] = STATE(4536), [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(386), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(381), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), }, - [STATE(387)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), + [STATE(382)] = { + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), [sym_val_cellpath] = STATE(4536), [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), [sym_val_duration] = STATE(4536), [sym_val_filesize] = STATE(4536), [sym_val_binary] = STATE(4536), [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(4826), - [sym_val_entry] = STATE(4451), + [sym__spread_list] = STATE(4668), + [sym_list_body] = STATE(4817), + [sym__list_body_or_empty] = STATE(5102), + [sym_val_entry] = STATE(4552), [sym_val_record] = STATE(4536), [sym_val_table] = STATE(4536), [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(387), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(382), + [aux_sym__types_body_repeat1] = STATE(455), + [aux_sym_parameter_repeat2] = STATE(4153), + [aux_sym_list_body_repeat1] = STATE(515), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), }, - [STATE(388)] = { - [sym_comment] = STATE(388), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_COLON2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), + [STATE(383)] = { + [sym__expr_parenthesized_immediate] = STATE(677), + [sym__immediate_decimal] = STATE(678), + [sym_val_variable] = STATE(677), + [sym_comment] = STATE(383), + [anon_sym_in] = ACTIONS(1590), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_GT2] = ACTIONS(1594), + [anon_sym_DASH2] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_STAR2] = ACTIONS(1594), + [anon_sym_and2] = ACTIONS(1590), + [anon_sym_xor2] = ACTIONS(1590), + [anon_sym_or2] = ACTIONS(1590), + [anon_sym_not_DASHin2] = ACTIONS(1590), + [anon_sym_has2] = ACTIONS(1590), + [anon_sym_not_DASHhas2] = ACTIONS(1590), + [anon_sym_starts_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1590), + [anon_sym_ends_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1590), + [anon_sym_EQ_EQ2] = ACTIONS(1590), + [anon_sym_BANG_EQ2] = ACTIONS(1590), + [anon_sym_LT2] = ACTIONS(1594), + [anon_sym_LT_EQ2] = ACTIONS(1590), + [anon_sym_GT_EQ2] = ACTIONS(1590), + [anon_sym_EQ_TILDE2] = ACTIONS(1590), + [anon_sym_BANG_TILDE2] = ACTIONS(1590), + [anon_sym_like2] = ACTIONS(1590), + [anon_sym_not_DASHlike2] = ACTIONS(1590), + [anon_sym_LPAREN2] = ACTIONS(1596), + [anon_sym_STAR_STAR2] = ACTIONS(1590), + [anon_sym_PLUS_PLUS2] = ACTIONS(1590), + [anon_sym_SLASH2] = ACTIONS(1594), + [anon_sym_mod2] = ACTIONS(1590), + [anon_sym_SLASH_SLASH2] = ACTIONS(1590), + [anon_sym_PLUS2] = ACTIONS(1594), + [anon_sym_bit_DASHshl2] = ACTIONS(1590), + [anon_sym_bit_DASHshr2] = ACTIONS(1590), + [anon_sym_bit_DASHand2] = ACTIONS(1590), + [anon_sym_bit_DASHxor2] = ACTIONS(1590), + [anon_sym_bit_DASHor2] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1598), + [aux_sym__immediate_decimal_token1] = ACTIONS(1600), + [aux_sym__immediate_decimal_token2] = ACTIONS(1600), + [aux_sym__immediate_decimal_token3] = ACTIONS(1602), + [aux_sym__immediate_decimal_token4] = ACTIONS(1602), + [anon_sym_err_GT] = ACTIONS(1594), + [anon_sym_out_GT] = ACTIONS(1594), + [anon_sym_e_GT] = ACTIONS(1594), + [anon_sym_o_GT] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT] = ACTIONS(1594), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(389)] = { - [sym__expr_parenthesized_immediate] = STATE(698), - [sym__immediate_decimal] = STATE(645), - [sym_val_variable] = STATE(698), - [sym_comment] = STATE(389), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1613), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), + [STATE(384)] = { + [sym_comment] = STATE(384), + [ts_builtin_sym_end] = ACTIONS(1508), + [anon_sym_EQ] = ACTIONS(1506), + [anon_sym_PLUS_EQ] = ACTIONS(1508), + [anon_sym_DASH_EQ] = ACTIONS(1508), + [anon_sym_STAR_EQ] = ACTIONS(1508), + [anon_sym_SLASH_EQ] = ACTIONS(1508), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1508), + [anon_sym_in] = ACTIONS(1508), + [sym__newline] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_GT2] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1506), + [anon_sym_STAR2] = ACTIONS(1506), + [anon_sym_and2] = ACTIONS(1508), + [anon_sym_xor2] = ACTIONS(1508), + [anon_sym_or2] = ACTIONS(1508), + [anon_sym_not_DASHin2] = ACTIONS(1508), + [anon_sym_has2] = ACTIONS(1508), + [anon_sym_not_DASHhas2] = ACTIONS(1508), + [anon_sym_starts_DASHwith2] = ACTIONS(1508), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1508), + [anon_sym_ends_DASHwith2] = ACTIONS(1508), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1508), + [anon_sym_EQ_EQ2] = ACTIONS(1508), + [anon_sym_BANG_EQ2] = ACTIONS(1508), + [anon_sym_LT2] = ACTIONS(1506), + [anon_sym_LT_EQ2] = ACTIONS(1508), + [anon_sym_GT_EQ2] = ACTIONS(1508), + [anon_sym_EQ_TILDE2] = ACTIONS(1508), + [anon_sym_BANG_TILDE2] = ACTIONS(1508), + [anon_sym_like2] = ACTIONS(1508), + [anon_sym_not_DASHlike2] = ACTIONS(1508), + [anon_sym_STAR_STAR2] = ACTIONS(1508), + [anon_sym_PLUS_PLUS2] = ACTIONS(1506), + [anon_sym_SLASH2] = ACTIONS(1506), + [anon_sym_mod2] = ACTIONS(1508), + [anon_sym_SLASH_SLASH2] = ACTIONS(1508), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_bit_DASHshl2] = ACTIONS(1508), + [anon_sym_bit_DASHshr2] = ACTIONS(1508), + [anon_sym_bit_DASHand2] = ACTIONS(1508), + [anon_sym_bit_DASHxor2] = ACTIONS(1508), + [anon_sym_bit_DASHor2] = ACTIONS(1508), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_DOT2] = ACTIONS(1506), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(390)] = { - [sym_comment] = STATE(390), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [STATE(385)] = { + [sym_comment] = STATE(385), + [ts_builtin_sym_end] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_PLUS_EQ] = ACTIONS(1524), + [anon_sym_DASH_EQ] = ACTIONS(1524), + [anon_sym_STAR_EQ] = ACTIONS(1524), + [anon_sym_SLASH_EQ] = ACTIONS(1524), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1524), + [anon_sym_in] = 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_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1522), + [anon_sym_STAR2] = ACTIONS(1522), + [anon_sym_and2] = ACTIONS(1524), + [anon_sym_xor2] = ACTIONS(1524), + [anon_sym_or2] = ACTIONS(1524), + [anon_sym_not_DASHin2] = ACTIONS(1524), + [anon_sym_has2] = ACTIONS(1524), + [anon_sym_not_DASHhas2] = ACTIONS(1524), + [anon_sym_starts_DASHwith2] = ACTIONS(1524), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1524), + [anon_sym_ends_DASHwith2] = ACTIONS(1524), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1524), + [anon_sym_EQ_EQ2] = ACTIONS(1524), + [anon_sym_BANG_EQ2] = ACTIONS(1524), + [anon_sym_LT2] = ACTIONS(1522), + [anon_sym_LT_EQ2] = ACTIONS(1524), + [anon_sym_GT_EQ2] = ACTIONS(1524), + [anon_sym_EQ_TILDE2] = ACTIONS(1524), + [anon_sym_BANG_TILDE2] = ACTIONS(1524), + [anon_sym_like2] = ACTIONS(1524), + [anon_sym_not_DASHlike2] = ACTIONS(1524), + [anon_sym_STAR_STAR2] = ACTIONS(1524), + [anon_sym_PLUS_PLUS2] = ACTIONS(1522), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1524), + [anon_sym_SLASH_SLASH2] = ACTIONS(1524), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_bit_DASHshl2] = ACTIONS(1524), + [anon_sym_bit_DASHshr2] = ACTIONS(1524), + [anon_sym_bit_DASHand2] = ACTIONS(1524), + [anon_sym_bit_DASHxor2] = ACTIONS(1524), + [anon_sym_bit_DASHor2] = ACTIONS(1524), + [anon_sym_DOT_DOT2] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_QMARK2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(391)] = { - [sym_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [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(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), + [STATE(386)] = { + [sym_comment] = STATE(386), + [anon_sym_EQ] = ACTIONS(1549), + [anon_sym_PLUS_EQ] = ACTIONS(1551), + [anon_sym_DASH_EQ] = ACTIONS(1551), + [anon_sym_STAR_EQ] = ACTIONS(1551), + [anon_sym_SLASH_EQ] = ACTIONS(1551), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [sym__newline] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_err_GT_PIPE] = ACTIONS(1551), + [anon_sym_out_GT_PIPE] = ACTIONS(1551), + [anon_sym_e_GT_PIPE] = ACTIONS(1551), + [anon_sym_o_GT_PIPE] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_GT2] = ACTIONS(1549), + [anon_sym_DASH2] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_STAR2] = ACTIONS(1549), + [anon_sym_and2] = ACTIONS(1551), + [anon_sym_xor2] = ACTIONS(1551), + [anon_sym_or2] = ACTIONS(1551), + [anon_sym_not_DASHin2] = ACTIONS(1551), + [anon_sym_has2] = ACTIONS(1551), + [anon_sym_not_DASHhas2] = ACTIONS(1551), + [anon_sym_starts_DASHwith2] = ACTIONS(1551), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1551), + [anon_sym_ends_DASHwith2] = ACTIONS(1551), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1551), + [anon_sym_EQ_EQ2] = ACTIONS(1551), + [anon_sym_BANG_EQ2] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1549), + [anon_sym_LT_EQ2] = ACTIONS(1551), + [anon_sym_GT_EQ2] = ACTIONS(1551), + [anon_sym_EQ_TILDE2] = ACTIONS(1551), + [anon_sym_BANG_TILDE2] = ACTIONS(1551), + [anon_sym_like2] = ACTIONS(1551), + [anon_sym_not_DASHlike2] = ACTIONS(1551), + [anon_sym_STAR_STAR2] = ACTIONS(1551), + [anon_sym_PLUS_PLUS2] = ACTIONS(1549), + [anon_sym_SLASH2] = ACTIONS(1549), + [anon_sym_mod2] = ACTIONS(1551), + [anon_sym_SLASH_SLASH2] = ACTIONS(1551), + [anon_sym_PLUS2] = ACTIONS(1549), + [anon_sym_bit_DASHshl2] = ACTIONS(1551), + [anon_sym_bit_DASHshr2] = ACTIONS(1551), + [anon_sym_bit_DASHand2] = ACTIONS(1551), + [anon_sym_bit_DASHxor2] = ACTIONS(1551), + [anon_sym_bit_DASHor2] = ACTIONS(1551), + [anon_sym_DOT_DOT2] = ACTIONS(1549), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1551), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1551), + [anon_sym_COLON2] = ACTIONS(1551), + [anon_sym_DOT2] = ACTIONS(1549), + [anon_sym_err_GT] = ACTIONS(1549), + [anon_sym_out_GT] = ACTIONS(1549), + [anon_sym_e_GT] = ACTIONS(1549), + [anon_sym_o_GT] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT] = ACTIONS(1549), + [anon_sym_err_GT_GT] = ACTIONS(1551), + [anon_sym_out_GT_GT] = ACTIONS(1551), + [anon_sym_e_GT_GT] = ACTIONS(1551), + [anon_sym_o_GT_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(392)] = { - [sym_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1545), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1545), - [anon_sym_DASH_EQ] = ACTIONS(1545), - [anon_sym_STAR_EQ] = ACTIONS(1545), - [anon_sym_SLASH_EQ] = ACTIONS(1545), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), + [STATE(387)] = { + [sym__expr_parenthesized_immediate] = STATE(677), + [sym__immediate_decimal] = STATE(517), + [sym_val_variable] = STATE(677), + [sym_comment] = STATE(387), + [anon_sym_in] = ACTIONS(1590), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_GT2] = ACTIONS(1594), + [anon_sym_DASH2] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_STAR2] = ACTIONS(1594), + [anon_sym_and2] = ACTIONS(1590), + [anon_sym_xor2] = ACTIONS(1590), + [anon_sym_or2] = ACTIONS(1590), + [anon_sym_not_DASHin2] = ACTIONS(1590), + [anon_sym_has2] = ACTIONS(1590), + [anon_sym_not_DASHhas2] = ACTIONS(1590), + [anon_sym_starts_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1590), + [anon_sym_ends_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1590), + [anon_sym_EQ_EQ2] = ACTIONS(1590), + [anon_sym_BANG_EQ2] = ACTIONS(1590), + [anon_sym_LT2] = ACTIONS(1594), + [anon_sym_LT_EQ2] = ACTIONS(1590), + [anon_sym_GT_EQ2] = ACTIONS(1590), + [anon_sym_EQ_TILDE2] = ACTIONS(1590), + [anon_sym_BANG_TILDE2] = ACTIONS(1590), + [anon_sym_like2] = ACTIONS(1590), + [anon_sym_not_DASHlike2] = ACTIONS(1590), + [anon_sym_LPAREN2] = ACTIONS(1596), + [anon_sym_STAR_STAR2] = ACTIONS(1590), + [anon_sym_PLUS_PLUS2] = ACTIONS(1590), + [anon_sym_SLASH2] = ACTIONS(1594), + [anon_sym_mod2] = ACTIONS(1590), + [anon_sym_SLASH_SLASH2] = ACTIONS(1590), + [anon_sym_PLUS2] = ACTIONS(1594), + [anon_sym_bit_DASHshl2] = ACTIONS(1590), + [anon_sym_bit_DASHshr2] = ACTIONS(1590), + [anon_sym_bit_DASHand2] = ACTIONS(1590), + [anon_sym_bit_DASHxor2] = ACTIONS(1590), + [anon_sym_bit_DASHor2] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1604), + [aux_sym__immediate_decimal_token1] = ACTIONS(1600), + [aux_sym__immediate_decimal_token2] = ACTIONS(1600), + [aux_sym__immediate_decimal_token3] = ACTIONS(1602), + [aux_sym__immediate_decimal_token4] = ACTIONS(1602), + [anon_sym_err_GT] = ACTIONS(1594), + [anon_sym_out_GT] = ACTIONS(1594), + [anon_sym_e_GT] = ACTIONS(1594), + [anon_sym_o_GT] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT] = ACTIONS(1594), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), + [sym__unquoted_pattern] = ACTIONS(1606), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(393)] = { - [sym_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_STAR_EQ] = ACTIONS(1468), - [anon_sym_SLASH_EQ] = ACTIONS(1468), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), + [STATE(388)] = { + [sym_comment] = STATE(388), + [ts_builtin_sym_end] = ACTIONS(1528), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_PLUS_EQ] = ACTIONS(1528), + [anon_sym_DASH_EQ] = ACTIONS(1528), + [anon_sym_STAR_EQ] = ACTIONS(1528), + [anon_sym_SLASH_EQ] = ACTIONS(1528), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1528), + [anon_sym_in] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_GT2] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1526), + [anon_sym_STAR2] = ACTIONS(1526), + [anon_sym_and2] = ACTIONS(1528), + [anon_sym_xor2] = ACTIONS(1528), + [anon_sym_or2] = ACTIONS(1528), + [anon_sym_not_DASHin2] = ACTIONS(1528), + [anon_sym_has2] = ACTIONS(1528), + [anon_sym_not_DASHhas2] = ACTIONS(1528), + [anon_sym_starts_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1528), + [anon_sym_ends_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1528), + [anon_sym_EQ_EQ2] = ACTIONS(1528), + [anon_sym_BANG_EQ2] = ACTIONS(1528), + [anon_sym_LT2] = ACTIONS(1526), + [anon_sym_LT_EQ2] = ACTIONS(1528), + [anon_sym_GT_EQ2] = ACTIONS(1528), + [anon_sym_EQ_TILDE2] = ACTIONS(1528), + [anon_sym_BANG_TILDE2] = ACTIONS(1528), + [anon_sym_like2] = ACTIONS(1528), + [anon_sym_not_DASHlike2] = ACTIONS(1528), + [anon_sym_STAR_STAR2] = ACTIONS(1528), + [anon_sym_PLUS_PLUS2] = ACTIONS(1526), + [anon_sym_SLASH2] = ACTIONS(1526), + [anon_sym_mod2] = ACTIONS(1528), + [anon_sym_SLASH_SLASH2] = ACTIONS(1528), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_bit_DASHshl2] = ACTIONS(1528), + [anon_sym_bit_DASHshr2] = ACTIONS(1528), + [anon_sym_bit_DASHand2] = ACTIONS(1528), + [anon_sym_bit_DASHxor2] = ACTIONS(1528), + [anon_sym_bit_DASHor2] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_QMARK2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_DOT2] = ACTIONS(1526), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(394)] = { - [sym_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_STAR_EQ] = ACTIONS(1472), - [anon_sym_SLASH_EQ] = ACTIONS(1472), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), + [STATE(389)] = { + [sym_comment] = STATE(389), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_PLUS_EQ] = ACTIONS(1547), + [anon_sym_DASH_EQ] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1547), + [anon_sym_SLASH_EQ] = ACTIONS(1547), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1547), + [anon_sym_in] = ACTIONS(1547), + [sym__newline] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_err_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_GT_PIPE] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_GT2] = ACTIONS(1545), + [anon_sym_DASH2] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_STAR2] = ACTIONS(1545), + [anon_sym_and2] = ACTIONS(1547), + [anon_sym_xor2] = ACTIONS(1547), + [anon_sym_or2] = ACTIONS(1547), + [anon_sym_not_DASHin2] = ACTIONS(1547), + [anon_sym_has2] = ACTIONS(1547), + [anon_sym_not_DASHhas2] = ACTIONS(1547), + [anon_sym_starts_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1547), + [anon_sym_ends_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1547), + [anon_sym_EQ_EQ2] = ACTIONS(1547), + [anon_sym_BANG_EQ2] = ACTIONS(1547), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ2] = ACTIONS(1547), + [anon_sym_GT_EQ2] = ACTIONS(1547), + [anon_sym_EQ_TILDE2] = ACTIONS(1547), + [anon_sym_BANG_TILDE2] = ACTIONS(1547), + [anon_sym_like2] = ACTIONS(1547), + [anon_sym_not_DASHlike2] = ACTIONS(1547), + [anon_sym_STAR_STAR2] = ACTIONS(1547), + [anon_sym_PLUS_PLUS2] = ACTIONS(1545), + [anon_sym_SLASH2] = ACTIONS(1545), + [anon_sym_mod2] = ACTIONS(1547), + [anon_sym_SLASH_SLASH2] = ACTIONS(1547), + [anon_sym_PLUS2] = ACTIONS(1545), + [anon_sym_bit_DASHshl2] = ACTIONS(1547), + [anon_sym_bit_DASHshr2] = ACTIONS(1547), + [anon_sym_bit_DASHand2] = ACTIONS(1547), + [anon_sym_bit_DASHxor2] = ACTIONS(1547), + [anon_sym_bit_DASHor2] = ACTIONS(1547), + [anon_sym_DOT_DOT2] = ACTIONS(1545), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), + [anon_sym_COLON2] = ACTIONS(1547), + [anon_sym_DOT2] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), + [anon_sym_err_GT_GT] = ACTIONS(1547), + [anon_sym_out_GT_GT] = ACTIONS(1547), + [anon_sym_e_GT_GT] = ACTIONS(1547), + [anon_sym_o_GT_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1547), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(395)] = { - [sym_comment] = STATE(395), + [STATE(390)] = { + [sym_comment] = STATE(390), + [ts_builtin_sym_end] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_PLUS_EQ] = ACTIONS(1512), + [anon_sym_DASH_EQ] = ACTIONS(1512), + [anon_sym_STAR_EQ] = ACTIONS(1512), + [anon_sym_SLASH_EQ] = ACTIONS(1512), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1512), + [anon_sym_in] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_STAR2] = ACTIONS(1510), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1510), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_like2] = ACTIONS(1512), + [anon_sym_not_DASHlike2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1510), + [anon_sym_SLASH2] = ACTIONS(1510), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_DOT2] = ACTIONS(1510), + [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(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(391)] = { + [sym_comment] = STATE(391), [ts_builtin_sym_end] = ACTIONS(1516), [anon_sym_EQ] = ACTIONS(1514), [anon_sym_PLUS_EQ] = ACTIONS(1516), @@ -78382,166 +78095,478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(392)] = { + [sym_comment] = STATE(392), + [ts_builtin_sym_end] = ACTIONS(1520), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_PLUS_EQ] = ACTIONS(1520), + [anon_sym_DASH_EQ] = ACTIONS(1520), + [anon_sym_STAR_EQ] = ACTIONS(1520), + [anon_sym_SLASH_EQ] = ACTIONS(1520), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1520), + [anon_sym_in] = 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_GT2] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1518), + [anon_sym_STAR2] = ACTIONS(1518), + [anon_sym_and2] = ACTIONS(1520), + [anon_sym_xor2] = ACTIONS(1520), + [anon_sym_or2] = ACTIONS(1520), + [anon_sym_not_DASHin2] = ACTIONS(1520), + [anon_sym_has2] = ACTIONS(1520), + [anon_sym_not_DASHhas2] = ACTIONS(1520), + [anon_sym_starts_DASHwith2] = ACTIONS(1520), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1520), + [anon_sym_ends_DASHwith2] = ACTIONS(1520), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1520), + [anon_sym_EQ_EQ2] = ACTIONS(1520), + [anon_sym_BANG_EQ2] = ACTIONS(1520), + [anon_sym_LT2] = ACTIONS(1518), + [anon_sym_LT_EQ2] = ACTIONS(1520), + [anon_sym_GT_EQ2] = ACTIONS(1520), + [anon_sym_EQ_TILDE2] = ACTIONS(1520), + [anon_sym_BANG_TILDE2] = ACTIONS(1520), + [anon_sym_like2] = ACTIONS(1520), + [anon_sym_not_DASHlike2] = ACTIONS(1520), + [anon_sym_STAR_STAR2] = ACTIONS(1520), + [anon_sym_PLUS_PLUS2] = ACTIONS(1518), + [anon_sym_SLASH2] = ACTIONS(1518), + [anon_sym_mod2] = ACTIONS(1520), + [anon_sym_SLASH_SLASH2] = ACTIONS(1520), + [anon_sym_PLUS2] = ACTIONS(1518), + [anon_sym_bit_DASHshl2] = ACTIONS(1520), + [anon_sym_bit_DASHshr2] = ACTIONS(1520), + [anon_sym_bit_DASHand2] = ACTIONS(1520), + [anon_sym_bit_DASHxor2] = ACTIONS(1520), + [anon_sym_bit_DASHor2] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [anon_sym_QMARK2] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_DOT2] = ACTIONS(1518), + [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(3), + }, + [STATE(393)] = { + [sym_comment] = STATE(393), + [anon_sym_EQ] = ACTIONS(1530), + [anon_sym_PLUS_EQ] = ACTIONS(1532), + [anon_sym_DASH_EQ] = ACTIONS(1532), + [anon_sym_STAR_EQ] = ACTIONS(1532), + [anon_sym_SLASH_EQ] = ACTIONS(1532), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_GT2] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_STAR2] = ACTIONS(1530), + [anon_sym_and2] = ACTIONS(1532), + [anon_sym_xor2] = ACTIONS(1532), + [anon_sym_or2] = ACTIONS(1532), + [anon_sym_not_DASHin2] = ACTIONS(1532), + [anon_sym_has2] = ACTIONS(1532), + [anon_sym_not_DASHhas2] = ACTIONS(1532), + [anon_sym_starts_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1532), + [anon_sym_ends_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1532), + [anon_sym_EQ_EQ2] = ACTIONS(1532), + [anon_sym_BANG_EQ2] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1530), + [anon_sym_LT_EQ2] = ACTIONS(1532), + [anon_sym_GT_EQ2] = ACTIONS(1532), + [anon_sym_EQ_TILDE2] = ACTIONS(1532), + [anon_sym_BANG_TILDE2] = ACTIONS(1532), + [anon_sym_like2] = ACTIONS(1532), + [anon_sym_not_DASHlike2] = ACTIONS(1532), + [anon_sym_STAR_STAR2] = ACTIONS(1532), + [anon_sym_PLUS_PLUS2] = ACTIONS(1530), + [anon_sym_SLASH2] = ACTIONS(1530), + [anon_sym_mod2] = ACTIONS(1532), + [anon_sym_SLASH_SLASH2] = ACTIONS(1532), + [anon_sym_PLUS2] = ACTIONS(1530), + [anon_sym_bit_DASHshl2] = ACTIONS(1532), + [anon_sym_bit_DASHshr2] = ACTIONS(1532), + [anon_sym_bit_DASHand2] = ACTIONS(1532), + [anon_sym_bit_DASHxor2] = ACTIONS(1532), + [anon_sym_bit_DASHor2] = ACTIONS(1532), + [anon_sym_DOT_DOT2] = ACTIONS(1530), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), + [anon_sym_COLON2] = ACTIONS(1532), + [anon_sym_DOT2] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1530), + [anon_sym_out_GT] = ACTIONS(1530), + [anon_sym_e_GT] = ACTIONS(1530), + [anon_sym_o_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT] = ACTIONS(1530), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(394)] = { + [sym_path] = STATE(426), + [sym_comment] = STATE(394), + [aux_sym__where_predicate_lhs_repeat1] = STATE(395), + [ts_builtin_sym_end] = ACTIONS(1536), + [anon_sym_EQ] = ACTIONS(1534), + [anon_sym_PLUS_EQ] = ACTIONS(1536), + [anon_sym_DASH_EQ] = ACTIONS(1536), + [anon_sym_STAR_EQ] = ACTIONS(1536), + [anon_sym_SLASH_EQ] = ACTIONS(1536), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1536), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_err_GT_PIPE] = ACTIONS(1536), + [anon_sym_out_GT_PIPE] = ACTIONS(1536), + [anon_sym_e_GT_PIPE] = ACTIONS(1536), + [anon_sym_o_GT_PIPE] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1536), + [anon_sym_GT2] = ACTIONS(1534), + [anon_sym_DASH2] = ACTIONS(1534), + [anon_sym_STAR2] = ACTIONS(1534), + [anon_sym_and2] = ACTIONS(1536), + [anon_sym_xor2] = ACTIONS(1536), + [anon_sym_or2] = ACTIONS(1536), + [anon_sym_not_DASHin2] = ACTIONS(1536), + [anon_sym_has2] = ACTIONS(1536), + [anon_sym_not_DASHhas2] = ACTIONS(1536), + [anon_sym_starts_DASHwith2] = ACTIONS(1536), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1536), + [anon_sym_ends_DASHwith2] = ACTIONS(1536), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1536), + [anon_sym_EQ_EQ2] = ACTIONS(1536), + [anon_sym_BANG_EQ2] = ACTIONS(1536), + [anon_sym_LT2] = ACTIONS(1534), + [anon_sym_LT_EQ2] = ACTIONS(1536), + [anon_sym_GT_EQ2] = ACTIONS(1536), + [anon_sym_EQ_TILDE2] = ACTIONS(1536), + [anon_sym_BANG_TILDE2] = ACTIONS(1536), + [anon_sym_like2] = ACTIONS(1536), + [anon_sym_not_DASHlike2] = ACTIONS(1536), + [anon_sym_STAR_STAR2] = ACTIONS(1536), + [anon_sym_PLUS_PLUS2] = ACTIONS(1534), + [anon_sym_SLASH2] = ACTIONS(1534), + [anon_sym_mod2] = ACTIONS(1536), + [anon_sym_SLASH_SLASH2] = ACTIONS(1536), + [anon_sym_PLUS2] = ACTIONS(1534), + [anon_sym_bit_DASHshl2] = ACTIONS(1536), + [anon_sym_bit_DASHshr2] = ACTIONS(1536), + [anon_sym_bit_DASHand2] = ACTIONS(1536), + [anon_sym_bit_DASHxor2] = ACTIONS(1536), + [anon_sym_bit_DASHor2] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1534), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1536), + [anon_sym_DOT2] = ACTIONS(1562), + [anon_sym_err_GT] = ACTIONS(1534), + [anon_sym_out_GT] = ACTIONS(1534), + [anon_sym_e_GT] = ACTIONS(1534), + [anon_sym_o_GT] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT] = ACTIONS(1534), + [anon_sym_err_GT_GT] = ACTIONS(1536), + [anon_sym_out_GT_GT] = ACTIONS(1536), + [anon_sym_e_GT_GT] = ACTIONS(1536), + [anon_sym_o_GT_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(395)] = { + [sym_path] = STATE(426), + [sym_comment] = STATE(395), + [aux_sym__where_predicate_lhs_repeat1] = STATE(395), + [ts_builtin_sym_end] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(1540), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1540), + [anon_sym_xor2] = ACTIONS(1540), + [anon_sym_or2] = ACTIONS(1540), + [anon_sym_not_DASHin2] = ACTIONS(1540), + [anon_sym_has2] = ACTIONS(1540), + [anon_sym_not_DASHhas2] = ACTIONS(1540), + [anon_sym_starts_DASHwith2] = ACTIONS(1540), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1540), + [anon_sym_ends_DASHwith2] = ACTIONS(1540), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1540), + [anon_sym_EQ_EQ2] = ACTIONS(1540), + [anon_sym_BANG_EQ2] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1540), + [anon_sym_GT_EQ2] = ACTIONS(1540), + [anon_sym_EQ_TILDE2] = ACTIONS(1540), + [anon_sym_BANG_TILDE2] = ACTIONS(1540), + [anon_sym_like2] = ACTIONS(1540), + [anon_sym_not_DASHlike2] = ACTIONS(1540), + [anon_sym_STAR_STAR2] = ACTIONS(1540), + [anon_sym_PLUS_PLUS2] = ACTIONS(1538), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1540), + [anon_sym_SLASH_SLASH2] = ACTIONS(1540), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_bit_DASHshl2] = ACTIONS(1540), + [anon_sym_bit_DASHshr2] = ACTIONS(1540), + [anon_sym_bit_DASHand2] = ACTIONS(1540), + [anon_sym_bit_DASHxor2] = ACTIONS(1540), + [anon_sym_bit_DASHor2] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1538), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), + [anon_sym_DOT2] = ACTIONS(1608), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(396)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_list_body] = STATE(5056), - [sym_val_entry] = STATE(4451), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), [sym_comment] = STATE(396), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4261), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [aux_sym__types_body_repeat2] = STATE(1476), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_PLUS_EQ] = ACTIONS(1611), + [anon_sym_DASH_EQ] = ACTIONS(1611), + [anon_sym_STAR_EQ] = ACTIONS(1611), + [anon_sym_SLASH_EQ] = ACTIONS(1611), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1611), + [anon_sym_in] = ACTIONS(1613), + [sym__newline] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_PIPE] = ACTIONS(1613), + [anon_sym_err_GT_PIPE] = ACTIONS(1613), + [anon_sym_out_GT_PIPE] = ACTIONS(1613), + [anon_sym_e_GT_PIPE] = ACTIONS(1613), + [anon_sym_o_GT_PIPE] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1613), + [anon_sym_GT2] = ACTIONS(1613), + [anon_sym_DASH2] = ACTIONS(1613), + [anon_sym_RBRACE] = ACTIONS(1615), + [anon_sym_STAR2] = ACTIONS(1613), + [anon_sym_and2] = ACTIONS(1613), + [anon_sym_xor2] = ACTIONS(1613), + [anon_sym_or2] = ACTIONS(1613), + [anon_sym_not_DASHin2] = ACTIONS(1613), + [anon_sym_has2] = ACTIONS(1613), + [anon_sym_not_DASHhas2] = ACTIONS(1613), + [anon_sym_starts_DASHwith2] = ACTIONS(1613), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1613), + [anon_sym_ends_DASHwith2] = ACTIONS(1613), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1613), + [anon_sym_EQ_EQ2] = ACTIONS(1613), + [anon_sym_BANG_EQ2] = ACTIONS(1613), + [anon_sym_LT2] = ACTIONS(1613), + [anon_sym_LT_EQ2] = ACTIONS(1613), + [anon_sym_GT_EQ2] = ACTIONS(1613), + [anon_sym_EQ_TILDE2] = ACTIONS(1613), + [anon_sym_BANG_TILDE2] = ACTIONS(1613), + [anon_sym_like2] = ACTIONS(1613), + [anon_sym_not_DASHlike2] = ACTIONS(1613), + [anon_sym_STAR_STAR2] = ACTIONS(1613), + [anon_sym_PLUS_PLUS2] = ACTIONS(1613), + [anon_sym_SLASH2] = ACTIONS(1613), + [anon_sym_mod2] = ACTIONS(1613), + [anon_sym_SLASH_SLASH2] = ACTIONS(1613), + [anon_sym_PLUS2] = ACTIONS(1613), + [anon_sym_bit_DASHshl2] = ACTIONS(1613), + [anon_sym_bit_DASHshr2] = ACTIONS(1613), + [anon_sym_bit_DASHand2] = ACTIONS(1613), + [anon_sym_bit_DASHxor2] = ACTIONS(1613), + [anon_sym_bit_DASHor2] = ACTIONS(1613), + [anon_sym_DOT_DOT2] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1619), + [sym__entry_separator] = ACTIONS(1621), + [anon_sym_COLON2] = ACTIONS(1623), + [anon_sym_err_GT] = ACTIONS(1613), + [anon_sym_out_GT] = ACTIONS(1613), + [anon_sym_e_GT] = ACTIONS(1613), + [anon_sym_o_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT] = ACTIONS(1613), + [anon_sym_err_GT_GT] = ACTIONS(1613), + [anon_sym_out_GT_GT] = ACTIONS(1613), + [anon_sym_e_GT_GT] = ACTIONS(1613), + [anon_sym_o_GT_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1613), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(397)] = { + [sym__expr_parenthesized_immediate] = STATE(705), + [sym__immediate_decimal] = STATE(710), + [sym_val_variable] = STATE(705), [sym_comment] = STATE(397), - [aux_sym__types_body_repeat2] = STATE(1475), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1617), - [anon_sym_DASH_EQ] = ACTIONS(1617), - [anon_sym_STAR_EQ] = ACTIONS(1617), - [anon_sym_SLASH_EQ] = ACTIONS(1617), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1617), - [anon_sym_in] = ACTIONS(1619), - [sym__newline] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_err_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_GT_PIPE] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1619), - [anon_sym_xor2] = ACTIONS(1619), - [anon_sym_or2] = ACTIONS(1619), - [anon_sym_not_DASHin2] = ACTIONS(1619), - [anon_sym_has2] = ACTIONS(1619), - [anon_sym_not_DASHhas2] = ACTIONS(1619), - [anon_sym_starts_DASHwith2] = ACTIONS(1619), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1619), - [anon_sym_ends_DASHwith2] = ACTIONS(1619), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1619), - [anon_sym_EQ_EQ2] = ACTIONS(1619), - [anon_sym_BANG_EQ2] = ACTIONS(1619), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1619), - [anon_sym_GT_EQ2] = ACTIONS(1619), - [anon_sym_EQ_TILDE2] = ACTIONS(1619), - [anon_sym_BANG_TILDE2] = ACTIONS(1619), - [anon_sym_like2] = ACTIONS(1619), - [anon_sym_not_DASHlike2] = ACTIONS(1619), - [anon_sym_STAR_STAR2] = ACTIONS(1619), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1619), - [anon_sym_SLASH_SLASH2] = ACTIONS(1619), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1619), - [anon_sym_bit_DASHshr2] = ACTIONS(1619), - [anon_sym_bit_DASHand2] = ACTIONS(1619), - [anon_sym_bit_DASHxor2] = ACTIONS(1619), - [anon_sym_bit_DASHor2] = ACTIONS(1619), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [sym__entry_separator] = ACTIONS(1627), - [anon_sym_COLON2] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1619), - [anon_sym_out_GT_GT] = ACTIONS(1619), - [anon_sym_e_GT_GT] = ACTIONS(1619), - [anon_sym_o_GT_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(1625), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_GT2] = ACTIONS(1627), + [anon_sym_DASH2] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_STAR2] = ACTIONS(1627), + [anon_sym_and2] = ACTIONS(1625), + [anon_sym_xor2] = ACTIONS(1625), + [anon_sym_or2] = ACTIONS(1625), + [anon_sym_not_DASHin2] = ACTIONS(1625), + [anon_sym_has2] = ACTIONS(1625), + [anon_sym_not_DASHhas2] = ACTIONS(1625), + [anon_sym_starts_DASHwith2] = ACTIONS(1625), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1625), + [anon_sym_ends_DASHwith2] = ACTIONS(1625), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1625), + [anon_sym_EQ_EQ2] = ACTIONS(1625), + [anon_sym_BANG_EQ2] = ACTIONS(1625), + [anon_sym_LT2] = ACTIONS(1627), + [anon_sym_LT_EQ2] = ACTIONS(1625), + [anon_sym_GT_EQ2] = ACTIONS(1625), + [anon_sym_EQ_TILDE2] = ACTIONS(1625), + [anon_sym_BANG_TILDE2] = ACTIONS(1625), + [anon_sym_like2] = ACTIONS(1625), + [anon_sym_not_DASHlike2] = ACTIONS(1625), + [anon_sym_LPAREN2] = ACTIONS(1596), + [anon_sym_STAR_STAR2] = ACTIONS(1625), + [anon_sym_PLUS_PLUS2] = ACTIONS(1625), + [anon_sym_SLASH2] = ACTIONS(1627), + [anon_sym_mod2] = ACTIONS(1625), + [anon_sym_SLASH_SLASH2] = ACTIONS(1625), + [anon_sym_PLUS2] = ACTIONS(1627), + [anon_sym_bit_DASHshl2] = ACTIONS(1625), + [anon_sym_bit_DASHshr2] = ACTIONS(1625), + [anon_sym_bit_DASHand2] = ACTIONS(1625), + [anon_sym_bit_DASHxor2] = ACTIONS(1625), + [anon_sym_bit_DASHor2] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1629), + [aux_sym__immediate_decimal_token1] = ACTIONS(1600), + [aux_sym__immediate_decimal_token2] = ACTIONS(1600), + [aux_sym__immediate_decimal_token3] = ACTIONS(1602), + [aux_sym__immediate_decimal_token4] = ACTIONS(1602), + [anon_sym_err_GT] = ACTIONS(1627), + [anon_sym_out_GT] = ACTIONS(1627), + [anon_sym_e_GT] = ACTIONS(1627), + [anon_sym_o_GT] = ACTIONS(1627), + [anon_sym_err_PLUSout_GT] = ACTIONS(1627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1627), + [anon_sym_o_PLUSe_GT] = ACTIONS(1627), + [anon_sym_e_PLUSo_GT] = ACTIONS(1627), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(398)] = { - [sym__expr_parenthesized_immediate] = STATE(742), - [sym__immediate_decimal] = STATE(959), - [sym_val_variable] = STATE(742), + [sym__expr_parenthesized_immediate] = STATE(743), + [sym__immediate_decimal] = STATE(747), + [sym_val_variable] = STATE(743), [sym_comment] = STATE(398), [anon_sym_in] = ACTIONS(1631), [sym__newline] = ACTIONS(1631), @@ -78556,9 +78581,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1592), [anon_sym_GT2] = ACTIONS(1633), [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1631), [anon_sym_RBRACE] = ACTIONS(1631), [anon_sym_STAR2] = ACTIONS(1633), [anon_sym_and2] = ACTIONS(1631), @@ -78580,7 +78606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1631), [anon_sym_like2] = ACTIONS(1631), [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1588), + [anon_sym_LPAREN2] = ACTIONS(1596), [anon_sym_STAR_STAR2] = ACTIONS(1631), [anon_sym_PLUS_PLUS2] = ACTIONS(1631), [anon_sym_SLASH2] = ACTIONS(1633), @@ -78594,8 +78620,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(1631), [aux_sym__immediate_decimal_token1] = ACTIONS(1635), [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1637), - [aux_sym__immediate_decimal_token4] = ACTIONS(1637), + [aux_sym__immediate_decimal_token3] = ACTIONS(1602), + [aux_sym__immediate_decimal_token4] = ACTIONS(1602), [anon_sym_err_GT] = ACTIONS(1633), [anon_sym_out_GT] = ACTIONS(1633), [anon_sym_e_GT] = ACTIONS(1633), @@ -78612,14 +78638,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [sym__unquoted_pattern] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(3), }, [STATE(399)] = { - [sym_cell_path] = STATE(466), - [sym_path] = STATE(441), + [sym__expr_parenthesized_immediate] = STATE(809), + [sym__immediate_decimal] = STATE(946), + [sym_val_variable] = STATE(809), [sym_comment] = STATE(399), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [anon_sym_in] = ACTIONS(1590), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_GT2] = ACTIONS(1594), + [anon_sym_DASH2] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_STAR2] = ACTIONS(1594), + [anon_sym_and2] = ACTIONS(1590), + [anon_sym_xor2] = ACTIONS(1590), + [anon_sym_or2] = ACTIONS(1590), + [anon_sym_not_DASHin2] = ACTIONS(1590), + [anon_sym_has2] = ACTIONS(1590), + [anon_sym_not_DASHhas2] = ACTIONS(1590), + [anon_sym_starts_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1590), + [anon_sym_ends_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1590), + [anon_sym_EQ_EQ2] = ACTIONS(1590), + [anon_sym_BANG_EQ2] = ACTIONS(1590), + [anon_sym_LT2] = ACTIONS(1594), + [anon_sym_LT_EQ2] = ACTIONS(1590), + [anon_sym_GT_EQ2] = ACTIONS(1590), + [anon_sym_EQ_TILDE2] = ACTIONS(1590), + [anon_sym_BANG_TILDE2] = ACTIONS(1590), + [anon_sym_like2] = ACTIONS(1590), + [anon_sym_not_DASHlike2] = ACTIONS(1590), + [anon_sym_LPAREN2] = ACTIONS(1596), + [anon_sym_STAR_STAR2] = ACTIONS(1590), + [anon_sym_PLUS_PLUS2] = ACTIONS(1590), + [anon_sym_SLASH2] = ACTIONS(1594), + [anon_sym_mod2] = ACTIONS(1590), + [anon_sym_SLASH_SLASH2] = ACTIONS(1590), + [anon_sym_PLUS2] = ACTIONS(1594), + [anon_sym_bit_DASHshl2] = ACTIONS(1590), + [anon_sym_bit_DASHshr2] = ACTIONS(1590), + [anon_sym_bit_DASHand2] = ACTIONS(1590), + [anon_sym_bit_DASHxor2] = ACTIONS(1590), + [anon_sym_bit_DASHor2] = ACTIONS(1590), + [aux_sym__immediate_decimal_token1] = ACTIONS(1637), + [aux_sym__immediate_decimal_token2] = ACTIONS(1637), + [aux_sym__immediate_decimal_token3] = ACTIONS(1639), + [aux_sym__immediate_decimal_token4] = ACTIONS(1639), + [anon_sym_err_GT] = ACTIONS(1594), + [anon_sym_out_GT] = ACTIONS(1594), + [anon_sym_e_GT] = ACTIONS(1594), + [anon_sym_o_GT] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT] = ACTIONS(1594), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), + [sym__unquoted_pattern] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(400)] = { + [sym__expr_parenthesized_immediate] = STATE(776), + [sym__immediate_decimal] = STATE(942), + [sym_val_variable] = STATE(776), + [sym_comment] = STATE(400), [anon_sym_in] = ACTIONS(1641), [sym__newline] = ACTIONS(1641), [anon_sym_SEMI] = ACTIONS(1641), @@ -78633,11 +78735,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), [anon_sym_RPAREN] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1592), [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), + [anon_sym_DASH2] = ACTIONS(1643), [anon_sym_LBRACE] = ACTIONS(1641), [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1641), [anon_sym_STAR2] = ACTIONS(1643), [anon_sym_and2] = ACTIONS(1641), [anon_sym_xor2] = ACTIONS(1641), @@ -78658,6 +78760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1641), [anon_sym_like2] = ACTIONS(1641), [anon_sym_not_DASHlike2] = ACTIONS(1641), + [anon_sym_LPAREN2] = ACTIONS(1596), [anon_sym_STAR_STAR2] = ACTIONS(1641), [anon_sym_PLUS_PLUS2] = ACTIONS(1641), [anon_sym_SLASH2] = ACTIONS(1643), @@ -78669,11 +78772,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1641), [anon_sym_bit_DASHxor2] = ACTIONS(1641), [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_COLON2] = ACTIONS(1641), - [anon_sym_DOT2] = ACTIONS(1645), + [aux_sym__immediate_decimal_token1] = ACTIONS(1635), + [aux_sym__immediate_decimal_token2] = ACTIONS(1635), + [aux_sym__immediate_decimal_token3] = ACTIONS(1602), + [aux_sym__immediate_decimal_token4] = ACTIONS(1602), [anon_sym_err_GT] = ACTIONS(1643), [anon_sym_out_GT] = ACTIONS(1643), [anon_sym_e_GT] = ACTIONS(1643), @@ -78692,1617 +78794,1160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(400)] = { - [sym__expr_parenthesized_immediate] = STATE(721), - [sym__immediate_decimal] = STATE(722), - [sym_val_variable] = STATE(721), - [sym_comment] = STATE(400), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [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(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(401)] = { - [sym__expr_parenthesized_immediate] = STATE(929), - [sym__immediate_decimal] = STATE(673), - [sym_val_variable] = STATE(929), + [sym__expr_parenthesized_immediate] = STATE(776), + [sym__immediate_decimal] = STATE(955), + [sym_val_variable] = STATE(776), [sym_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1653), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_in] = ACTIONS(1641), + [sym__newline] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_err_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_GT_PIPE] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), + [anon_sym_RPAREN] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_GT2] = ACTIONS(1643), + [anon_sym_DASH2] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_STAR2] = ACTIONS(1643), + [anon_sym_and2] = ACTIONS(1641), + [anon_sym_xor2] = ACTIONS(1641), + [anon_sym_or2] = ACTIONS(1641), + [anon_sym_not_DASHin2] = ACTIONS(1641), + [anon_sym_has2] = ACTIONS(1641), + [anon_sym_not_DASHhas2] = ACTIONS(1641), + [anon_sym_starts_DASHwith2] = ACTIONS(1641), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), + [anon_sym_ends_DASHwith2] = ACTIONS(1641), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), + [anon_sym_EQ_EQ2] = ACTIONS(1641), + [anon_sym_BANG_EQ2] = ACTIONS(1641), + [anon_sym_LT2] = ACTIONS(1643), + [anon_sym_LT_EQ2] = ACTIONS(1641), + [anon_sym_GT_EQ2] = ACTIONS(1641), + [anon_sym_EQ_TILDE2] = ACTIONS(1641), + [anon_sym_BANG_TILDE2] = ACTIONS(1641), + [anon_sym_like2] = ACTIONS(1641), + [anon_sym_not_DASHlike2] = ACTIONS(1641), + [anon_sym_LPAREN2] = ACTIONS(1596), + [anon_sym_STAR_STAR2] = ACTIONS(1641), + [anon_sym_PLUS_PLUS2] = ACTIONS(1641), + [anon_sym_SLASH2] = ACTIONS(1643), + [anon_sym_mod2] = ACTIONS(1641), + [anon_sym_SLASH_SLASH2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(1643), + [anon_sym_bit_DASHshl2] = ACTIONS(1641), + [anon_sym_bit_DASHshr2] = ACTIONS(1641), + [anon_sym_bit_DASHand2] = ACTIONS(1641), + [anon_sym_bit_DASHxor2] = ACTIONS(1641), + [anon_sym_bit_DASHor2] = ACTIONS(1641), + [aux_sym__immediate_decimal_token1] = ACTIONS(1637), + [aux_sym__immediate_decimal_token2] = ACTIONS(1637), + [aux_sym__immediate_decimal_token3] = ACTIONS(1639), + [aux_sym__immediate_decimal_token4] = ACTIONS(1639), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1641), + [anon_sym_out_GT_GT] = ACTIONS(1641), + [anon_sym_e_GT_GT] = ACTIONS(1641), + [anon_sym_o_GT_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [sym__unquoted_pattern] = ACTIONS(1645), [anon_sym_POUND] = ACTIONS(3), }, [STATE(402)] = { [sym_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1659), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_PLUS_EQ] = ACTIONS(1570), + [anon_sym_DASH_EQ] = ACTIONS(1570), + [anon_sym_STAR_EQ] = ACTIONS(1570), + [anon_sym_SLASH_EQ] = ACTIONS(1570), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1570), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1570), + [anon_sym_GT2] = ACTIONS(1568), + [anon_sym_DASH2] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(1570), + [anon_sym_STAR2] = ACTIONS(1568), + [anon_sym_and2] = ACTIONS(1570), + [anon_sym_xor2] = ACTIONS(1570), + [anon_sym_or2] = ACTIONS(1570), + [anon_sym_not_DASHin2] = ACTIONS(1570), + [anon_sym_has2] = ACTIONS(1570), + [anon_sym_not_DASHhas2] = ACTIONS(1570), + [anon_sym_starts_DASHwith2] = ACTIONS(1570), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1570), + [anon_sym_ends_DASHwith2] = ACTIONS(1570), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1570), + [anon_sym_EQ_EQ2] = ACTIONS(1570), + [anon_sym_BANG_EQ2] = ACTIONS(1570), + [anon_sym_LT2] = ACTIONS(1568), + [anon_sym_LT_EQ2] = ACTIONS(1570), + [anon_sym_GT_EQ2] = ACTIONS(1570), + [anon_sym_EQ_TILDE2] = ACTIONS(1570), + [anon_sym_BANG_TILDE2] = ACTIONS(1570), + [anon_sym_like2] = ACTIONS(1570), + [anon_sym_not_DASHlike2] = ACTIONS(1570), + [anon_sym_STAR_STAR2] = ACTIONS(1570), + [anon_sym_PLUS_PLUS2] = ACTIONS(1568), + [anon_sym_SLASH2] = ACTIONS(1568), + [anon_sym_mod2] = ACTIONS(1570), + [anon_sym_SLASH_SLASH2] = ACTIONS(1570), + [anon_sym_PLUS2] = ACTIONS(1568), + [anon_sym_bit_DASHshl2] = ACTIONS(1570), + [anon_sym_bit_DASHshr2] = ACTIONS(1570), + [anon_sym_bit_DASHand2] = ACTIONS(1570), + [anon_sym_bit_DASHxor2] = ACTIONS(1570), + [anon_sym_bit_DASHor2] = ACTIONS(1570), + [anon_sym_DOT_DOT2] = ACTIONS(1568), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1570), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1570), + [anon_sym_COLON2] = ACTIONS(1570), + [anon_sym_err_GT] = ACTIONS(1568), + [anon_sym_out_GT] = ACTIONS(1568), + [anon_sym_e_GT] = ACTIONS(1568), + [anon_sym_o_GT] = ACTIONS(1568), + [anon_sym_err_PLUSout_GT] = ACTIONS(1568), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1568), + [anon_sym_o_PLUSe_GT] = ACTIONS(1568), + [anon_sym_e_PLUSo_GT] = ACTIONS(1568), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(403)] = { - [sym__expr_parenthesized_immediate] = STATE(723), - [sym__immediate_decimal] = STATE(896), - [sym_val_variable] = STATE(723), + [sym__expr_parenthesized_immediate] = STATE(749), + [sym__immediate_decimal] = STATE(752), + [sym_val_variable] = STATE(749), [sym_comment] = STATE(403), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), + [anon_sym_in] = ACTIONS(1647), + [sym__newline] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_err_GT_PIPE] = ACTIONS(1647), + [anon_sym_out_GT_PIPE] = ACTIONS(1647), + [anon_sym_e_GT_PIPE] = ACTIONS(1647), + [anon_sym_o_GT_PIPE] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_GT2] = ACTIONS(1649), + [anon_sym_DASH2] = ACTIONS(1649), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_STAR2] = ACTIONS(1649), + [anon_sym_and2] = ACTIONS(1647), + [anon_sym_xor2] = ACTIONS(1647), + [anon_sym_or2] = ACTIONS(1647), + [anon_sym_not_DASHin2] = ACTIONS(1647), + [anon_sym_has2] = ACTIONS(1647), + [anon_sym_not_DASHhas2] = ACTIONS(1647), + [anon_sym_starts_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1647), + [anon_sym_ends_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1647), + [anon_sym_EQ_EQ2] = ACTIONS(1647), + [anon_sym_BANG_EQ2] = ACTIONS(1647), + [anon_sym_LT2] = ACTIONS(1649), + [anon_sym_LT_EQ2] = ACTIONS(1647), + [anon_sym_GT_EQ2] = ACTIONS(1647), + [anon_sym_EQ_TILDE2] = ACTIONS(1647), + [anon_sym_BANG_TILDE2] = ACTIONS(1647), + [anon_sym_like2] = ACTIONS(1647), + [anon_sym_not_DASHlike2] = ACTIONS(1647), + [anon_sym_LPAREN2] = ACTIONS(1596), + [anon_sym_STAR_STAR2] = ACTIONS(1647), + [anon_sym_PLUS_PLUS2] = ACTIONS(1647), + [anon_sym_SLASH2] = ACTIONS(1649), + [anon_sym_mod2] = ACTIONS(1647), + [anon_sym_SLASH_SLASH2] = ACTIONS(1647), + [anon_sym_PLUS2] = ACTIONS(1649), + [anon_sym_bit_DASHshl2] = ACTIONS(1647), + [anon_sym_bit_DASHshr2] = ACTIONS(1647), + [anon_sym_bit_DASHand2] = ACTIONS(1647), + [anon_sym_bit_DASHxor2] = ACTIONS(1647), + [anon_sym_bit_DASHor2] = ACTIONS(1647), + [aux_sym__immediate_decimal_token1] = ACTIONS(1635), + [aux_sym__immediate_decimal_token2] = ACTIONS(1635), + [aux_sym__immediate_decimal_token3] = ACTIONS(1602), + [aux_sym__immediate_decimal_token4] = ACTIONS(1602), + [anon_sym_err_GT] = ACTIONS(1649), + [anon_sym_out_GT] = ACTIONS(1649), + [anon_sym_e_GT] = ACTIONS(1649), + [anon_sym_o_GT] = ACTIONS(1649), + [anon_sym_err_PLUSout_GT] = ACTIONS(1649), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1649), + [anon_sym_o_PLUSe_GT] = ACTIONS(1649), + [anon_sym_e_PLUSo_GT] = ACTIONS(1649), + [anon_sym_err_GT_GT] = ACTIONS(1647), + [anon_sym_out_GT_GT] = ACTIONS(1647), + [anon_sym_e_GT_GT] = ACTIONS(1647), + [anon_sym_o_GT_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), [anon_sym_POUND] = ACTIONS(3), }, [STATE(404)] = { + [sym__expr_parenthesized_immediate] = STATE(739), + [sym__immediate_decimal] = STATE(741), + [sym_val_variable] = STATE(739), [sym_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_in] = ACTIONS(1651), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1651), + [anon_sym_xor2] = ACTIONS(1651), + [anon_sym_or2] = ACTIONS(1651), + [anon_sym_not_DASHin2] = ACTIONS(1651), + [anon_sym_has2] = ACTIONS(1651), + [anon_sym_not_DASHhas2] = ACTIONS(1651), + [anon_sym_starts_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), + [anon_sym_ends_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), + [anon_sym_EQ_EQ2] = ACTIONS(1651), + [anon_sym_BANG_EQ2] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1651), + [anon_sym_GT_EQ2] = ACTIONS(1651), + [anon_sym_EQ_TILDE2] = ACTIONS(1651), + [anon_sym_BANG_TILDE2] = ACTIONS(1651), + [anon_sym_like2] = ACTIONS(1651), + [anon_sym_not_DASHlike2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(1596), + [anon_sym_STAR_STAR2] = ACTIONS(1651), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1651), + [anon_sym_SLASH_SLASH2] = ACTIONS(1651), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1651), + [anon_sym_bit_DASHshr2] = ACTIONS(1651), + [anon_sym_bit_DASHand2] = ACTIONS(1651), + [anon_sym_bit_DASHxor2] = ACTIONS(1651), + [anon_sym_bit_DASHor2] = ACTIONS(1651), + [aux_sym__immediate_decimal_token1] = ACTIONS(1635), + [aux_sym__immediate_decimal_token2] = ACTIONS(1635), + [aux_sym__immediate_decimal_token3] = ACTIONS(1602), + [aux_sym__immediate_decimal_token4] = ACTIONS(1602), + [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(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), [anon_sym_POUND] = ACTIONS(3), }, [STATE(405)] = { + [sym_cell_path] = STATE(475), + [sym_path] = STATE(451), [sym_comment] = STATE(405), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1655), + [anon_sym_GT2] = ACTIONS(1657), + [anon_sym_DASH2] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(1655), + [anon_sym_STAR2] = ACTIONS(1657), + [anon_sym_and2] = ACTIONS(1655), + [anon_sym_xor2] = ACTIONS(1655), + [anon_sym_or2] = ACTIONS(1655), + [anon_sym_not_DASHin2] = ACTIONS(1655), + [anon_sym_has2] = ACTIONS(1655), + [anon_sym_not_DASHhas2] = ACTIONS(1655), + [anon_sym_starts_DASHwith2] = ACTIONS(1655), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1655), + [anon_sym_ends_DASHwith2] = ACTIONS(1655), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1655), + [anon_sym_EQ_EQ2] = ACTIONS(1655), + [anon_sym_BANG_EQ2] = ACTIONS(1655), + [anon_sym_LT2] = ACTIONS(1657), + [anon_sym_LT_EQ2] = ACTIONS(1655), + [anon_sym_GT_EQ2] = ACTIONS(1655), + [anon_sym_EQ_TILDE2] = ACTIONS(1655), + [anon_sym_BANG_TILDE2] = ACTIONS(1655), + [anon_sym_like2] = ACTIONS(1655), + [anon_sym_not_DASHlike2] = ACTIONS(1655), + [anon_sym_STAR_STAR2] = ACTIONS(1655), + [anon_sym_PLUS_PLUS2] = ACTIONS(1655), + [anon_sym_SLASH2] = ACTIONS(1657), + [anon_sym_mod2] = ACTIONS(1655), + [anon_sym_SLASH_SLASH2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(1657), + [anon_sym_bit_DASHshl2] = ACTIONS(1655), + [anon_sym_bit_DASHshr2] = ACTIONS(1655), + [anon_sym_bit_DASHand2] = ACTIONS(1655), + [anon_sym_bit_DASHxor2] = ACTIONS(1655), + [anon_sym_bit_DASHor2] = ACTIONS(1655), + [anon_sym_DOT_DOT2] = ACTIONS(1657), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [anon_sym_COLON2] = ACTIONS(1655), + [anon_sym_DOT2] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1657), + [anon_sym_out_GT] = ACTIONS(1657), + [anon_sym_e_GT] = ACTIONS(1657), + [anon_sym_o_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT] = ACTIONS(1657), + [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(3), }, [STATE(406)] = { - [sym__path_suffix] = STATE(437), + [sym__path_suffix] = STATE(434), [sym_comment] = STATE(406), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1448), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1663), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [anon_sym_in] = ACTIONS(1478), + [sym__newline] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_err_GT_PIPE] = ACTIONS(1478), + [anon_sym_out_GT_PIPE] = ACTIONS(1478), + [anon_sym_e_GT_PIPE] = ACTIONS(1478), + [anon_sym_o_GT_PIPE] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_GT2] = ACTIONS(1476), + [anon_sym_DASH2] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_EQ_GT] = ACTIONS(1478), + [anon_sym_STAR2] = ACTIONS(1476), + [anon_sym_and2] = ACTIONS(1478), + [anon_sym_xor2] = ACTIONS(1478), + [anon_sym_or2] = ACTIONS(1478), + [anon_sym_not_DASHin2] = ACTIONS(1478), + [anon_sym_has2] = ACTIONS(1478), + [anon_sym_not_DASHhas2] = ACTIONS(1478), + [anon_sym_starts_DASHwith2] = ACTIONS(1478), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1478), + [anon_sym_ends_DASHwith2] = ACTIONS(1478), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1478), + [anon_sym_EQ_EQ2] = ACTIONS(1478), + [anon_sym_BANG_EQ2] = ACTIONS(1478), + [anon_sym_LT2] = ACTIONS(1476), + [anon_sym_LT_EQ2] = ACTIONS(1478), + [anon_sym_GT_EQ2] = ACTIONS(1478), + [anon_sym_EQ_TILDE2] = ACTIONS(1478), + [anon_sym_BANG_TILDE2] = ACTIONS(1478), + [anon_sym_like2] = ACTIONS(1478), + [anon_sym_not_DASHlike2] = ACTIONS(1478), + [anon_sym_STAR_STAR2] = ACTIONS(1478), + [anon_sym_PLUS_PLUS2] = ACTIONS(1478), + [anon_sym_SLASH2] = ACTIONS(1476), + [anon_sym_mod2] = ACTIONS(1478), + [anon_sym_SLASH_SLASH2] = ACTIONS(1478), + [anon_sym_PLUS2] = ACTIONS(1476), + [anon_sym_bit_DASHshl2] = ACTIONS(1478), + [anon_sym_bit_DASHshr2] = ACTIONS(1478), + [anon_sym_bit_DASHand2] = ACTIONS(1478), + [anon_sym_bit_DASHxor2] = ACTIONS(1478), + [anon_sym_bit_DASHor2] = ACTIONS(1478), + [anon_sym_DOT_DOT2] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), + [anon_sym_COLON2] = ACTIONS(1478), + [anon_sym_QMARK2] = ACTIONS(1661), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_DOT2] = ACTIONS(1476), + [anon_sym_err_GT] = ACTIONS(1476), + [anon_sym_out_GT] = ACTIONS(1476), + [anon_sym_e_GT] = ACTIONS(1476), + [anon_sym_o_GT] = ACTIONS(1476), + [anon_sym_err_PLUSout_GT] = ACTIONS(1476), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), + [anon_sym_o_PLUSe_GT] = ACTIONS(1476), + [anon_sym_e_PLUSo_GT] = ACTIONS(1476), + [anon_sym_err_GT_GT] = ACTIONS(1478), + [anon_sym_out_GT_GT] = ACTIONS(1478), + [anon_sym_e_GT_GT] = ACTIONS(1478), + [anon_sym_o_GT_GT] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1478), [anon_sym_POUND] = ACTIONS(3), }, [STATE(407)] = { - [sym__expr_parenthesized_immediate] = STATE(723), - [sym__immediate_decimal] = STATE(954), - [sym_val_variable] = STATE(723), + [sym_cell_path] = STATE(469), + [sym_path] = STATE(451), [sym_comment] = STATE(407), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1637), - [aux_sym__immediate_decimal_token4] = ACTIONS(1637), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = ACTIONS(1665), + [sym__newline] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_err_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_GT_PIPE] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), + [anon_sym_RPAREN] = ACTIONS(1665), + [anon_sym_GT2] = ACTIONS(1667), + [anon_sym_DASH2] = ACTIONS(1665), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_EQ_GT] = ACTIONS(1665), + [anon_sym_STAR2] = ACTIONS(1667), + [anon_sym_and2] = ACTIONS(1665), + [anon_sym_xor2] = ACTIONS(1665), + [anon_sym_or2] = ACTIONS(1665), + [anon_sym_not_DASHin2] = ACTIONS(1665), + [anon_sym_has2] = ACTIONS(1665), + [anon_sym_not_DASHhas2] = ACTIONS(1665), + [anon_sym_starts_DASHwith2] = ACTIONS(1665), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1665), + [anon_sym_ends_DASHwith2] = ACTIONS(1665), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1665), + [anon_sym_EQ_EQ2] = ACTIONS(1665), + [anon_sym_BANG_EQ2] = ACTIONS(1665), + [anon_sym_LT2] = ACTIONS(1667), + [anon_sym_LT_EQ2] = ACTIONS(1665), + [anon_sym_GT_EQ2] = ACTIONS(1665), + [anon_sym_EQ_TILDE2] = ACTIONS(1665), + [anon_sym_BANG_TILDE2] = ACTIONS(1665), + [anon_sym_like2] = ACTIONS(1665), + [anon_sym_not_DASHlike2] = ACTIONS(1665), + [anon_sym_STAR_STAR2] = ACTIONS(1665), + [anon_sym_PLUS_PLUS2] = ACTIONS(1665), + [anon_sym_SLASH2] = ACTIONS(1667), + [anon_sym_mod2] = ACTIONS(1665), + [anon_sym_SLASH_SLASH2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(1667), + [anon_sym_bit_DASHshl2] = ACTIONS(1665), + [anon_sym_bit_DASHshr2] = ACTIONS(1665), + [anon_sym_bit_DASHand2] = ACTIONS(1665), + [anon_sym_bit_DASHxor2] = ACTIONS(1665), + [anon_sym_bit_DASHor2] = ACTIONS(1665), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1665), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1665), + [anon_sym_COLON2] = ACTIONS(1665), + [anon_sym_DOT2] = ACTIONS(1659), + [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(1665), + [anon_sym_out_GT_GT] = ACTIONS(1665), + [anon_sym_e_GT_GT] = ACTIONS(1665), + [anon_sym_o_GT_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), [anon_sym_POUND] = ACTIONS(3), }, [STATE(408)] = { - [sym__expr_parenthesized_immediate] = STATE(736), - [sym__immediate_decimal] = STATE(737), - [sym_val_variable] = STATE(736), [sym_comment] = STATE(408), - [anon_sym_in] = ACTIONS(1667), - [sym__newline] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_err_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_GT_PIPE] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_has2] = ACTIONS(1667), - [anon_sym_not_DASHhas2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1667), - [anon_sym_GT_EQ2] = ACTIONS(1667), - [anon_sym_EQ_TILDE2] = ACTIONS(1667), - [anon_sym_BANG_TILDE2] = ACTIONS(1667), - [anon_sym_like2] = ACTIONS(1667), - [anon_sym_not_DASHlike2] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1667), - [anon_sym_bit_DASHshr2] = ACTIONS(1667), - [anon_sym_bit_DASHand2] = ACTIONS(1667), - [anon_sym_bit_DASHxor2] = ACTIONS(1667), - [anon_sym_bit_DASHor2] = ACTIONS(1667), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1667), - [anon_sym_out_GT_GT] = ACTIONS(1667), - [anon_sym_e_GT_GT] = ACTIONS(1667), - [anon_sym_o_GT_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(409)] = { - [sym__expr_parenthesized_immediate] = STATE(738), - [sym__immediate_decimal] = STATE(739), - [sym_val_variable] = STATE(738), - [sym_comment] = STATE(409), - [anon_sym_in] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_has2] = ACTIONS(1671), - [anon_sym_not_DASHhas2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_like2] = ACTIONS(1671), - [anon_sym_not_DASHlike2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(410)] = { - [sym__expr_parenthesized_immediate] = STATE(740), - [sym__immediate_decimal] = STATE(741), - [sym_val_variable] = STATE(740), - [sym_comment] = STATE(410), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(411)] = { - [sym__expr_parenthesized_immediate] = STATE(742), - [sym__immediate_decimal] = STATE(925), - [sym_val_variable] = STATE(742), - [sym_comment] = STATE(411), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1468), + [anon_sym_DASH_EQ] = ACTIONS(1468), + [anon_sym_STAR_EQ] = ACTIONS(1468), + [anon_sym_SLASH_EQ] = ACTIONS(1468), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), + [anon_sym_in] = ACTIONS(1468), + [sym__newline] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_err_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_GT_PIPE] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), + [anon_sym_GT2] = ACTIONS(1466), + [anon_sym_DASH2] = ACTIONS(1466), + [anon_sym_STAR2] = ACTIONS(1466), + [anon_sym_and2] = ACTIONS(1468), + [anon_sym_xor2] = ACTIONS(1468), + [anon_sym_or2] = ACTIONS(1468), + [anon_sym_not_DASHin2] = ACTIONS(1468), + [anon_sym_has2] = ACTIONS(1468), + [anon_sym_not_DASHhas2] = ACTIONS(1468), + [anon_sym_starts_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), + [anon_sym_ends_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), + [anon_sym_EQ_EQ2] = ACTIONS(1468), + [anon_sym_BANG_EQ2] = ACTIONS(1468), + [anon_sym_LT2] = ACTIONS(1466), + [anon_sym_LT_EQ2] = ACTIONS(1468), + [anon_sym_GT_EQ2] = ACTIONS(1468), + [anon_sym_EQ_TILDE2] = ACTIONS(1468), + [anon_sym_BANG_TILDE2] = ACTIONS(1468), + [anon_sym_like2] = ACTIONS(1468), + [anon_sym_not_DASHlike2] = ACTIONS(1468), + [anon_sym_STAR_STAR2] = ACTIONS(1468), + [anon_sym_PLUS_PLUS2] = ACTIONS(1466), + [anon_sym_SLASH2] = ACTIONS(1466), + [anon_sym_mod2] = ACTIONS(1468), + [anon_sym_SLASH_SLASH2] = ACTIONS(1468), + [anon_sym_PLUS2] = ACTIONS(1466), + [anon_sym_bit_DASHshl2] = ACTIONS(1468), + [anon_sym_bit_DASHshr2] = ACTIONS(1468), + [anon_sym_bit_DASHand2] = ACTIONS(1468), + [anon_sym_bit_DASHxor2] = ACTIONS(1468), + [anon_sym_bit_DASHor2] = ACTIONS(1468), + [anon_sym_DOT_DOT2] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), + [anon_sym_QMARK2] = ACTIONS(1669), + [anon_sym_DOT2] = ACTIONS(1466), + [anon_sym_err_GT] = ACTIONS(1466), + [anon_sym_out_GT] = ACTIONS(1466), + [anon_sym_e_GT] = ACTIONS(1466), + [anon_sym_o_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT] = ACTIONS(1466), + [anon_sym_err_GT_GT] = ACTIONS(1468), + [anon_sym_out_GT_GT] = ACTIONS(1468), + [anon_sym_e_GT_GT] = ACTIONS(1468), + [anon_sym_o_GT_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(409)] = { + [sym__expr_parenthesized_immediate] = STATE(944), + [sym__immediate_decimal] = STATE(681), + [sym_val_variable] = STATE(944), + [sym_comment] = STATE(409), + [ts_builtin_sym_end] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1594), + [anon_sym_DASH2] = ACTIONS(1594), + [anon_sym_STAR2] = ACTIONS(1594), + [anon_sym_and2] = ACTIONS(1590), + [anon_sym_xor2] = ACTIONS(1590), + [anon_sym_or2] = ACTIONS(1590), + [anon_sym_not_DASHin2] = ACTIONS(1590), + [anon_sym_has2] = ACTIONS(1590), + [anon_sym_not_DASHhas2] = ACTIONS(1590), + [anon_sym_starts_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1590), + [anon_sym_ends_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1590), + [anon_sym_EQ_EQ2] = ACTIONS(1590), + [anon_sym_BANG_EQ2] = ACTIONS(1590), + [anon_sym_LT2] = ACTIONS(1594), + [anon_sym_LT_EQ2] = ACTIONS(1590), + [anon_sym_GT_EQ2] = ACTIONS(1590), + [anon_sym_EQ_TILDE2] = ACTIONS(1590), + [anon_sym_BANG_TILDE2] = ACTIONS(1590), + [anon_sym_like2] = ACTIONS(1590), + [anon_sym_not_DASHlike2] = ACTIONS(1590), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1590), + [anon_sym_PLUS_PLUS2] = ACTIONS(1590), + [anon_sym_SLASH2] = ACTIONS(1594), + [anon_sym_mod2] = ACTIONS(1590), + [anon_sym_SLASH_SLASH2] = ACTIONS(1590), + [anon_sym_PLUS2] = ACTIONS(1594), + [anon_sym_bit_DASHshl2] = ACTIONS(1590), + [anon_sym_bit_DASHshr2] = ACTIONS(1590), + [anon_sym_bit_DASHand2] = ACTIONS(1590), + [anon_sym_bit_DASHxor2] = ACTIONS(1590), + [anon_sym_bit_DASHor2] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1675), + [aux_sym__immediate_decimal_token1] = ACTIONS(1677), + [aux_sym__immediate_decimal_token2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1594), + [anon_sym_out_GT] = ACTIONS(1594), + [anon_sym_e_GT] = ACTIONS(1594), + [anon_sym_o_GT] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT] = ACTIONS(1594), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), + [sym__unquoted_pattern] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(410)] = { + [sym_comment] = STATE(410), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_PLUS_EQ] = ACTIONS(1468), + [anon_sym_DASH_EQ] = ACTIONS(1468), + [anon_sym_STAR_EQ] = ACTIONS(1468), + [anon_sym_SLASH_EQ] = ACTIONS(1468), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), + [anon_sym_in] = ACTIONS(1468), + [sym__newline] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_err_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_GT_PIPE] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), + [anon_sym_GT2] = ACTIONS(1466), + [anon_sym_DASH2] = ACTIONS(1466), + [anon_sym_STAR2] = ACTIONS(1466), + [anon_sym_and2] = ACTIONS(1468), + [anon_sym_xor2] = ACTIONS(1468), + [anon_sym_or2] = ACTIONS(1468), + [anon_sym_not_DASHin2] = ACTIONS(1468), + [anon_sym_has2] = ACTIONS(1468), + [anon_sym_not_DASHhas2] = ACTIONS(1468), + [anon_sym_starts_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), + [anon_sym_ends_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), + [anon_sym_EQ_EQ2] = ACTIONS(1468), + [anon_sym_BANG_EQ2] = ACTIONS(1468), + [anon_sym_LT2] = ACTIONS(1466), + [anon_sym_LT_EQ2] = ACTIONS(1468), + [anon_sym_GT_EQ2] = ACTIONS(1468), + [anon_sym_EQ_TILDE2] = ACTIONS(1468), + [anon_sym_BANG_TILDE2] = ACTIONS(1468), + [anon_sym_like2] = ACTIONS(1468), + [anon_sym_not_DASHlike2] = ACTIONS(1468), + [anon_sym_STAR_STAR2] = ACTIONS(1468), + [anon_sym_PLUS_PLUS2] = ACTIONS(1466), + [anon_sym_SLASH2] = ACTIONS(1466), + [anon_sym_mod2] = ACTIONS(1468), + [anon_sym_SLASH_SLASH2] = ACTIONS(1468), + [anon_sym_PLUS2] = ACTIONS(1466), + [anon_sym_bit_DASHshl2] = ACTIONS(1468), + [anon_sym_bit_DASHshr2] = ACTIONS(1468), + [anon_sym_bit_DASHand2] = ACTIONS(1468), + [anon_sym_bit_DASHxor2] = ACTIONS(1468), + [anon_sym_bit_DASHor2] = ACTIONS(1468), + [anon_sym_DOT_DOT2] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_DOT2] = ACTIONS(1466), + [anon_sym_err_GT] = ACTIONS(1466), + [anon_sym_out_GT] = ACTIONS(1466), + [anon_sym_e_GT] = ACTIONS(1466), + [anon_sym_o_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT] = ACTIONS(1466), + [anon_sym_err_GT_GT] = ACTIONS(1468), + [anon_sym_out_GT_GT] = ACTIONS(1468), + [anon_sym_e_GT_GT] = ACTIONS(1468), + [anon_sym_o_GT_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(411)] = { + [sym__expr_parenthesized_immediate] = STATE(872), + [sym__immediate_decimal] = STATE(873), + [sym_val_variable] = STATE(872), + [sym_comment] = STATE(411), + [anon_sym_in] = ACTIONS(1625), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_RPAREN] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_GT2] = ACTIONS(1627), + [anon_sym_DASH2] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1625), + [anon_sym_STAR2] = ACTIONS(1627), + [anon_sym_and2] = ACTIONS(1625), + [anon_sym_xor2] = ACTIONS(1625), + [anon_sym_or2] = ACTIONS(1625), + [anon_sym_not_DASHin2] = ACTIONS(1625), + [anon_sym_has2] = ACTIONS(1625), + [anon_sym_not_DASHhas2] = ACTIONS(1625), + [anon_sym_starts_DASHwith2] = ACTIONS(1625), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1625), + [anon_sym_ends_DASHwith2] = ACTIONS(1625), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1625), + [anon_sym_EQ_EQ2] = ACTIONS(1625), + [anon_sym_BANG_EQ2] = ACTIONS(1625), + [anon_sym_LT2] = ACTIONS(1627), + [anon_sym_LT_EQ2] = ACTIONS(1625), + [anon_sym_GT_EQ2] = ACTIONS(1625), + [anon_sym_EQ_TILDE2] = ACTIONS(1625), + [anon_sym_BANG_TILDE2] = ACTIONS(1625), + [anon_sym_like2] = ACTIONS(1625), + [anon_sym_not_DASHlike2] = ACTIONS(1625), + [anon_sym_LPAREN2] = ACTIONS(1596), + [anon_sym_STAR_STAR2] = ACTIONS(1625), + [anon_sym_PLUS_PLUS2] = ACTIONS(1625), + [anon_sym_SLASH2] = ACTIONS(1627), + [anon_sym_mod2] = ACTIONS(1625), + [anon_sym_SLASH_SLASH2] = ACTIONS(1625), + [anon_sym_PLUS2] = ACTIONS(1627), + [anon_sym_bit_DASHshl2] = ACTIONS(1625), + [anon_sym_bit_DASHshr2] = ACTIONS(1625), + [anon_sym_bit_DASHand2] = ACTIONS(1625), + [anon_sym_bit_DASHxor2] = ACTIONS(1625), + [anon_sym_bit_DASHor2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(1635), + [aux_sym__immediate_decimal_token2] = ACTIONS(1635), + [aux_sym__immediate_decimal_token3] = ACTIONS(1602), + [aux_sym__immediate_decimal_token4] = ACTIONS(1602), + [anon_sym_err_GT] = ACTIONS(1627), + [anon_sym_out_GT] = ACTIONS(1627), + [anon_sym_e_GT] = ACTIONS(1627), + [anon_sym_o_GT] = ACTIONS(1627), + [anon_sym_err_PLUSout_GT] = ACTIONS(1627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1627), + [anon_sym_o_PLUSe_GT] = ACTIONS(1627), + [anon_sym_e_PLUSo_GT] = ACTIONS(1627), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), [anon_sym_POUND] = ACTIONS(3), }, [STATE(412)] = { - [sym_cell_path] = STATE(465), - [sym_path] = STATE(441), + [sym__expr_parenthesized_immediate] = STATE(809), + [sym__immediate_decimal] = STATE(960), + [sym_val_variable] = STATE(809), [sym_comment] = STATE(412), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1679), - [sym__newline] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_err_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_GT_PIPE] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_EQ_GT] = ACTIONS(1679), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1679), - [anon_sym_xor2] = ACTIONS(1679), - [anon_sym_or2] = ACTIONS(1679), - [anon_sym_not_DASHin2] = ACTIONS(1679), - [anon_sym_has2] = ACTIONS(1679), - [anon_sym_not_DASHhas2] = ACTIONS(1679), - [anon_sym_starts_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1679), - [anon_sym_ends_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1679), - [anon_sym_EQ_EQ2] = ACTIONS(1679), - [anon_sym_BANG_EQ2] = ACTIONS(1679), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1679), - [anon_sym_GT_EQ2] = ACTIONS(1679), - [anon_sym_EQ_TILDE2] = ACTIONS(1679), - [anon_sym_BANG_TILDE2] = ACTIONS(1679), - [anon_sym_like2] = ACTIONS(1679), - [anon_sym_not_DASHlike2] = ACTIONS(1679), - [anon_sym_STAR_STAR2] = ACTIONS(1679), - [anon_sym_PLUS_PLUS2] = ACTIONS(1679), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1679), - [anon_sym_SLASH_SLASH2] = ACTIONS(1679), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1679), - [anon_sym_bit_DASHshr2] = ACTIONS(1679), - [anon_sym_bit_DASHand2] = ACTIONS(1679), - [anon_sym_bit_DASHxor2] = ACTIONS(1679), - [anon_sym_bit_DASHor2] = ACTIONS(1679), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1679), - [anon_sym_COLON2] = ACTIONS(1679), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1679), - [anon_sym_out_GT_GT] = ACTIONS(1679), - [anon_sym_e_GT_GT] = ACTIONS(1679), - [anon_sym_o_GT_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), + [anon_sym_in] = ACTIONS(1590), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_GT2] = ACTIONS(1594), + [anon_sym_DASH2] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_STAR2] = ACTIONS(1594), + [anon_sym_and2] = ACTIONS(1590), + [anon_sym_xor2] = ACTIONS(1590), + [anon_sym_or2] = ACTIONS(1590), + [anon_sym_not_DASHin2] = ACTIONS(1590), + [anon_sym_has2] = ACTIONS(1590), + [anon_sym_not_DASHhas2] = ACTIONS(1590), + [anon_sym_starts_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1590), + [anon_sym_ends_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1590), + [anon_sym_EQ_EQ2] = ACTIONS(1590), + [anon_sym_BANG_EQ2] = ACTIONS(1590), + [anon_sym_LT2] = ACTIONS(1594), + [anon_sym_LT_EQ2] = ACTIONS(1590), + [anon_sym_GT_EQ2] = ACTIONS(1590), + [anon_sym_EQ_TILDE2] = ACTIONS(1590), + [anon_sym_BANG_TILDE2] = ACTIONS(1590), + [anon_sym_like2] = ACTIONS(1590), + [anon_sym_not_DASHlike2] = ACTIONS(1590), + [anon_sym_LPAREN2] = ACTIONS(1596), + [anon_sym_STAR_STAR2] = ACTIONS(1590), + [anon_sym_PLUS_PLUS2] = ACTIONS(1590), + [anon_sym_SLASH2] = ACTIONS(1594), + [anon_sym_mod2] = ACTIONS(1590), + [anon_sym_SLASH_SLASH2] = ACTIONS(1590), + [anon_sym_PLUS2] = ACTIONS(1594), + [anon_sym_bit_DASHshl2] = ACTIONS(1590), + [anon_sym_bit_DASHshr2] = ACTIONS(1590), + [anon_sym_bit_DASHand2] = ACTIONS(1590), + [anon_sym_bit_DASHxor2] = ACTIONS(1590), + [anon_sym_bit_DASHor2] = ACTIONS(1590), + [aux_sym__immediate_decimal_token1] = ACTIONS(1635), + [aux_sym__immediate_decimal_token2] = ACTIONS(1635), + [aux_sym__immediate_decimal_token3] = ACTIONS(1602), + [aux_sym__immediate_decimal_token4] = ACTIONS(1602), + [anon_sym_err_GT] = ACTIONS(1594), + [anon_sym_out_GT] = ACTIONS(1594), + [anon_sym_e_GT] = ACTIONS(1594), + [anon_sym_o_GT] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT] = ACTIONS(1594), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), [anon_sym_POUND] = ACTIONS(3), }, [STATE(413)] = { [sym_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [ts_builtin_sym_end] = ACTIONS(1547), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_PLUS_EQ] = ACTIONS(1547), + [anon_sym_DASH_EQ] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1547), + [anon_sym_SLASH_EQ] = ACTIONS(1547), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1547), + [anon_sym_in] = ACTIONS(1547), + [sym__newline] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_err_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_GT_PIPE] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1547), + [anon_sym_GT2] = ACTIONS(1545), + [anon_sym_DASH2] = ACTIONS(1545), + [anon_sym_STAR2] = ACTIONS(1545), + [anon_sym_and2] = ACTIONS(1547), + [anon_sym_xor2] = ACTIONS(1547), + [anon_sym_or2] = ACTIONS(1547), + [anon_sym_not_DASHin2] = ACTIONS(1547), + [anon_sym_has2] = ACTIONS(1547), + [anon_sym_not_DASHhas2] = ACTIONS(1547), + [anon_sym_starts_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1547), + [anon_sym_ends_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1547), + [anon_sym_EQ_EQ2] = ACTIONS(1547), + [anon_sym_BANG_EQ2] = ACTIONS(1547), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ2] = ACTIONS(1547), + [anon_sym_GT_EQ2] = ACTIONS(1547), + [anon_sym_EQ_TILDE2] = ACTIONS(1547), + [anon_sym_BANG_TILDE2] = ACTIONS(1547), + [anon_sym_like2] = ACTIONS(1547), + [anon_sym_not_DASHlike2] = ACTIONS(1547), + [anon_sym_STAR_STAR2] = ACTIONS(1547), + [anon_sym_PLUS_PLUS2] = ACTIONS(1545), + [anon_sym_SLASH2] = ACTIONS(1545), + [anon_sym_mod2] = ACTIONS(1547), + [anon_sym_SLASH_SLASH2] = ACTIONS(1547), + [anon_sym_PLUS2] = ACTIONS(1545), + [anon_sym_bit_DASHshl2] = ACTIONS(1547), + [anon_sym_bit_DASHshr2] = ACTIONS(1547), + [anon_sym_bit_DASHand2] = ACTIONS(1547), + [anon_sym_bit_DASHxor2] = ACTIONS(1547), + [anon_sym_bit_DASHor2] = ACTIONS(1547), + [anon_sym_DOT_DOT2] = ACTIONS(1545), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), + [anon_sym_DOT2] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), + [anon_sym_err_GT_GT] = ACTIONS(1547), + [anon_sym_out_GT_GT] = ACTIONS(1547), + [anon_sym_e_GT_GT] = ACTIONS(1547), + [anon_sym_o_GT_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1547), [anon_sym_POUND] = ACTIONS(3), }, [STATE(414)] = { - [sym_cell_path] = STATE(492), - [sym_path] = STATE(441), [sym_comment] = STATE(414), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_EQ_GT] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1434), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_in] = ACTIONS(1468), + [sym__newline] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_err_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_GT_PIPE] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_GT2] = ACTIONS(1466), + [anon_sym_DASH2] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_EQ_GT] = ACTIONS(1468), + [anon_sym_STAR2] = ACTIONS(1466), + [anon_sym_and2] = ACTIONS(1468), + [anon_sym_xor2] = ACTIONS(1468), + [anon_sym_or2] = ACTIONS(1468), + [anon_sym_not_DASHin2] = ACTIONS(1468), + [anon_sym_has2] = ACTIONS(1468), + [anon_sym_not_DASHhas2] = ACTIONS(1468), + [anon_sym_starts_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), + [anon_sym_ends_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), + [anon_sym_EQ_EQ2] = ACTIONS(1468), + [anon_sym_BANG_EQ2] = ACTIONS(1468), + [anon_sym_LT2] = ACTIONS(1466), + [anon_sym_LT_EQ2] = ACTIONS(1468), + [anon_sym_GT_EQ2] = ACTIONS(1468), + [anon_sym_EQ_TILDE2] = ACTIONS(1468), + [anon_sym_BANG_TILDE2] = ACTIONS(1468), + [anon_sym_like2] = ACTIONS(1468), + [anon_sym_not_DASHlike2] = ACTIONS(1468), + [anon_sym_STAR_STAR2] = ACTIONS(1468), + [anon_sym_PLUS_PLUS2] = ACTIONS(1468), + [anon_sym_SLASH2] = ACTIONS(1466), + [anon_sym_mod2] = ACTIONS(1468), + [anon_sym_SLASH_SLASH2] = ACTIONS(1468), + [anon_sym_PLUS2] = ACTIONS(1466), + [anon_sym_bit_DASHshl2] = ACTIONS(1468), + [anon_sym_bit_DASHshr2] = ACTIONS(1468), + [anon_sym_bit_DASHand2] = ACTIONS(1468), + [anon_sym_bit_DASHxor2] = ACTIONS(1468), + [anon_sym_bit_DASHor2] = ACTIONS(1468), + [anon_sym_DOT_DOT2] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), + [anon_sym_COLON2] = ACTIONS(1468), + [anon_sym_QMARK2] = ACTIONS(1683), + [anon_sym_DOT2] = ACTIONS(1466), + [anon_sym_err_GT] = ACTIONS(1466), + [anon_sym_out_GT] = ACTIONS(1466), + [anon_sym_e_GT] = ACTIONS(1466), + [anon_sym_o_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT] = ACTIONS(1466), + [anon_sym_err_GT_GT] = ACTIONS(1468), + [anon_sym_out_GT_GT] = ACTIONS(1468), + [anon_sym_e_GT_GT] = ACTIONS(1468), + [anon_sym_o_GT_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), [anon_sym_POUND] = ACTIONS(3), }, [STATE(415)] = { [sym_comment] = STATE(415), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_EQ_GT] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1480), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [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(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), + [anon_sym_in] = ACTIONS(749), + [sym__newline] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_err_GT_PIPE] = ACTIONS(749), + [anon_sym_out_GT_PIPE] = ACTIONS(749), + [anon_sym_e_GT_PIPE] = ACTIONS(749), + [anon_sym_o_GT_PIPE] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(749), + [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(749), + [anon_sym_xor2] = ACTIONS(749), + [anon_sym_or2] = ACTIONS(749), + [anon_sym_not_DASHin2] = ACTIONS(749), + [anon_sym_has2] = ACTIONS(749), + [anon_sym_not_DASHhas2] = ACTIONS(749), + [anon_sym_starts_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), + [anon_sym_ends_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), + [anon_sym_EQ_EQ2] = ACTIONS(749), + [anon_sym_BANG_EQ2] = ACTIONS(749), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(749), + [anon_sym_GT_EQ2] = ACTIONS(749), + [anon_sym_EQ_TILDE2] = ACTIONS(749), + [anon_sym_BANG_TILDE2] = ACTIONS(749), + [anon_sym_like2] = ACTIONS(749), + [anon_sym_not_DASHlike2] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(749), + [anon_sym_STAR_STAR2] = ACTIONS(749), + [anon_sym_PLUS_PLUS2] = ACTIONS(749), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(749), + [anon_sym_SLASH_SLASH2] = ACTIONS(749), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(749), + [anon_sym_bit_DASHshr2] = ACTIONS(749), + [anon_sym_bit_DASHand2] = ACTIONS(749), + [anon_sym_bit_DASHxor2] = ACTIONS(749), + [anon_sym_bit_DASHor2] = ACTIONS(749), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(749), + [anon_sym_out_GT_GT] = ACTIONS(749), + [anon_sym_e_GT_GT] = ACTIONS(749), + [anon_sym_o_GT_GT] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), + [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, [STATE(416)] = { - [sym__expr_parenthesized_immediate] = STATE(1343), - [sym__immediate_decimal] = STATE(1090), - [sym_val_variable] = STATE(1343), [sym_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1685), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [sym__unquoted_pattern] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(417)] = { - [sym_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(418)] = { - [sym__expr_parenthesized_immediate] = STATE(1311), - [sym__immediate_decimal] = STATE(1068), - [sym_val_variable] = STATE(1311), - [sym_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1685), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(419)] = { - [sym__expr_parenthesized_immediate] = STATE(918), - [sym__immediate_decimal] = STATE(920), - [sym_val_variable] = STATE(918), - [sym_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1687), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [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(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(420)] = { - [sym_path] = STATE(441), - [sym_comment] = STATE(420), - [aux_sym__where_predicate_lhs_repeat1] = STATE(420), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_EQ_GT] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1526), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1689), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(421)] = { - [sym_comment] = STATE(421), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(741), @@ -80352,10 +79997,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(741), [anon_sym_bit_DASHor2] = ACTIONS(741), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1692), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1694), + [aux_sym__immediate_decimal_token1] = ACTIONS(1689), + [aux_sym__immediate_decimal_token5] = ACTIONS(1691), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -80377,540 +80022,540 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(422)] = { - [sym_comment] = STATE(422), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1696), - [aux_sym__immediate_decimal_token5] = ACTIONS(1698), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), + [STATE(417)] = { + [sym__expr_parenthesized_immediate] = STATE(1319), + [sym__immediate_decimal] = STATE(985), + [sym_val_variable] = STATE(1319), + [sym_comment] = STATE(417), + [ts_builtin_sym_end] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1594), + [anon_sym_DASH2] = ACTIONS(1594), + [anon_sym_STAR2] = ACTIONS(1594), + [anon_sym_and2] = ACTIONS(1590), + [anon_sym_xor2] = ACTIONS(1590), + [anon_sym_or2] = ACTIONS(1590), + [anon_sym_not_DASHin2] = ACTIONS(1590), + [anon_sym_has2] = ACTIONS(1590), + [anon_sym_not_DASHhas2] = ACTIONS(1590), + [anon_sym_starts_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1590), + [anon_sym_ends_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1590), + [anon_sym_EQ_EQ2] = ACTIONS(1590), + [anon_sym_BANG_EQ2] = ACTIONS(1590), + [anon_sym_LT2] = ACTIONS(1594), + [anon_sym_LT_EQ2] = ACTIONS(1590), + [anon_sym_GT_EQ2] = ACTIONS(1590), + [anon_sym_EQ_TILDE2] = ACTIONS(1590), + [anon_sym_BANG_TILDE2] = ACTIONS(1590), + [anon_sym_like2] = ACTIONS(1590), + [anon_sym_not_DASHlike2] = ACTIONS(1590), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1590), + [anon_sym_PLUS_PLUS2] = ACTIONS(1590), + [anon_sym_SLASH2] = ACTIONS(1594), + [anon_sym_mod2] = ACTIONS(1590), + [anon_sym_SLASH_SLASH2] = ACTIONS(1590), + [anon_sym_PLUS2] = ACTIONS(1594), + [anon_sym_bit_DASHshl2] = ACTIONS(1590), + [anon_sym_bit_DASHshr2] = ACTIONS(1590), + [anon_sym_bit_DASHand2] = ACTIONS(1590), + [anon_sym_bit_DASHxor2] = ACTIONS(1590), + [anon_sym_bit_DASHor2] = ACTIONS(1590), + [aux_sym__immediate_decimal_token1] = ACTIONS(1693), + [aux_sym__immediate_decimal_token2] = ACTIONS(1693), + [aux_sym__immediate_decimal_token3] = ACTIONS(1695), + [aux_sym__immediate_decimal_token4] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1594), + [anon_sym_out_GT] = ACTIONS(1594), + [anon_sym_e_GT] = ACTIONS(1594), + [anon_sym_o_GT] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT] = ACTIONS(1594), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), + [sym__unquoted_pattern] = ACTIONS(1606), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(423)] = { - [sym_path] = STATE(441), - [sym_comment] = STATE(423), - [aux_sym__where_predicate_lhs_repeat1] = STATE(420), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_EQ_GT] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1460), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_COLON2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), + [STATE(418)] = { + [sym_path] = STATE(451), + [sym_comment] = STATE(418), + [aux_sym__where_predicate_lhs_repeat1] = STATE(418), + [anon_sym_in] = ACTIONS(1540), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_EQ_GT] = ACTIONS(1540), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1540), + [anon_sym_xor2] = ACTIONS(1540), + [anon_sym_or2] = ACTIONS(1540), + [anon_sym_not_DASHin2] = ACTIONS(1540), + [anon_sym_has2] = ACTIONS(1540), + [anon_sym_not_DASHhas2] = ACTIONS(1540), + [anon_sym_starts_DASHwith2] = ACTIONS(1540), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1540), + [anon_sym_ends_DASHwith2] = ACTIONS(1540), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1540), + [anon_sym_EQ_EQ2] = ACTIONS(1540), + [anon_sym_BANG_EQ2] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1540), + [anon_sym_GT_EQ2] = ACTIONS(1540), + [anon_sym_EQ_TILDE2] = ACTIONS(1540), + [anon_sym_BANG_TILDE2] = ACTIONS(1540), + [anon_sym_like2] = ACTIONS(1540), + [anon_sym_not_DASHlike2] = ACTIONS(1540), + [anon_sym_STAR_STAR2] = ACTIONS(1540), + [anon_sym_PLUS_PLUS2] = ACTIONS(1540), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1540), + [anon_sym_SLASH_SLASH2] = ACTIONS(1540), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_bit_DASHshl2] = ACTIONS(1540), + [anon_sym_bit_DASHshr2] = ACTIONS(1540), + [anon_sym_bit_DASHand2] = ACTIONS(1540), + [anon_sym_bit_DASHxor2] = ACTIONS(1540), + [anon_sym_bit_DASHor2] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1538), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), + [anon_sym_COLON2] = ACTIONS(1540), + [anon_sym_DOT2] = ACTIONS(1697), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(424)] = { - [sym_comment] = STATE(424), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_EQ_GT] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1545), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), + [STATE(419)] = { + [sym_comment] = STATE(419), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1524), + [anon_sym_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_EQ_GT] = ACTIONS(1524), + [anon_sym_STAR2] = ACTIONS(1522), + [anon_sym_and2] = ACTIONS(1524), + [anon_sym_xor2] = ACTIONS(1524), + [anon_sym_or2] = ACTIONS(1524), + [anon_sym_not_DASHin2] = ACTIONS(1524), + [anon_sym_has2] = ACTIONS(1524), + [anon_sym_not_DASHhas2] = ACTIONS(1524), + [anon_sym_starts_DASHwith2] = ACTIONS(1524), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1524), + [anon_sym_ends_DASHwith2] = ACTIONS(1524), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1524), + [anon_sym_EQ_EQ2] = ACTIONS(1524), + [anon_sym_BANG_EQ2] = ACTIONS(1524), + [anon_sym_LT2] = ACTIONS(1522), + [anon_sym_LT_EQ2] = ACTIONS(1524), + [anon_sym_GT_EQ2] = ACTIONS(1524), + [anon_sym_EQ_TILDE2] = ACTIONS(1524), + [anon_sym_BANG_TILDE2] = ACTIONS(1524), + [anon_sym_like2] = ACTIONS(1524), + [anon_sym_not_DASHlike2] = ACTIONS(1524), + [anon_sym_STAR_STAR2] = ACTIONS(1524), + [anon_sym_PLUS_PLUS2] = ACTIONS(1524), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1524), + [anon_sym_SLASH_SLASH2] = ACTIONS(1524), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_bit_DASHshl2] = ACTIONS(1524), + [anon_sym_bit_DASHshr2] = ACTIONS(1524), + [anon_sym_bit_DASHand2] = ACTIONS(1524), + [anon_sym_bit_DASHxor2] = ACTIONS(1524), + [anon_sym_bit_DASHor2] = ACTIONS(1524), + [anon_sym_DOT_DOT2] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_COLON2] = ACTIONS(1524), + [anon_sym_QMARK2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(425)] = { - [sym_comment] = STATE(425), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1700), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [STATE(420)] = { + [sym_comment] = STATE(420), + [anon_sym_in] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_EQ_GT] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1510), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1510), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_like2] = ACTIONS(1512), + [anon_sym_not_DASHlike2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1510), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [anon_sym_COLON2] = ACTIONS(1512), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_DOT2] = ACTIONS(1510), + [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(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(426)] = { - [sym_comment] = STATE(426), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_EQ_GT] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), + [STATE(421)] = { + [sym_cell_path] = STATE(476), + [sym_path] = STATE(451), + [sym_comment] = STATE(421), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = ACTIONS(1462), + [sym__newline] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_err_GT_PIPE] = ACTIONS(1462), + [anon_sym_out_GT_PIPE] = ACTIONS(1462), + [anon_sym_e_GT_PIPE] = ACTIONS(1462), + [anon_sym_o_GT_PIPE] = ACTIONS(1462), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1462), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1462), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1462), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_GT2] = ACTIONS(1460), + [anon_sym_DASH2] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_EQ_GT] = ACTIONS(1462), + [anon_sym_STAR2] = ACTIONS(1460), + [anon_sym_and2] = ACTIONS(1462), + [anon_sym_xor2] = ACTIONS(1462), + [anon_sym_or2] = ACTIONS(1462), + [anon_sym_not_DASHin2] = ACTIONS(1462), + [anon_sym_has2] = ACTIONS(1462), + [anon_sym_not_DASHhas2] = ACTIONS(1462), + [anon_sym_starts_DASHwith2] = ACTIONS(1462), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1462), + [anon_sym_ends_DASHwith2] = ACTIONS(1462), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1462), + [anon_sym_EQ_EQ2] = ACTIONS(1462), + [anon_sym_BANG_EQ2] = ACTIONS(1462), + [anon_sym_LT2] = ACTIONS(1460), + [anon_sym_LT_EQ2] = ACTIONS(1462), + [anon_sym_GT_EQ2] = ACTIONS(1462), + [anon_sym_EQ_TILDE2] = ACTIONS(1462), + [anon_sym_BANG_TILDE2] = ACTIONS(1462), + [anon_sym_like2] = ACTIONS(1462), + [anon_sym_not_DASHlike2] = ACTIONS(1462), + [anon_sym_STAR_STAR2] = ACTIONS(1462), + [anon_sym_PLUS_PLUS2] = ACTIONS(1462), + [anon_sym_SLASH2] = ACTIONS(1460), + [anon_sym_mod2] = ACTIONS(1462), + [anon_sym_SLASH_SLASH2] = ACTIONS(1462), + [anon_sym_PLUS2] = ACTIONS(1460), + [anon_sym_bit_DASHshl2] = ACTIONS(1462), + [anon_sym_bit_DASHshr2] = ACTIONS(1462), + [anon_sym_bit_DASHand2] = ACTIONS(1462), + [anon_sym_bit_DASHxor2] = ACTIONS(1462), + [anon_sym_bit_DASHor2] = ACTIONS(1462), + [anon_sym_DOT_DOT2] = ACTIONS(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [anon_sym_DOT2] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [anon_sym_err_GT_GT] = ACTIONS(1462), + [anon_sym_out_GT_GT] = ACTIONS(1462), + [anon_sym_e_GT_GT] = ACTIONS(1462), + [anon_sym_o_GT_GT] = ACTIONS(1462), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1462), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1462), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1462), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1462), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(427)] = { - [sym_comment] = STATE(427), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_EQ_GT] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1472), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), + [STATE(422)] = { + [sym__expr_parenthesized_immediate] = STATE(935), + [sym__immediate_decimal] = STATE(896), + [sym_val_variable] = STATE(935), + [sym_comment] = STATE(422), + [ts_builtin_sym_end] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1627), + [anon_sym_DASH2] = ACTIONS(1627), + [anon_sym_STAR2] = ACTIONS(1627), + [anon_sym_and2] = ACTIONS(1625), + [anon_sym_xor2] = ACTIONS(1625), + [anon_sym_or2] = ACTIONS(1625), + [anon_sym_not_DASHin2] = ACTIONS(1625), + [anon_sym_has2] = ACTIONS(1625), + [anon_sym_not_DASHhas2] = ACTIONS(1625), + [anon_sym_starts_DASHwith2] = ACTIONS(1625), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1625), + [anon_sym_ends_DASHwith2] = ACTIONS(1625), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1625), + [anon_sym_EQ_EQ2] = ACTIONS(1625), + [anon_sym_BANG_EQ2] = ACTIONS(1625), + [anon_sym_LT2] = ACTIONS(1627), + [anon_sym_LT_EQ2] = ACTIONS(1625), + [anon_sym_GT_EQ2] = ACTIONS(1625), + [anon_sym_EQ_TILDE2] = ACTIONS(1625), + [anon_sym_BANG_TILDE2] = ACTIONS(1625), + [anon_sym_like2] = ACTIONS(1625), + [anon_sym_not_DASHlike2] = ACTIONS(1625), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1625), + [anon_sym_PLUS_PLUS2] = ACTIONS(1625), + [anon_sym_SLASH2] = ACTIONS(1627), + [anon_sym_mod2] = ACTIONS(1625), + [anon_sym_SLASH_SLASH2] = ACTIONS(1625), + [anon_sym_PLUS2] = ACTIONS(1627), + [anon_sym_bit_DASHshl2] = ACTIONS(1625), + [anon_sym_bit_DASHshr2] = ACTIONS(1625), + [anon_sym_bit_DASHand2] = ACTIONS(1625), + [anon_sym_bit_DASHxor2] = ACTIONS(1625), + [anon_sym_bit_DASHor2] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1700), + [aux_sym__immediate_decimal_token1] = ACTIONS(1677), + [aux_sym__immediate_decimal_token2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1627), + [anon_sym_out_GT] = ACTIONS(1627), + [anon_sym_e_GT] = ACTIONS(1627), + [anon_sym_o_GT] = ACTIONS(1627), + [anon_sym_err_PLUSout_GT] = ACTIONS(1627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1627), + [anon_sym_o_PLUSe_GT] = ACTIONS(1627), + [anon_sym_e_PLUSo_GT] = ACTIONS(1627), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(428)] = { - [sym_comment] = STATE(428), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_EQ_GT] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1476), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_COLON2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), + [STATE(423)] = { + [sym__expr_parenthesized_immediate] = STATE(944), + [sym__immediate_decimal] = STATE(947), + [sym_val_variable] = STATE(944), + [sym_comment] = STATE(423), + [ts_builtin_sym_end] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1594), + [anon_sym_DASH2] = ACTIONS(1594), + [anon_sym_STAR2] = ACTIONS(1594), + [anon_sym_and2] = ACTIONS(1590), + [anon_sym_xor2] = ACTIONS(1590), + [anon_sym_or2] = ACTIONS(1590), + [anon_sym_not_DASHin2] = ACTIONS(1590), + [anon_sym_has2] = ACTIONS(1590), + [anon_sym_not_DASHhas2] = ACTIONS(1590), + [anon_sym_starts_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1590), + [anon_sym_ends_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1590), + [anon_sym_EQ_EQ2] = ACTIONS(1590), + [anon_sym_BANG_EQ2] = ACTIONS(1590), + [anon_sym_LT2] = ACTIONS(1594), + [anon_sym_LT_EQ2] = ACTIONS(1590), + [anon_sym_GT_EQ2] = ACTIONS(1590), + [anon_sym_EQ_TILDE2] = ACTIONS(1590), + [anon_sym_BANG_TILDE2] = ACTIONS(1590), + [anon_sym_like2] = ACTIONS(1590), + [anon_sym_not_DASHlike2] = ACTIONS(1590), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1590), + [anon_sym_PLUS_PLUS2] = ACTIONS(1590), + [anon_sym_SLASH2] = ACTIONS(1594), + [anon_sym_mod2] = ACTIONS(1590), + [anon_sym_SLASH_SLASH2] = ACTIONS(1590), + [anon_sym_PLUS2] = ACTIONS(1594), + [anon_sym_bit_DASHshl2] = ACTIONS(1590), + [anon_sym_bit_DASHshr2] = ACTIONS(1590), + [anon_sym_bit_DASHand2] = ACTIONS(1590), + [anon_sym_bit_DASHxor2] = ACTIONS(1590), + [anon_sym_bit_DASHor2] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1702), + [aux_sym__immediate_decimal_token1] = ACTIONS(1677), + [aux_sym__immediate_decimal_token2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1594), + [anon_sym_out_GT] = ACTIONS(1594), + [anon_sym_e_GT] = ACTIONS(1594), + [anon_sym_o_GT] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT] = ACTIONS(1594), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(429)] = { - [sym_comment] = STATE(429), + [STATE(424)] = { + [sym_comment] = STATE(424), [anon_sym_in] = ACTIONS(1516), [sym__newline] = ACTIONS(1516), [anon_sym_SEMI] = ACTIONS(1516), @@ -80985,85 +80630,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(430)] = { - [sym__expr_parenthesized_immediate] = STATE(929), - [sym__immediate_decimal] = STATE(934), - [sym_val_variable] = STATE(929), - [sym_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1702), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), + [STATE(425)] = { + [sym_comment] = STATE(425), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1520), + [anon_sym_GT2] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_EQ_GT] = ACTIONS(1520), + [anon_sym_STAR2] = ACTIONS(1518), + [anon_sym_and2] = ACTIONS(1520), + [anon_sym_xor2] = ACTIONS(1520), + [anon_sym_or2] = ACTIONS(1520), + [anon_sym_not_DASHin2] = ACTIONS(1520), + [anon_sym_has2] = ACTIONS(1520), + [anon_sym_not_DASHhas2] = ACTIONS(1520), + [anon_sym_starts_DASHwith2] = ACTIONS(1520), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1520), + [anon_sym_ends_DASHwith2] = ACTIONS(1520), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1520), + [anon_sym_EQ_EQ2] = ACTIONS(1520), + [anon_sym_BANG_EQ2] = ACTIONS(1520), + [anon_sym_LT2] = ACTIONS(1518), + [anon_sym_LT_EQ2] = ACTIONS(1520), + [anon_sym_GT_EQ2] = ACTIONS(1520), + [anon_sym_EQ_TILDE2] = ACTIONS(1520), + [anon_sym_BANG_TILDE2] = ACTIONS(1520), + [anon_sym_like2] = ACTIONS(1520), + [anon_sym_not_DASHlike2] = ACTIONS(1520), + [anon_sym_STAR_STAR2] = ACTIONS(1520), + [anon_sym_PLUS_PLUS2] = ACTIONS(1520), + [anon_sym_SLASH2] = ACTIONS(1518), + [anon_sym_mod2] = ACTIONS(1520), + [anon_sym_SLASH_SLASH2] = ACTIONS(1520), + [anon_sym_PLUS2] = ACTIONS(1518), + [anon_sym_bit_DASHshl2] = ACTIONS(1520), + [anon_sym_bit_DASHshr2] = ACTIONS(1520), + [anon_sym_bit_DASHand2] = ACTIONS(1520), + [anon_sym_bit_DASHxor2] = ACTIONS(1520), + [anon_sym_bit_DASHor2] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [anon_sym_COLON2] = ACTIONS(1520), + [anon_sym_QMARK2] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_DOT2] = ACTIONS(1518), + [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(3), }, - [STATE(431)] = { - [sym_comment] = STATE(431), - [anon_sym_EQ] = ACTIONS(1617), + [STATE(426)] = { + [sym_comment] = STATE(426), + [ts_builtin_sym_end] = ACTIONS(1551), + [anon_sym_EQ] = ACTIONS(1549), + [anon_sym_PLUS_EQ] = ACTIONS(1551), + [anon_sym_DASH_EQ] = ACTIONS(1551), + [anon_sym_STAR_EQ] = ACTIONS(1551), + [anon_sym_SLASH_EQ] = ACTIONS(1551), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [sym__newline] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_err_GT_PIPE] = ACTIONS(1551), + [anon_sym_out_GT_PIPE] = ACTIONS(1551), + [anon_sym_e_GT_PIPE] = ACTIONS(1551), + [anon_sym_o_GT_PIPE] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1551), + [anon_sym_GT2] = ACTIONS(1549), + [anon_sym_DASH2] = ACTIONS(1549), + [anon_sym_STAR2] = ACTIONS(1549), + [anon_sym_and2] = ACTIONS(1551), + [anon_sym_xor2] = ACTIONS(1551), + [anon_sym_or2] = ACTIONS(1551), + [anon_sym_not_DASHin2] = ACTIONS(1551), + [anon_sym_has2] = ACTIONS(1551), + [anon_sym_not_DASHhas2] = ACTIONS(1551), + [anon_sym_starts_DASHwith2] = ACTIONS(1551), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1551), + [anon_sym_ends_DASHwith2] = ACTIONS(1551), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1551), + [anon_sym_EQ_EQ2] = ACTIONS(1551), + [anon_sym_BANG_EQ2] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1549), + [anon_sym_LT_EQ2] = ACTIONS(1551), + [anon_sym_GT_EQ2] = ACTIONS(1551), + [anon_sym_EQ_TILDE2] = ACTIONS(1551), + [anon_sym_BANG_TILDE2] = ACTIONS(1551), + [anon_sym_like2] = ACTIONS(1551), + [anon_sym_not_DASHlike2] = ACTIONS(1551), + [anon_sym_STAR_STAR2] = ACTIONS(1551), + [anon_sym_PLUS_PLUS2] = ACTIONS(1549), + [anon_sym_SLASH2] = ACTIONS(1549), + [anon_sym_mod2] = ACTIONS(1551), + [anon_sym_SLASH_SLASH2] = ACTIONS(1551), + [anon_sym_PLUS2] = ACTIONS(1549), + [anon_sym_bit_DASHshl2] = ACTIONS(1551), + [anon_sym_bit_DASHshr2] = ACTIONS(1551), + [anon_sym_bit_DASHand2] = ACTIONS(1551), + [anon_sym_bit_DASHxor2] = ACTIONS(1551), + [anon_sym_bit_DASHor2] = ACTIONS(1551), + [anon_sym_DOT_DOT2] = ACTIONS(1549), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1551), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1551), + [anon_sym_DOT2] = ACTIONS(1549), + [anon_sym_err_GT] = ACTIONS(1549), + [anon_sym_out_GT] = ACTIONS(1549), + [anon_sym_e_GT] = ACTIONS(1549), + [anon_sym_o_GT] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT] = ACTIONS(1549), + [anon_sym_err_GT_GT] = ACTIONS(1551), + [anon_sym_out_GT_GT] = ACTIONS(1551), + [anon_sym_e_GT_GT] = ACTIONS(1551), + [anon_sym_o_GT_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(427)] = { + [sym_path] = STATE(451), + [sym_comment] = STATE(427), + [aux_sym__where_predicate_lhs_repeat1] = STATE(418), + [anon_sym_in] = ACTIONS(1536), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_err_GT_PIPE] = ACTIONS(1536), + [anon_sym_out_GT_PIPE] = ACTIONS(1536), + [anon_sym_e_GT_PIPE] = ACTIONS(1536), + [anon_sym_o_GT_PIPE] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_GT2] = ACTIONS(1534), + [anon_sym_DASH2] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_EQ_GT] = ACTIONS(1536), + [anon_sym_STAR2] = ACTIONS(1534), + [anon_sym_and2] = ACTIONS(1536), + [anon_sym_xor2] = ACTIONS(1536), + [anon_sym_or2] = ACTIONS(1536), + [anon_sym_not_DASHin2] = ACTIONS(1536), + [anon_sym_has2] = ACTIONS(1536), + [anon_sym_not_DASHhas2] = ACTIONS(1536), + [anon_sym_starts_DASHwith2] = ACTIONS(1536), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1536), + [anon_sym_ends_DASHwith2] = ACTIONS(1536), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1536), + [anon_sym_EQ_EQ2] = ACTIONS(1536), + [anon_sym_BANG_EQ2] = ACTIONS(1536), + [anon_sym_LT2] = ACTIONS(1534), + [anon_sym_LT_EQ2] = ACTIONS(1536), + [anon_sym_GT_EQ2] = ACTIONS(1536), + [anon_sym_EQ_TILDE2] = ACTIONS(1536), + [anon_sym_BANG_TILDE2] = ACTIONS(1536), + [anon_sym_like2] = ACTIONS(1536), + [anon_sym_not_DASHlike2] = ACTIONS(1536), + [anon_sym_STAR_STAR2] = ACTIONS(1536), + [anon_sym_PLUS_PLUS2] = ACTIONS(1536), + [anon_sym_SLASH2] = ACTIONS(1534), + [anon_sym_mod2] = ACTIONS(1536), + [anon_sym_SLASH_SLASH2] = ACTIONS(1536), + [anon_sym_PLUS2] = ACTIONS(1534), + [anon_sym_bit_DASHshl2] = ACTIONS(1536), + [anon_sym_bit_DASHshr2] = ACTIONS(1536), + [anon_sym_bit_DASHand2] = ACTIONS(1536), + [anon_sym_bit_DASHxor2] = ACTIONS(1536), + [anon_sym_bit_DASHor2] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1534), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1536), + [anon_sym_COLON2] = ACTIONS(1536), + [anon_sym_DOT2] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1534), + [anon_sym_out_GT] = ACTIONS(1534), + [anon_sym_e_GT] = ACTIONS(1534), + [anon_sym_o_GT] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT] = ACTIONS(1534), + [anon_sym_err_GT_GT] = ACTIONS(1536), + [anon_sym_out_GT_GT] = ACTIONS(1536), + [anon_sym_e_GT_GT] = ACTIONS(1536), + [anon_sym_o_GT_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(428)] = { + [sym_comment] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(1532), + [anon_sym_EQ] = ACTIONS(1530), + [anon_sym_PLUS_EQ] = ACTIONS(1532), + [anon_sym_DASH_EQ] = ACTIONS(1532), + [anon_sym_STAR_EQ] = ACTIONS(1532), + [anon_sym_SLASH_EQ] = ACTIONS(1532), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_GT2] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1530), + [anon_sym_STAR2] = ACTIONS(1530), + [anon_sym_and2] = ACTIONS(1532), + [anon_sym_xor2] = ACTIONS(1532), + [anon_sym_or2] = ACTIONS(1532), + [anon_sym_not_DASHin2] = ACTIONS(1532), + [anon_sym_has2] = ACTIONS(1532), + [anon_sym_not_DASHhas2] = ACTIONS(1532), + [anon_sym_starts_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1532), + [anon_sym_ends_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1532), + [anon_sym_EQ_EQ2] = ACTIONS(1532), + [anon_sym_BANG_EQ2] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1530), + [anon_sym_LT_EQ2] = ACTIONS(1532), + [anon_sym_GT_EQ2] = ACTIONS(1532), + [anon_sym_EQ_TILDE2] = ACTIONS(1532), + [anon_sym_BANG_TILDE2] = ACTIONS(1532), + [anon_sym_like2] = ACTIONS(1532), + [anon_sym_not_DASHlike2] = ACTIONS(1532), + [anon_sym_STAR_STAR2] = ACTIONS(1532), + [anon_sym_PLUS_PLUS2] = ACTIONS(1530), + [anon_sym_SLASH2] = ACTIONS(1530), + [anon_sym_mod2] = ACTIONS(1532), + [anon_sym_SLASH_SLASH2] = ACTIONS(1532), + [anon_sym_PLUS2] = ACTIONS(1530), + [anon_sym_bit_DASHshl2] = ACTIONS(1532), + [anon_sym_bit_DASHshr2] = ACTIONS(1532), + [anon_sym_bit_DASHand2] = ACTIONS(1532), + [anon_sym_bit_DASHxor2] = ACTIONS(1532), + [anon_sym_bit_DASHor2] = ACTIONS(1532), + [anon_sym_DOT_DOT2] = ACTIONS(1530), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), + [anon_sym_DOT2] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1530), + [anon_sym_out_GT] = ACTIONS(1530), + [anon_sym_e_GT] = ACTIONS(1530), + [anon_sym_o_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT] = ACTIONS(1530), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(429)] = { + [sym__expr_parenthesized_immediate] = STATE(1284), + [sym__immediate_decimal] = STATE(989), + [sym_val_variable] = STATE(1284), + [sym_comment] = STATE(429), + [ts_builtin_sym_end] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(1641), + [sym__newline] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_err_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_GT_PIPE] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1643), + [anon_sym_DASH2] = ACTIONS(1643), + [anon_sym_STAR2] = ACTIONS(1643), + [anon_sym_and2] = ACTIONS(1641), + [anon_sym_xor2] = ACTIONS(1641), + [anon_sym_or2] = ACTIONS(1641), + [anon_sym_not_DASHin2] = ACTIONS(1641), + [anon_sym_has2] = ACTIONS(1641), + [anon_sym_not_DASHhas2] = ACTIONS(1641), + [anon_sym_starts_DASHwith2] = ACTIONS(1641), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), + [anon_sym_ends_DASHwith2] = ACTIONS(1641), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), + [anon_sym_EQ_EQ2] = ACTIONS(1641), + [anon_sym_BANG_EQ2] = ACTIONS(1641), + [anon_sym_LT2] = ACTIONS(1643), + [anon_sym_LT_EQ2] = ACTIONS(1641), + [anon_sym_GT_EQ2] = ACTIONS(1641), + [anon_sym_EQ_TILDE2] = ACTIONS(1641), + [anon_sym_BANG_TILDE2] = ACTIONS(1641), + [anon_sym_like2] = ACTIONS(1641), + [anon_sym_not_DASHlike2] = ACTIONS(1641), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1641), + [anon_sym_PLUS_PLUS2] = ACTIONS(1641), + [anon_sym_SLASH2] = ACTIONS(1643), + [anon_sym_mod2] = ACTIONS(1641), + [anon_sym_SLASH_SLASH2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(1643), + [anon_sym_bit_DASHshl2] = ACTIONS(1641), + [anon_sym_bit_DASHshr2] = ACTIONS(1641), + [anon_sym_bit_DASHand2] = ACTIONS(1641), + [anon_sym_bit_DASHxor2] = ACTIONS(1641), + [anon_sym_bit_DASHor2] = ACTIONS(1641), + [aux_sym__immediate_decimal_token1] = ACTIONS(1693), + [aux_sym__immediate_decimal_token2] = ACTIONS(1693), + [aux_sym__immediate_decimal_token3] = ACTIONS(1695), + [aux_sym__immediate_decimal_token4] = ACTIONS(1695), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1641), + [anon_sym_out_GT_GT] = ACTIONS(1641), + [anon_sym_e_GT_GT] = ACTIONS(1641), + [anon_sym_o_GT_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [sym__unquoted_pattern] = ACTIONS(1645), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(430)] = { + [sym_comment] = STATE(430), + [anon_sym_EQ] = ACTIONS(1611), [anon_sym_PLUS_EQ] = ACTIONS(1704), [anon_sym_DASH_EQ] = ACTIONS(1704), [anon_sym_STAR_EQ] = ACTIONS(1704), @@ -81081,10 +81030,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), + [anon_sym_GT2] = ACTIONS(1613), + [anon_sym_DASH2] = ACTIONS(1613), [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_STAR2] = ACTIONS(1613), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -81097,7 +81046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1613), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), @@ -81105,28 +81054,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1706), [anon_sym_not_DASHlike2] = ACTIONS(1706), [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1613), + [anon_sym_SLASH2] = ACTIONS(1613), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1613), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [anon_sym_DOT_DOT2] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1619), [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1613), + [anon_sym_out_GT] = ACTIONS(1613), + [anon_sym_e_GT] = ACTIONS(1613), + [anon_sym_o_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT] = ACTIONS(1613), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -81137,234 +81086,835 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(431)] = { + [sym_comment] = STATE(431), + [anon_sym_in] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_GT2] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_EQ_GT] = ACTIONS(1528), + [anon_sym_STAR2] = ACTIONS(1526), + [anon_sym_and2] = ACTIONS(1528), + [anon_sym_xor2] = ACTIONS(1528), + [anon_sym_or2] = ACTIONS(1528), + [anon_sym_not_DASHin2] = ACTIONS(1528), + [anon_sym_has2] = ACTIONS(1528), + [anon_sym_not_DASHhas2] = ACTIONS(1528), + [anon_sym_starts_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1528), + [anon_sym_ends_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1528), + [anon_sym_EQ_EQ2] = ACTIONS(1528), + [anon_sym_BANG_EQ2] = ACTIONS(1528), + [anon_sym_LT2] = ACTIONS(1526), + [anon_sym_LT_EQ2] = ACTIONS(1528), + [anon_sym_GT_EQ2] = ACTIONS(1528), + [anon_sym_EQ_TILDE2] = ACTIONS(1528), + [anon_sym_BANG_TILDE2] = ACTIONS(1528), + [anon_sym_like2] = ACTIONS(1528), + [anon_sym_not_DASHlike2] = ACTIONS(1528), + [anon_sym_STAR_STAR2] = ACTIONS(1528), + [anon_sym_PLUS_PLUS2] = ACTIONS(1528), + [anon_sym_SLASH2] = ACTIONS(1526), + [anon_sym_mod2] = ACTIONS(1528), + [anon_sym_SLASH_SLASH2] = ACTIONS(1528), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_bit_DASHshl2] = ACTIONS(1528), + [anon_sym_bit_DASHshr2] = ACTIONS(1528), + [anon_sym_bit_DASHand2] = ACTIONS(1528), + [anon_sym_bit_DASHxor2] = ACTIONS(1528), + [anon_sym_bit_DASHor2] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_COLON2] = ACTIONS(1528), + [anon_sym_QMARK2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_DOT2] = ACTIONS(1526), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(432)] = { [sym_comment] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(1522), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), + [anon_sym_in] = ACTIONS(1508), + [sym__newline] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_GT2] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_EQ_GT] = ACTIONS(1508), + [anon_sym_STAR2] = ACTIONS(1506), + [anon_sym_and2] = ACTIONS(1508), + [anon_sym_xor2] = ACTIONS(1508), + [anon_sym_or2] = ACTIONS(1508), + [anon_sym_not_DASHin2] = ACTIONS(1508), + [anon_sym_has2] = ACTIONS(1508), + [anon_sym_not_DASHhas2] = ACTIONS(1508), + [anon_sym_starts_DASHwith2] = ACTIONS(1508), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1508), + [anon_sym_ends_DASHwith2] = ACTIONS(1508), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1508), + [anon_sym_EQ_EQ2] = ACTIONS(1508), + [anon_sym_BANG_EQ2] = ACTIONS(1508), + [anon_sym_LT2] = ACTIONS(1506), + [anon_sym_LT_EQ2] = ACTIONS(1508), + [anon_sym_GT_EQ2] = ACTIONS(1508), + [anon_sym_EQ_TILDE2] = ACTIONS(1508), + [anon_sym_BANG_TILDE2] = ACTIONS(1508), + [anon_sym_like2] = ACTIONS(1508), + [anon_sym_not_DASHlike2] = ACTIONS(1508), + [anon_sym_STAR_STAR2] = ACTIONS(1508), + [anon_sym_PLUS_PLUS2] = ACTIONS(1508), + [anon_sym_SLASH2] = ACTIONS(1506), + [anon_sym_mod2] = ACTIONS(1508), + [anon_sym_SLASH_SLASH2] = ACTIONS(1508), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_bit_DASHshl2] = ACTIONS(1508), + [anon_sym_bit_DASHshr2] = ACTIONS(1508), + [anon_sym_bit_DASHand2] = ACTIONS(1508), + [anon_sym_bit_DASHxor2] = ACTIONS(1508), + [anon_sym_bit_DASHor2] = ACTIONS(1508), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [anon_sym_COLON2] = ACTIONS(1508), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_DOT2] = ACTIONS(1506), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), [anon_sym_POUND] = ACTIONS(3), }, [STATE(433)] = { [sym_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1710), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1712), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), + [anon_sym_in] = ACTIONS(749), + [sym__newline] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_err_GT_PIPE] = ACTIONS(749), + [anon_sym_out_GT_PIPE] = ACTIONS(749), + [anon_sym_e_GT_PIPE] = ACTIONS(749), + [anon_sym_o_GT_PIPE] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(749), + [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(749), + [anon_sym_xor2] = ACTIONS(749), + [anon_sym_or2] = ACTIONS(749), + [anon_sym_not_DASHin2] = ACTIONS(749), + [anon_sym_has2] = ACTIONS(749), + [anon_sym_not_DASHhas2] = ACTIONS(749), + [anon_sym_starts_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), + [anon_sym_ends_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), + [anon_sym_EQ_EQ2] = ACTIONS(749), + [anon_sym_BANG_EQ2] = ACTIONS(749), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(749), + [anon_sym_GT_EQ2] = ACTIONS(749), + [anon_sym_EQ_TILDE2] = ACTIONS(749), + [anon_sym_BANG_TILDE2] = ACTIONS(749), + [anon_sym_like2] = ACTIONS(749), + [anon_sym_not_DASHlike2] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(749), + [anon_sym_STAR_STAR2] = ACTIONS(749), + [anon_sym_PLUS_PLUS2] = ACTIONS(749), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(749), + [anon_sym_SLASH_SLASH2] = ACTIONS(749), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(749), + [anon_sym_bit_DASHshr2] = ACTIONS(749), + [anon_sym_bit_DASHand2] = ACTIONS(749), + [anon_sym_bit_DASHxor2] = ACTIONS(749), + [anon_sym_bit_DASHor2] = ACTIONS(749), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(749), + [anon_sym_out_GT_GT] = ACTIONS(749), + [anon_sym_e_GT_GT] = ACTIONS(749), + [anon_sym_o_GT_GT] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), + [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, [STATE(434)] = { [sym_comment] = STATE(434), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_PLUS_EQ] = ACTIONS(1716), - [anon_sym_DASH_EQ] = ACTIONS(1716), - [anon_sym_STAR_EQ] = ACTIONS(1716), - [anon_sym_SLASH_EQ] = ACTIONS(1716), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_in] = ACTIONS(1547), + [sym__newline] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_err_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_GT_PIPE] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_GT2] = ACTIONS(1545), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_EQ_GT] = ACTIONS(1547), + [anon_sym_STAR2] = ACTIONS(1545), + [anon_sym_and2] = ACTIONS(1547), + [anon_sym_xor2] = ACTIONS(1547), + [anon_sym_or2] = ACTIONS(1547), + [anon_sym_not_DASHin2] = ACTIONS(1547), + [anon_sym_has2] = ACTIONS(1547), + [anon_sym_not_DASHhas2] = ACTIONS(1547), + [anon_sym_starts_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1547), + [anon_sym_ends_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1547), + [anon_sym_EQ_EQ2] = ACTIONS(1547), + [anon_sym_BANG_EQ2] = ACTIONS(1547), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ2] = ACTIONS(1547), + [anon_sym_GT_EQ2] = ACTIONS(1547), + [anon_sym_EQ_TILDE2] = ACTIONS(1547), + [anon_sym_BANG_TILDE2] = ACTIONS(1547), + [anon_sym_like2] = ACTIONS(1547), + [anon_sym_not_DASHlike2] = ACTIONS(1547), + [anon_sym_STAR_STAR2] = ACTIONS(1547), + [anon_sym_PLUS_PLUS2] = ACTIONS(1547), + [anon_sym_SLASH2] = ACTIONS(1545), + [anon_sym_mod2] = ACTIONS(1547), + [anon_sym_SLASH_SLASH2] = ACTIONS(1547), + [anon_sym_PLUS2] = ACTIONS(1545), + [anon_sym_bit_DASHshl2] = ACTIONS(1547), + [anon_sym_bit_DASHshr2] = ACTIONS(1547), + [anon_sym_bit_DASHand2] = ACTIONS(1547), + [anon_sym_bit_DASHxor2] = ACTIONS(1547), + [anon_sym_bit_DASHor2] = ACTIONS(1547), + [anon_sym_DOT_DOT2] = ACTIONS(1545), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), + [anon_sym_COLON2] = ACTIONS(1547), + [anon_sym_DOT2] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), + [anon_sym_err_GT_GT] = ACTIONS(1547), + [anon_sym_out_GT_GT] = ACTIONS(1547), + [anon_sym_e_GT_GT] = ACTIONS(1547), + [anon_sym_o_GT_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1547), [anon_sym_POUND] = ACTIONS(3), }, [STATE(435)] = { [sym_comment] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(1570), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_PLUS_EQ] = ACTIONS(1570), + [anon_sym_DASH_EQ] = ACTIONS(1570), + [anon_sym_STAR_EQ] = ACTIONS(1570), + [anon_sym_SLASH_EQ] = ACTIONS(1570), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1570), + [anon_sym_in] = 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_GT2] = ACTIONS(1568), + [anon_sym_DASH2] = ACTIONS(1568), + [anon_sym_STAR2] = ACTIONS(1568), + [anon_sym_and2] = ACTIONS(1570), + [anon_sym_xor2] = ACTIONS(1570), + [anon_sym_or2] = ACTIONS(1570), + [anon_sym_not_DASHin2] = ACTIONS(1570), + [anon_sym_has2] = ACTIONS(1570), + [anon_sym_not_DASHhas2] = ACTIONS(1570), + [anon_sym_starts_DASHwith2] = ACTIONS(1570), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1570), + [anon_sym_ends_DASHwith2] = ACTIONS(1570), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1570), + [anon_sym_EQ_EQ2] = ACTIONS(1570), + [anon_sym_BANG_EQ2] = ACTIONS(1570), + [anon_sym_LT2] = ACTIONS(1568), + [anon_sym_LT_EQ2] = ACTIONS(1570), + [anon_sym_GT_EQ2] = ACTIONS(1570), + [anon_sym_EQ_TILDE2] = ACTIONS(1570), + [anon_sym_BANG_TILDE2] = ACTIONS(1570), + [anon_sym_like2] = ACTIONS(1570), + [anon_sym_not_DASHlike2] = ACTIONS(1570), + [anon_sym_STAR_STAR2] = ACTIONS(1570), + [anon_sym_PLUS_PLUS2] = ACTIONS(1568), + [anon_sym_SLASH2] = ACTIONS(1568), + [anon_sym_mod2] = ACTIONS(1570), + [anon_sym_SLASH_SLASH2] = ACTIONS(1570), + [anon_sym_PLUS2] = ACTIONS(1568), + [anon_sym_bit_DASHshl2] = ACTIONS(1570), + [anon_sym_bit_DASHshr2] = ACTIONS(1570), + [anon_sym_bit_DASHand2] = ACTIONS(1570), + [anon_sym_bit_DASHxor2] = ACTIONS(1570), + [anon_sym_bit_DASHor2] = ACTIONS(1570), + [anon_sym_DOT_DOT2] = ACTIONS(1568), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1570), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1570), + [anon_sym_err_GT] = ACTIONS(1568), + [anon_sym_out_GT] = ACTIONS(1568), + [anon_sym_e_GT] = ACTIONS(1568), + [anon_sym_o_GT] = ACTIONS(1568), + [anon_sym_err_PLUSout_GT] = ACTIONS(1568), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1568), + [anon_sym_o_PLUSe_GT] = ACTIONS(1568), + [anon_sym_e_PLUSo_GT] = ACTIONS(1568), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(436)] = { + [sym_comment] = STATE(436), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_GT2] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_EQ_GT] = ACTIONS(1532), + [anon_sym_STAR2] = ACTIONS(1530), + [anon_sym_and2] = ACTIONS(1532), + [anon_sym_xor2] = ACTIONS(1532), + [anon_sym_or2] = ACTIONS(1532), + [anon_sym_not_DASHin2] = ACTIONS(1532), + [anon_sym_has2] = ACTIONS(1532), + [anon_sym_not_DASHhas2] = ACTIONS(1532), + [anon_sym_starts_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1532), + [anon_sym_ends_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1532), + [anon_sym_EQ_EQ2] = ACTIONS(1532), + [anon_sym_BANG_EQ2] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1530), + [anon_sym_LT_EQ2] = ACTIONS(1532), + [anon_sym_GT_EQ2] = ACTIONS(1532), + [anon_sym_EQ_TILDE2] = ACTIONS(1532), + [anon_sym_BANG_TILDE2] = ACTIONS(1532), + [anon_sym_like2] = ACTIONS(1532), + [anon_sym_not_DASHlike2] = ACTIONS(1532), + [anon_sym_STAR_STAR2] = ACTIONS(1532), + [anon_sym_PLUS_PLUS2] = ACTIONS(1532), + [anon_sym_SLASH2] = ACTIONS(1530), + [anon_sym_mod2] = ACTIONS(1532), + [anon_sym_SLASH_SLASH2] = ACTIONS(1532), + [anon_sym_PLUS2] = ACTIONS(1530), + [anon_sym_bit_DASHshl2] = ACTIONS(1532), + [anon_sym_bit_DASHshr2] = ACTIONS(1532), + [anon_sym_bit_DASHand2] = ACTIONS(1532), + [anon_sym_bit_DASHxor2] = ACTIONS(1532), + [anon_sym_bit_DASHor2] = ACTIONS(1532), + [anon_sym_DOT_DOT2] = ACTIONS(1530), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), + [anon_sym_COLON2] = ACTIONS(1532), + [anon_sym_DOT2] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1530), + [anon_sym_out_GT] = ACTIONS(1530), + [anon_sym_e_GT] = ACTIONS(1530), + [anon_sym_o_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT] = ACTIONS(1530), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(437)] = { + [sym__expr_parenthesized_immediate] = STATE(1278), + [sym__immediate_decimal] = STATE(1279), + [sym_val_variable] = STATE(1278), + [sym_comment] = STATE(437), + [ts_builtin_sym_end] = ACTIONS(1651), + [anon_sym_in] = ACTIONS(1651), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1651), + [anon_sym_xor2] = ACTIONS(1651), + [anon_sym_or2] = ACTIONS(1651), + [anon_sym_not_DASHin2] = ACTIONS(1651), + [anon_sym_has2] = ACTIONS(1651), + [anon_sym_not_DASHhas2] = ACTIONS(1651), + [anon_sym_starts_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), + [anon_sym_ends_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), + [anon_sym_EQ_EQ2] = ACTIONS(1651), + [anon_sym_BANG_EQ2] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1651), + [anon_sym_GT_EQ2] = ACTIONS(1651), + [anon_sym_EQ_TILDE2] = ACTIONS(1651), + [anon_sym_BANG_TILDE2] = ACTIONS(1651), + [anon_sym_like2] = ACTIONS(1651), + [anon_sym_not_DASHlike2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1651), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1651), + [anon_sym_SLASH_SLASH2] = ACTIONS(1651), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1651), + [anon_sym_bit_DASHshr2] = ACTIONS(1651), + [anon_sym_bit_DASHand2] = ACTIONS(1651), + [anon_sym_bit_DASHxor2] = ACTIONS(1651), + [anon_sym_bit_DASHor2] = ACTIONS(1651), + [aux_sym__immediate_decimal_token1] = ACTIONS(1710), + [aux_sym__immediate_decimal_token2] = ACTIONS(1710), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [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(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(438)] = { + [sym__expr_parenthesized_immediate] = STATE(1280), + [sym__immediate_decimal] = STATE(1281), + [sym_val_variable] = STATE(1280), + [sym_comment] = STATE(438), + [ts_builtin_sym_end] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [sym__newline] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_err_GT_PIPE] = ACTIONS(1631), + [anon_sym_out_GT_PIPE] = ACTIONS(1631), + [anon_sym_e_GT_PIPE] = ACTIONS(1631), + [anon_sym_o_GT_PIPE] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1633), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_STAR2] = ACTIONS(1633), + [anon_sym_and2] = ACTIONS(1631), + [anon_sym_xor2] = ACTIONS(1631), + [anon_sym_or2] = ACTIONS(1631), + [anon_sym_not_DASHin2] = ACTIONS(1631), + [anon_sym_has2] = ACTIONS(1631), + [anon_sym_not_DASHhas2] = ACTIONS(1631), + [anon_sym_starts_DASHwith2] = ACTIONS(1631), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), + [anon_sym_ends_DASHwith2] = ACTIONS(1631), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), + [anon_sym_EQ_EQ2] = ACTIONS(1631), + [anon_sym_BANG_EQ2] = ACTIONS(1631), + [anon_sym_LT2] = ACTIONS(1633), + [anon_sym_LT_EQ2] = ACTIONS(1631), + [anon_sym_GT_EQ2] = ACTIONS(1631), + [anon_sym_EQ_TILDE2] = ACTIONS(1631), + [anon_sym_BANG_TILDE2] = ACTIONS(1631), + [anon_sym_like2] = ACTIONS(1631), + [anon_sym_not_DASHlike2] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1631), + [anon_sym_PLUS_PLUS2] = ACTIONS(1631), + [anon_sym_SLASH2] = ACTIONS(1633), + [anon_sym_mod2] = ACTIONS(1631), + [anon_sym_SLASH_SLASH2] = ACTIONS(1631), + [anon_sym_PLUS2] = ACTIONS(1633), + [anon_sym_bit_DASHshl2] = ACTIONS(1631), + [anon_sym_bit_DASHshr2] = ACTIONS(1631), + [anon_sym_bit_DASHand2] = ACTIONS(1631), + [anon_sym_bit_DASHxor2] = ACTIONS(1631), + [anon_sym_bit_DASHor2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token1] = ACTIONS(1710), + [aux_sym__immediate_decimal_token2] = ACTIONS(1710), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1633), + [anon_sym_out_GT] = ACTIONS(1633), + [anon_sym_e_GT] = ACTIONS(1633), + [anon_sym_o_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT] = ACTIONS(1633), + [anon_sym_err_GT_GT] = ACTIONS(1631), + [anon_sym_out_GT_GT] = ACTIONS(1631), + [anon_sym_e_GT_GT] = ACTIONS(1631), + [anon_sym_o_GT_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(439)] = { + [sym__expr_parenthesized_immediate] = STATE(1282), + [sym__immediate_decimal] = STATE(1283), + [sym_val_variable] = STATE(1282), + [sym_comment] = STATE(439), + [ts_builtin_sym_end] = ACTIONS(1647), + [anon_sym_in] = ACTIONS(1647), + [sym__newline] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_PIPE] = ACTIONS(1647), + [anon_sym_err_GT_PIPE] = ACTIONS(1647), + [anon_sym_out_GT_PIPE] = ACTIONS(1647), + [anon_sym_e_GT_PIPE] = ACTIONS(1647), + [anon_sym_o_GT_PIPE] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1649), + [anon_sym_DASH2] = ACTIONS(1649), + [anon_sym_STAR2] = ACTIONS(1649), + [anon_sym_and2] = ACTIONS(1647), + [anon_sym_xor2] = ACTIONS(1647), + [anon_sym_or2] = ACTIONS(1647), + [anon_sym_not_DASHin2] = ACTIONS(1647), + [anon_sym_has2] = ACTIONS(1647), + [anon_sym_not_DASHhas2] = ACTIONS(1647), + [anon_sym_starts_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1647), + [anon_sym_ends_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1647), + [anon_sym_EQ_EQ2] = ACTIONS(1647), + [anon_sym_BANG_EQ2] = ACTIONS(1647), + [anon_sym_LT2] = ACTIONS(1649), + [anon_sym_LT_EQ2] = ACTIONS(1647), + [anon_sym_GT_EQ2] = ACTIONS(1647), + [anon_sym_EQ_TILDE2] = ACTIONS(1647), + [anon_sym_BANG_TILDE2] = ACTIONS(1647), + [anon_sym_like2] = ACTIONS(1647), + [anon_sym_not_DASHlike2] = ACTIONS(1647), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1647), + [anon_sym_PLUS_PLUS2] = ACTIONS(1647), + [anon_sym_SLASH2] = ACTIONS(1649), + [anon_sym_mod2] = ACTIONS(1647), + [anon_sym_SLASH_SLASH2] = ACTIONS(1647), + [anon_sym_PLUS2] = ACTIONS(1649), + [anon_sym_bit_DASHshl2] = ACTIONS(1647), + [anon_sym_bit_DASHshr2] = ACTIONS(1647), + [anon_sym_bit_DASHand2] = ACTIONS(1647), + [anon_sym_bit_DASHxor2] = ACTIONS(1647), + [anon_sym_bit_DASHor2] = ACTIONS(1647), + [aux_sym__immediate_decimal_token1] = ACTIONS(1710), + [aux_sym__immediate_decimal_token2] = ACTIONS(1710), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1649), + [anon_sym_out_GT] = ACTIONS(1649), + [anon_sym_e_GT] = ACTIONS(1649), + [anon_sym_o_GT] = ACTIONS(1649), + [anon_sym_err_PLUSout_GT] = ACTIONS(1649), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1649), + [anon_sym_o_PLUSe_GT] = ACTIONS(1649), + [anon_sym_e_PLUSo_GT] = ACTIONS(1649), + [anon_sym_err_GT_GT] = ACTIONS(1647), + [anon_sym_out_GT_GT] = ACTIONS(1647), + [anon_sym_e_GT_GT] = ACTIONS(1647), + [anon_sym_o_GT_GT] = ACTIONS(1647), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1647), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1647), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1647), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(440)] = { + [sym__expr_parenthesized_immediate] = STATE(1284), + [sym__immediate_decimal] = STATE(1285), + [sym_val_variable] = STATE(1284), + [sym_comment] = STATE(440), + [ts_builtin_sym_end] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(1641), + [sym__newline] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_PIPE] = ACTIONS(1641), + [anon_sym_err_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_GT_PIPE] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1643), + [anon_sym_DASH2] = ACTIONS(1643), + [anon_sym_STAR2] = ACTIONS(1643), + [anon_sym_and2] = ACTIONS(1641), + [anon_sym_xor2] = ACTIONS(1641), + [anon_sym_or2] = ACTIONS(1641), + [anon_sym_not_DASHin2] = ACTIONS(1641), + [anon_sym_has2] = ACTIONS(1641), + [anon_sym_not_DASHhas2] = ACTIONS(1641), + [anon_sym_starts_DASHwith2] = ACTIONS(1641), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), + [anon_sym_ends_DASHwith2] = ACTIONS(1641), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), + [anon_sym_EQ_EQ2] = ACTIONS(1641), + [anon_sym_BANG_EQ2] = ACTIONS(1641), + [anon_sym_LT2] = ACTIONS(1643), + [anon_sym_LT_EQ2] = ACTIONS(1641), + [anon_sym_GT_EQ2] = ACTIONS(1641), + [anon_sym_EQ_TILDE2] = ACTIONS(1641), + [anon_sym_BANG_TILDE2] = ACTIONS(1641), + [anon_sym_like2] = ACTIONS(1641), + [anon_sym_not_DASHlike2] = ACTIONS(1641), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1641), + [anon_sym_PLUS_PLUS2] = ACTIONS(1641), + [anon_sym_SLASH2] = ACTIONS(1643), + [anon_sym_mod2] = ACTIONS(1641), + [anon_sym_SLASH_SLASH2] = ACTIONS(1641), + [anon_sym_PLUS2] = ACTIONS(1643), + [anon_sym_bit_DASHshl2] = ACTIONS(1641), + [anon_sym_bit_DASHshr2] = ACTIONS(1641), + [anon_sym_bit_DASHand2] = ACTIONS(1641), + [anon_sym_bit_DASHxor2] = ACTIONS(1641), + [anon_sym_bit_DASHor2] = ACTIONS(1641), + [aux_sym__immediate_decimal_token1] = ACTIONS(1710), + [aux_sym__immediate_decimal_token2] = ACTIONS(1710), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1643), + [anon_sym_out_GT] = ACTIONS(1643), + [anon_sym_e_GT] = ACTIONS(1643), + [anon_sym_o_GT] = ACTIONS(1643), + [anon_sym_err_PLUSout_GT] = ACTIONS(1643), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), + [anon_sym_o_PLUSe_GT] = ACTIONS(1643), + [anon_sym_e_PLUSo_GT] = ACTIONS(1643), + [anon_sym_err_GT_GT] = ACTIONS(1641), + [anon_sym_out_GT_GT] = ACTIONS(1641), + [anon_sym_e_GT_GT] = ACTIONS(1641), + [anon_sym_o_GT_GT] = ACTIONS(1641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(441)] = { + [sym_comment] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(749), + [anon_sym_in] = ACTIONS(749), + [sym__newline] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_err_GT_PIPE] = ACTIONS(749), + [anon_sym_out_GT_PIPE] = ACTIONS(749), + [anon_sym_e_GT_PIPE] = ACTIONS(749), + [anon_sym_o_GT_PIPE] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(749), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(749), + [anon_sym_xor2] = ACTIONS(749), + [anon_sym_or2] = ACTIONS(749), + [anon_sym_not_DASHin2] = ACTIONS(749), + [anon_sym_has2] = ACTIONS(749), + [anon_sym_not_DASHhas2] = ACTIONS(749), + [anon_sym_starts_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), + [anon_sym_ends_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), + [anon_sym_EQ_EQ2] = ACTIONS(749), + [anon_sym_BANG_EQ2] = ACTIONS(749), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(749), + [anon_sym_GT_EQ2] = ACTIONS(749), + [anon_sym_EQ_TILDE2] = ACTIONS(749), + [anon_sym_BANG_TILDE2] = ACTIONS(749), + [anon_sym_like2] = ACTIONS(749), + [anon_sym_not_DASHlike2] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(749), + [anon_sym_STAR_STAR2] = ACTIONS(749), + [anon_sym_PLUS_PLUS2] = ACTIONS(749), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(749), + [anon_sym_SLASH_SLASH2] = ACTIONS(749), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(749), + [anon_sym_bit_DASHshr2] = ACTIONS(749), + [anon_sym_bit_DASHand2] = ACTIONS(749), + [anon_sym_bit_DASHxor2] = ACTIONS(749), + [anon_sym_bit_DASHor2] = ACTIONS(749), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1714), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(749), + [anon_sym_out_GT_GT] = ACTIONS(749), + [anon_sym_e_GT_GT] = ACTIONS(749), + [anon_sym_o_GT_GT] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), + [sym__unquoted_pattern] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(442)] = { + [sym_comment] = STATE(442), [anon_sym_in] = ACTIONS(773), [sym__newline] = ACTIONS(773), [anon_sym_SEMI] = ACTIONS(773), @@ -81416,7 +81966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1718), + [aux_sym__immediate_decimal_token5] = ACTIONS(1716), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -81438,8 +81988,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(436)] = { - [sym_comment] = STATE(436), + [STATE(443)] = { + [sym_comment] = STATE(443), + [anon_sym_EQ] = ACTIONS(1718), + [anon_sym_PLUS_EQ] = ACTIONS(1720), + [anon_sym_DASH_EQ] = ACTIONS(1720), + [anon_sym_STAR_EQ] = ACTIONS(1720), + [anon_sym_SLASH_EQ] = ACTIONS(1720), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1720), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1613), + [anon_sym_DASH2] = ACTIONS(1613), + [anon_sym_STAR2] = ACTIONS(1613), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1613), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1613), + [anon_sym_SLASH2] = ACTIONS(1613), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1613), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_DOT_DOT2] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1613), + [anon_sym_out_GT] = ACTIONS(1613), + [anon_sym_e_GT] = ACTIONS(1613), + [anon_sym_o_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT] = ACTIONS(1613), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(444)] = { + [sym_comment] = STATE(444), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(741), @@ -81452,10 +82078,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(741), [anon_sym_xor2] = ACTIONS(741), @@ -81491,7 +82115,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1694), + [aux_sym__immediate_decimal_token1] = ACTIONS(1722), + [aux_sym__immediate_decimal_token5] = ACTIONS(1724), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -81513,89 +82138,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(437)] = { - [sym_comment] = STATE(437), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_EQ_GT] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1522), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_COLON2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), + [STATE(445)] = { + [sym_comment] = STATE(445), + [anon_sym_in] = ACTIONS(1726), + [sym__newline] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_err_GT_PIPE] = ACTIONS(1726), + [anon_sym_out_GT_PIPE] = ACTIONS(1726), + [anon_sym_e_GT_PIPE] = ACTIONS(1726), + [anon_sym_o_GT_PIPE] = ACTIONS(1726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_GT2] = ACTIONS(1728), + [anon_sym_DASH2] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_STAR2] = ACTIONS(1728), + [anon_sym_and2] = ACTIONS(1726), + [anon_sym_xor2] = ACTIONS(1726), + [anon_sym_or2] = ACTIONS(1726), + [anon_sym_not_DASHin2] = ACTIONS(1726), + [anon_sym_has2] = ACTIONS(1726), + [anon_sym_not_DASHhas2] = ACTIONS(1726), + [anon_sym_starts_DASHwith2] = ACTIONS(1726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), + [anon_sym_ends_DASHwith2] = ACTIONS(1726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), + [anon_sym_EQ_EQ2] = ACTIONS(1726), + [anon_sym_BANG_EQ2] = ACTIONS(1726), + [anon_sym_LT2] = ACTIONS(1728), + [anon_sym_LT_EQ2] = ACTIONS(1726), + [anon_sym_GT_EQ2] = ACTIONS(1726), + [anon_sym_EQ_TILDE2] = ACTIONS(1726), + [anon_sym_BANG_TILDE2] = ACTIONS(1726), + [anon_sym_like2] = ACTIONS(1726), + [anon_sym_not_DASHlike2] = ACTIONS(1726), + [anon_sym_LPAREN2] = ACTIONS(1726), + [anon_sym_STAR_STAR2] = ACTIONS(1726), + [anon_sym_PLUS_PLUS2] = ACTIONS(1726), + [anon_sym_SLASH2] = ACTIONS(1728), + [anon_sym_mod2] = ACTIONS(1726), + [anon_sym_SLASH_SLASH2] = ACTIONS(1726), + [anon_sym_PLUS2] = ACTIONS(1728), + [anon_sym_bit_DASHshl2] = ACTIONS(1726), + [anon_sym_bit_DASHshr2] = ACTIONS(1726), + [anon_sym_bit_DASHand2] = ACTIONS(1726), + [anon_sym_bit_DASHxor2] = ACTIONS(1726), + [anon_sym_bit_DASHor2] = ACTIONS(1726), + [anon_sym_DOT_DOT2] = ACTIONS(1728), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), + [aux_sym__immediate_decimal_token1] = ACTIONS(1730), + [aux_sym__immediate_decimal_token5] = ACTIONS(1732), + [anon_sym_err_GT] = ACTIONS(1728), + [anon_sym_out_GT] = ACTIONS(1728), + [anon_sym_e_GT] = ACTIONS(1728), + [anon_sym_o_GT] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT] = ACTIONS(1728), + [anon_sym_err_GT_GT] = ACTIONS(1726), + [anon_sym_out_GT_GT] = ACTIONS(1726), + [anon_sym_e_GT_GT] = ACTIONS(1726), + [anon_sym_o_GT_GT] = ACTIONS(1726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), + [sym__unquoted_pattern] = ACTIONS(1728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(438)] = { - [sym_comment] = STATE(438), - [anon_sym_EQ] = ACTIONS(1720), - [anon_sym_PLUS_EQ] = ACTIONS(1722), - [anon_sym_DASH_EQ] = ACTIONS(1722), - [anon_sym_STAR_EQ] = ACTIONS(1722), - [anon_sym_SLASH_EQ] = ACTIONS(1722), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1722), + [STATE(446)] = { + [sym__expr_parenthesized_immediate] = STATE(1316), + [sym__immediate_decimal] = STATE(1317), + [sym_val_variable] = STATE(1316), + [sym_comment] = STATE(446), + [ts_builtin_sym_end] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(1625), + [sym__newline] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_PIPE] = ACTIONS(1625), + [anon_sym_err_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_GT_PIPE] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1627), + [anon_sym_DASH2] = ACTIONS(1627), + [anon_sym_STAR2] = ACTIONS(1627), + [anon_sym_and2] = ACTIONS(1625), + [anon_sym_xor2] = ACTIONS(1625), + [anon_sym_or2] = ACTIONS(1625), + [anon_sym_not_DASHin2] = ACTIONS(1625), + [anon_sym_has2] = ACTIONS(1625), + [anon_sym_not_DASHhas2] = ACTIONS(1625), + [anon_sym_starts_DASHwith2] = ACTIONS(1625), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1625), + [anon_sym_ends_DASHwith2] = ACTIONS(1625), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1625), + [anon_sym_EQ_EQ2] = ACTIONS(1625), + [anon_sym_BANG_EQ2] = ACTIONS(1625), + [anon_sym_LT2] = ACTIONS(1627), + [anon_sym_LT_EQ2] = ACTIONS(1625), + [anon_sym_GT_EQ2] = ACTIONS(1625), + [anon_sym_EQ_TILDE2] = ACTIONS(1625), + [anon_sym_BANG_TILDE2] = ACTIONS(1625), + [anon_sym_like2] = ACTIONS(1625), + [anon_sym_not_DASHlike2] = ACTIONS(1625), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1625), + [anon_sym_PLUS_PLUS2] = ACTIONS(1625), + [anon_sym_SLASH2] = ACTIONS(1627), + [anon_sym_mod2] = ACTIONS(1625), + [anon_sym_SLASH_SLASH2] = ACTIONS(1625), + [anon_sym_PLUS2] = ACTIONS(1627), + [anon_sym_bit_DASHshl2] = ACTIONS(1625), + [anon_sym_bit_DASHshr2] = ACTIONS(1625), + [anon_sym_bit_DASHand2] = ACTIONS(1625), + [anon_sym_bit_DASHxor2] = ACTIONS(1625), + [anon_sym_bit_DASHor2] = ACTIONS(1625), + [aux_sym__immediate_decimal_token1] = ACTIONS(1710), + [aux_sym__immediate_decimal_token2] = ACTIONS(1710), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1627), + [anon_sym_out_GT] = ACTIONS(1627), + [anon_sym_e_GT] = ACTIONS(1627), + [anon_sym_o_GT] = ACTIONS(1627), + [anon_sym_err_PLUSout_GT] = ACTIONS(1627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1627), + [anon_sym_o_PLUSe_GT] = ACTIONS(1627), + [anon_sym_e_PLUSo_GT] = ACTIONS(1627), + [anon_sym_err_GT_GT] = ACTIONS(1625), + [anon_sym_out_GT_GT] = ACTIONS(1625), + [anon_sym_e_GT_GT] = ACTIONS(1625), + [anon_sym_o_GT_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1625), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(447)] = { + [sym__expr_parenthesized_immediate] = STATE(4715), + [sym_comment] = STATE(447), + [anon_sym_in] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(960), + [anon_sym_xor2] = ACTIONS(960), + [anon_sym_or2] = ACTIONS(960), + [anon_sym_not_DASHin2] = ACTIONS(960), + [anon_sym_has2] = ACTIONS(960), + [anon_sym_not_DASHhas2] = ACTIONS(960), + [anon_sym_starts_DASHwith2] = ACTIONS(960), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(960), + [anon_sym_ends_DASHwith2] = ACTIONS(960), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(960), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(960), + [anon_sym_like2] = ACTIONS(960), + [anon_sym_not_DASHlike2] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(960), + [anon_sym_PLUS_PLUS2] = ACTIONS(960), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(960), + [anon_sym_SLASH_SLASH2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(960), + [anon_sym_bit_DASHshr2] = ACTIONS(960), + [anon_sym_bit_DASHand2] = ACTIONS(960), + [anon_sym_bit_DASHxor2] = ACTIONS(960), + [anon_sym_bit_DASHor2] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(1736), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1738), + [sym_filesize_unit] = ACTIONS(1740), + [sym_duration_unit] = ACTIONS(1742), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [sym__unquoted_pattern] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(448)] = { + [sym__expr_parenthesized_immediate] = STATE(1319), + [sym__immediate_decimal] = STATE(1320), + [sym_val_variable] = STATE(1319), + [sym_comment] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(1590), + [anon_sym_in] = ACTIONS(1590), + [sym__newline] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_err_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_GT_PIPE] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1594), + [anon_sym_DASH2] = ACTIONS(1594), + [anon_sym_STAR2] = ACTIONS(1594), + [anon_sym_and2] = ACTIONS(1590), + [anon_sym_xor2] = ACTIONS(1590), + [anon_sym_or2] = ACTIONS(1590), + [anon_sym_not_DASHin2] = ACTIONS(1590), + [anon_sym_has2] = ACTIONS(1590), + [anon_sym_not_DASHhas2] = ACTIONS(1590), + [anon_sym_starts_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1590), + [anon_sym_ends_DASHwith2] = ACTIONS(1590), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1590), + [anon_sym_EQ_EQ2] = ACTIONS(1590), + [anon_sym_BANG_EQ2] = ACTIONS(1590), + [anon_sym_LT2] = ACTIONS(1594), + [anon_sym_LT_EQ2] = ACTIONS(1590), + [anon_sym_GT_EQ2] = ACTIONS(1590), + [anon_sym_EQ_TILDE2] = ACTIONS(1590), + [anon_sym_BANG_TILDE2] = ACTIONS(1590), + [anon_sym_like2] = ACTIONS(1590), + [anon_sym_not_DASHlike2] = ACTIONS(1590), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1590), + [anon_sym_PLUS_PLUS2] = ACTIONS(1590), + [anon_sym_SLASH2] = ACTIONS(1594), + [anon_sym_mod2] = ACTIONS(1590), + [anon_sym_SLASH_SLASH2] = ACTIONS(1590), + [anon_sym_PLUS2] = ACTIONS(1594), + [anon_sym_bit_DASHshl2] = ACTIONS(1590), + [anon_sym_bit_DASHshr2] = ACTIONS(1590), + [anon_sym_bit_DASHand2] = ACTIONS(1590), + [anon_sym_bit_DASHxor2] = ACTIONS(1590), + [anon_sym_bit_DASHor2] = ACTIONS(1590), + [aux_sym__immediate_decimal_token1] = ACTIONS(1710), + [aux_sym__immediate_decimal_token2] = ACTIONS(1710), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1594), + [anon_sym_out_GT] = ACTIONS(1594), + [anon_sym_e_GT] = ACTIONS(1594), + [anon_sym_o_GT] = ACTIONS(1594), + [anon_sym_err_PLUSout_GT] = ACTIONS(1594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1594), + [anon_sym_o_PLUSe_GT] = ACTIONS(1594), + [anon_sym_e_PLUSo_GT] = ACTIONS(1594), + [anon_sym_err_GT_GT] = ACTIONS(1590), + [anon_sym_out_GT_GT] = ACTIONS(1590), + [anon_sym_e_GT_GT] = ACTIONS(1590), + [anon_sym_o_GT_GT] = ACTIONS(1590), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1590), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1590), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1590), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(449)] = { + [sym_comment] = STATE(449), + [ts_builtin_sym_end] = ACTIONS(1706), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1748), + [anon_sym_DASH_EQ] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1748), + [anon_sym_SLASH_EQ] = ACTIONS(1748), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1748), [anon_sym_in] = ACTIONS(1706), [sym__newline] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1706), @@ -81608,10 +82459,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_GT2] = ACTIONS(1613), + [anon_sym_DASH2] = ACTIONS(1613), + [anon_sym_STAR2] = ACTIONS(1613), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -81624,7 +82474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1613), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), @@ -81632,27 +82482,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1706), [anon_sym_not_DASHlike2] = ACTIONS(1706), [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1613), + [anon_sym_SLASH2] = ACTIONS(1613), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1613), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_DOT_DOT2] = ACTIONS(1750), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1752), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1752), + [anon_sym_err_GT] = ACTIONS(1613), + [anon_sym_out_GT] = ACTIONS(1613), + [anon_sym_e_GT] = ACTIONS(1613), + [anon_sym_o_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT] = ACTIONS(1613), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -81663,9 +82513,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(439)] = { - [sym_comment] = STATE(439), - [anon_sym_EQ] = ACTIONS(1617), + [STATE(450)] = { + [sym_comment] = STATE(450), + [anon_sym_EQ] = ACTIONS(1611), [anon_sym_PLUS_EQ] = ACTIONS(1704), [anon_sym_DASH_EQ] = ACTIONS(1704), [anon_sym_STAR_EQ] = ACTIONS(1704), @@ -81683,10 +82533,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), + [anon_sym_GT2] = ACTIONS(1613), + [anon_sym_DASH2] = ACTIONS(1613), [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_STAR2] = ACTIONS(1613), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -81699,7 +82549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1613), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), @@ -81707,27 +82557,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1706), [anon_sym_not_DASHlike2] = ACTIONS(1706), [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1613), + [anon_sym_SLASH2] = ACTIONS(1613), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1613), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_DOT_DOT2] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1613), + [anon_sym_out_GT] = ACTIONS(1613), + [anon_sym_e_GT] = ACTIONS(1613), + [anon_sym_o_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT] = ACTIONS(1613), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -81738,390 +82588,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(440)] = { - [sym_comment] = STATE(440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(441)] = { - [sym_comment] = STATE(441), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_EQ_GT] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(442)] = { - [sym_comment] = STATE(442), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(1730), - [aux_sym__immediate_decimal_token5] = ACTIONS(1732), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(443)] = { - [sym__expr_parenthesized_immediate] = STATE(1269), - [sym__immediate_decimal] = STATE(1271), - [sym_val_variable] = STATE(1269), - [sym_comment] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [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(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [STATE(451)] = { + [sym_comment] = STATE(451), + [anon_sym_if] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [sym__newline] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_err_GT_PIPE] = ACTIONS(1551), + [anon_sym_out_GT_PIPE] = ACTIONS(1551), + [anon_sym_e_GT_PIPE] = ACTIONS(1551), + [anon_sym_o_GT_PIPE] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_GT2] = ACTIONS(1549), + [anon_sym_DASH2] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_EQ_GT] = ACTIONS(1551), + [anon_sym_STAR2] = ACTIONS(1549), + [anon_sym_and2] = ACTIONS(1551), + [anon_sym_xor2] = ACTIONS(1551), + [anon_sym_or2] = ACTIONS(1551), + [anon_sym_not_DASHin2] = ACTIONS(1551), + [anon_sym_has2] = ACTIONS(1551), + [anon_sym_not_DASHhas2] = ACTIONS(1551), + [anon_sym_starts_DASHwith2] = ACTIONS(1551), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1551), + [anon_sym_ends_DASHwith2] = ACTIONS(1551), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1551), + [anon_sym_EQ_EQ2] = ACTIONS(1551), + [anon_sym_BANG_EQ2] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1549), + [anon_sym_LT_EQ2] = ACTIONS(1551), + [anon_sym_GT_EQ2] = ACTIONS(1551), + [anon_sym_EQ_TILDE2] = ACTIONS(1551), + [anon_sym_BANG_TILDE2] = ACTIONS(1551), + [anon_sym_like2] = ACTIONS(1551), + [anon_sym_not_DASHlike2] = ACTIONS(1551), + [anon_sym_STAR_STAR2] = ACTIONS(1551), + [anon_sym_PLUS_PLUS2] = ACTIONS(1551), + [anon_sym_SLASH2] = ACTIONS(1549), + [anon_sym_mod2] = ACTIONS(1551), + [anon_sym_SLASH_SLASH2] = ACTIONS(1551), + [anon_sym_PLUS2] = ACTIONS(1549), + [anon_sym_bit_DASHshl2] = ACTIONS(1551), + [anon_sym_bit_DASHshr2] = ACTIONS(1551), + [anon_sym_bit_DASHand2] = ACTIONS(1551), + [anon_sym_bit_DASHxor2] = ACTIONS(1551), + [anon_sym_bit_DASHor2] = ACTIONS(1551), + [anon_sym_DOT_DOT2] = ACTIONS(1549), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1551), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1551), + [anon_sym_COLON2] = ACTIONS(1551), + [anon_sym_DOT2] = ACTIONS(1549), + [anon_sym_err_GT] = ACTIONS(1549), + [anon_sym_out_GT] = ACTIONS(1549), + [anon_sym_e_GT] = ACTIONS(1549), + [anon_sym_o_GT] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT] = ACTIONS(1549), + [anon_sym_err_GT_GT] = ACTIONS(1551), + [anon_sym_out_GT_GT] = ACTIONS(1551), + [anon_sym_e_GT_GT] = ACTIONS(1551), + [anon_sym_o_GT_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(444)] = { - [sym_comment] = STATE(444), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(1740), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [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(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [STATE(452)] = { + [sym_comment] = STATE(452), + [anon_sym_in] = ACTIONS(1468), + [sym__newline] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_err_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_GT_PIPE] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_GT2] = ACTIONS(1466), + [anon_sym_DASH2] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_EQ_GT] = ACTIONS(1468), + [anon_sym_STAR2] = ACTIONS(1466), + [anon_sym_and2] = ACTIONS(1468), + [anon_sym_xor2] = ACTIONS(1468), + [anon_sym_or2] = ACTIONS(1468), + [anon_sym_not_DASHin2] = ACTIONS(1468), + [anon_sym_has2] = ACTIONS(1468), + [anon_sym_not_DASHhas2] = ACTIONS(1468), + [anon_sym_starts_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), + [anon_sym_ends_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), + [anon_sym_EQ_EQ2] = ACTIONS(1468), + [anon_sym_BANG_EQ2] = ACTIONS(1468), + [anon_sym_LT2] = ACTIONS(1466), + [anon_sym_LT_EQ2] = ACTIONS(1468), + [anon_sym_GT_EQ2] = ACTIONS(1468), + [anon_sym_EQ_TILDE2] = ACTIONS(1468), + [anon_sym_BANG_TILDE2] = ACTIONS(1468), + [anon_sym_like2] = ACTIONS(1468), + [anon_sym_not_DASHlike2] = ACTIONS(1468), + [anon_sym_STAR_STAR2] = ACTIONS(1468), + [anon_sym_PLUS_PLUS2] = ACTIONS(1468), + [anon_sym_SLASH2] = ACTIONS(1466), + [anon_sym_mod2] = ACTIONS(1468), + [anon_sym_SLASH_SLASH2] = ACTIONS(1468), + [anon_sym_PLUS2] = ACTIONS(1466), + [anon_sym_bit_DASHshl2] = ACTIONS(1468), + [anon_sym_bit_DASHshr2] = ACTIONS(1468), + [anon_sym_bit_DASHand2] = ACTIONS(1468), + [anon_sym_bit_DASHxor2] = ACTIONS(1468), + [anon_sym_bit_DASHor2] = ACTIONS(1468), + [anon_sym_DOT_DOT2] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), + [anon_sym_COLON2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_DOT2] = ACTIONS(1466), + [anon_sym_err_GT] = ACTIONS(1466), + [anon_sym_out_GT] = ACTIONS(1466), + [anon_sym_e_GT] = ACTIONS(1466), + [anon_sym_o_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT] = ACTIONS(1466), + [anon_sym_err_GT_GT] = ACTIONS(1468), + [anon_sym_out_GT_GT] = ACTIONS(1468), + [anon_sym_e_GT_GT] = ACTIONS(1468), + [anon_sym_o_GT_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(445)] = { - [sym_comment] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_PLUS_EQ] = ACTIONS(1746), - [anon_sym_DASH_EQ] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1746), - [anon_sym_SLASH_EQ] = ACTIONS(1746), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1746), + [STATE(453)] = { + [sym_comment] = STATE(453), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1758), + [anon_sym_DASH_EQ] = ACTIONS(1758), + [anon_sym_STAR_EQ] = ACTIONS(1758), + [anon_sym_SLASH_EQ] = ACTIONS(1758), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1758), [anon_sym_in] = ACTIONS(1706), [sym__newline] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1706), @@ -82134,9 +82758,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1613), + [anon_sym_DASH2] = ACTIONS(1613), + [anon_sym_STAR2] = ACTIONS(1613), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -82149,7 +82774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1613), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), @@ -82157,27 +82782,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1706), [anon_sym_not_DASHlike2] = ACTIONS(1706), [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1613), + [anon_sym_SLASH2] = ACTIONS(1613), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1613), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_DOT_DOT2] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1613), + [anon_sym_out_GT] = ACTIONS(1613), + [anon_sym_e_GT] = ACTIONS(1613), + [anon_sym_o_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT] = ACTIONS(1613), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -82188,705 +82813,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(446)] = { - [sym__expr_parenthesized_immediate] = STATE(4739), - [sym_comment] = STATE(446), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(1754), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), - [sym_filesize_unit] = ACTIONS(1758), - [sym_duration_unit] = ACTIONS(1760), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(447)] = { - [sym_comment] = STATE(447), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_EQ_GT] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1537), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(448)] = { - [sym__expr_parenthesized_immediate] = STATE(1336), - [sym__immediate_decimal] = STATE(1337), - [sym_val_variable] = STATE(1336), - [sym_comment] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [sym__newline] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_err_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_GT_PIPE] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_has2] = ACTIONS(1667), - [anon_sym_not_DASHhas2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1667), - [anon_sym_GT_EQ2] = ACTIONS(1667), - [anon_sym_EQ_TILDE2] = ACTIONS(1667), - [anon_sym_BANG_TILDE2] = ACTIONS(1667), - [anon_sym_like2] = ACTIONS(1667), - [anon_sym_not_DASHlike2] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1667), - [anon_sym_bit_DASHshr2] = ACTIONS(1667), - [anon_sym_bit_DASHand2] = ACTIONS(1667), - [anon_sym_bit_DASHxor2] = ACTIONS(1667), - [anon_sym_bit_DASHor2] = ACTIONS(1667), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1667), - [anon_sym_out_GT_GT] = ACTIONS(1667), - [anon_sym_e_GT_GT] = ACTIONS(1667), - [anon_sym_o_GT_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(449)] = { - [sym__expr_parenthesized_immediate] = STATE(1339), - [sym__immediate_decimal] = STATE(1340), - [sym_val_variable] = STATE(1339), - [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_has2] = ACTIONS(1671), - [anon_sym_not_DASHhas2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_like2] = ACTIONS(1671), - [anon_sym_not_DASHlike2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(450)] = { - [sym__expr_parenthesized_immediate] = STATE(1341), - [sym__immediate_decimal] = STATE(1342), - [sym_val_variable] = STATE(1341), - [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(451)] = { - [sym__expr_parenthesized_immediate] = STATE(1343), - [sym__immediate_decimal] = STATE(1344), - [sym_val_variable] = STATE(1343), - [sym_comment] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(452)] = { - [sym__expr_parenthesized_immediate] = STATE(1311), - [sym__immediate_decimal] = STATE(1318), - [sym_val_variable] = STATE(1311), - [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(453)] = { - [sym_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(454)] = { [sym_comment] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1762), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_has2] = ACTIONS(1760), + [anon_sym_not_DASHhas2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1762), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_like2] = ACTIONS(1760), + [anon_sym_not_DASHlike2] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1762), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1762), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1764), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1760), [aux_sym__immediate_decimal_token5] = ACTIONS(1766), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), + [anon_sym_err_GT] = ACTIONS(1762), + [anon_sym_out_GT] = ACTIONS(1762), + [anon_sym_e_GT] = ACTIONS(1762), + [anon_sym_o_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT] = ACTIONS(1762), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [sym__unquoted_pattern] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), }, [STATE(455)] = { - [sym_cmd_identifier] = STATE(4308), - [sym__match_pattern_record_body] = STATE(5085), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4048), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4971), + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4536), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), + [sym_val_cellpath] = STATE(4536), + [sym_val_number] = STATE(4536), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4536), + [sym_val_filesize] = STATE(4536), + [sym_val_binary] = STATE(4536), + [sym_val_string] = STATE(4536), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_interpolated] = STATE(4536), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4536), + [sym__spread_list] = STATE(4668), + [sym_val_entry] = STATE(4589), + [sym_val_record] = STATE(4536), + [sym_val_table] = STATE(4536), + [sym_val_closure] = STATE(4536), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), [sym_comment] = STATE(455), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), + [aux_sym__types_body_repeat1] = STATE(2122), + [aux_sym_list_body_repeat1] = STATE(649), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [sym__newline] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, + [STATE(456)] = { + [sym_cmd_identifier] = STATE(4323), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5075), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(5055), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(456), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -82937,30 +83036,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(456)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(4796), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(456), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(457)] = { + [sym_cmd_identifier] = STATE(4323), + [sym__match_pattern_record_body] = STATE(4869), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4182), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_entry] = STATE(4547), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(457), + [aux_sym__types_body_repeat1] = STATE(521), + [aux_sym__match_pattern_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83011,30 +83110,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(457)] = { - [sym_cmd_identifier] = STATE(4308), - [sym__match_pattern_record_body] = STATE(4816), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4048), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(457), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), + [STATE(458)] = { + [sym_cmd_identifier] = STATE(4323), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5075), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(5019), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(458), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83085,30 +83184,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(458)] = { - [sym_cmd_identifier] = STATE(4308), - [sym__match_pattern_record_body] = STATE(5190), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4048), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(458), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), + [STATE(459)] = { + [sym_cmd_identifier] = STATE(4323), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5075), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(5095), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(459), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83159,600 +83258,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(459)] = { - [sym_comment] = STATE(459), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(1806), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(460)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5066), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), [sym_comment] = STATE(460), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1808), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1762), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_has2] = ACTIONS(1760), + [anon_sym_not_DASHhas2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1762), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_like2] = ACTIONS(1760), + [anon_sym_not_DASHlike2] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1762), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1762), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1762), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1760), + [aux_sym__immediate_decimal_token5] = ACTIONS(1766), + [anon_sym_err_GT] = ACTIONS(1762), + [anon_sym_out_GT] = ACTIONS(1762), + [anon_sym_e_GT] = ACTIONS(1762), + [anon_sym_o_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT] = ACTIONS(1762), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [sym__unquoted_pattern] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(461)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5191), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), [sym_comment] = STATE(461), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(462)] = { - [sym_comment] = STATE(462), - [anon_sym_in] = ACTIONS(851), - [sym__newline] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_err_GT_PIPE] = ACTIONS(851), - [anon_sym_out_GT_PIPE] = ACTIONS(851), - [anon_sym_e_GT_PIPE] = ACTIONS(851), - [anon_sym_o_GT_PIPE] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(851), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(851), - [anon_sym_RBRACE] = ACTIONS(851), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(851), - [anon_sym_xor2] = ACTIONS(851), - [anon_sym_or2] = ACTIONS(851), - [anon_sym_not_DASHin2] = ACTIONS(851), - [anon_sym_has2] = ACTIONS(851), - [anon_sym_not_DASHhas2] = ACTIONS(851), - [anon_sym_starts_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(851), - [anon_sym_ends_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(851), - [anon_sym_EQ_EQ2] = ACTIONS(851), - [anon_sym_BANG_EQ2] = ACTIONS(851), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(851), - [anon_sym_GT_EQ2] = ACTIONS(851), - [anon_sym_EQ_TILDE2] = ACTIONS(851), - [anon_sym_BANG_TILDE2] = ACTIONS(851), - [anon_sym_like2] = ACTIONS(851), - [anon_sym_not_DASHlike2] = ACTIONS(851), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_STAR_STAR2] = ACTIONS(851), - [anon_sym_PLUS_PLUS2] = ACTIONS(851), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(851), - [anon_sym_SLASH_SLASH2] = ACTIONS(851), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(851), - [anon_sym_bit_DASHshr2] = ACTIONS(851), - [anon_sym_bit_DASHand2] = ACTIONS(851), - [anon_sym_bit_DASHxor2] = ACTIONS(851), - [anon_sym_bit_DASHor2] = ACTIONS(851), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(851), - [anon_sym_out_GT_GT] = ACTIONS(851), - [anon_sym_e_GT_GT] = ACTIONS(851), - [anon_sym_o_GT_GT] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(851), - [sym__unquoted_pattern] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(463)] = { - [sym__expr_parenthesized_immediate] = STATE(4775), - [sym_comment] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(1812), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1814), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1814), - [sym_filesize_unit] = ACTIONS(1816), - [sym_duration_unit] = ACTIONS(1818), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(464)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4583), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(464), - [aux_sym__types_body_repeat1] = STATE(2117), - [aux_sym_list_body_repeat1] = STATE(630), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(465)] = { - [sym_comment] = STATE(465), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_COLON2] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(466)] = { - [sym_comment] = STATE(466), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_err_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_GT_PIPE] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), - [anon_sym_RPAREN] = ACTIONS(1822), - [anon_sym_GT2] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_EQ_GT] = ACTIONS(1822), - [anon_sym_STAR2] = ACTIONS(1824), - [anon_sym_and2] = ACTIONS(1822), - [anon_sym_xor2] = ACTIONS(1822), - [anon_sym_or2] = ACTIONS(1822), - [anon_sym_not_DASHin2] = ACTIONS(1822), - [anon_sym_has2] = ACTIONS(1822), - [anon_sym_not_DASHhas2] = ACTIONS(1822), - [anon_sym_starts_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1822), - [anon_sym_ends_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1822), - [anon_sym_EQ_EQ2] = ACTIONS(1822), - [anon_sym_BANG_EQ2] = ACTIONS(1822), - [anon_sym_LT2] = ACTIONS(1824), - [anon_sym_LT_EQ2] = ACTIONS(1822), - [anon_sym_GT_EQ2] = ACTIONS(1822), - [anon_sym_EQ_TILDE2] = ACTIONS(1822), - [anon_sym_BANG_TILDE2] = ACTIONS(1822), - [anon_sym_like2] = ACTIONS(1822), - [anon_sym_not_DASHlike2] = ACTIONS(1822), - [anon_sym_STAR_STAR2] = ACTIONS(1822), - [anon_sym_PLUS_PLUS2] = ACTIONS(1822), - [anon_sym_SLASH2] = ACTIONS(1824), - [anon_sym_mod2] = ACTIONS(1822), - [anon_sym_SLASH_SLASH2] = ACTIONS(1822), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_bit_DASHshl2] = ACTIONS(1822), - [anon_sym_bit_DASHshr2] = ACTIONS(1822), - [anon_sym_bit_DASHand2] = ACTIONS(1822), - [anon_sym_bit_DASHxor2] = ACTIONS(1822), - [anon_sym_bit_DASHor2] = ACTIONS(1822), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), - [anon_sym_COLON2] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(467)] = { - [sym_comment] = STATE(467), + [ts_builtin_sym_end] = ACTIONS(773), [anon_sym_in] = ACTIONS(773), [sym__newline] = ACTIONS(773), [anon_sym_SEMI] = ACTIONS(773), @@ -83765,10 +83347,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(773), [anon_sym_xor2] = ACTIONS(773), @@ -83804,6 +83384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1802), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -83825,30 +83406,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(468)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5015), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(468), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(462)] = { + [sym_cmd_identifier] = STATE(4323), + [sym__match_pattern_record_body] = STATE(4801), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4182), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_entry] = STATE(4547), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(462), + [aux_sym__types_body_repeat1] = STATE(521), + [aux_sym__match_pattern_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83879,7 +83460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1774), [anon_sym_DOLLAR] = ACTIONS(1794), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1804), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), @@ -83899,9 +83480,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(469)] = { - [sym_comment] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(741), + [STATE(463)] = { + [sym_cmd_identifier] = STATE(4323), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5075), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(5074), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(463), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_record_body_repeat1] = STATE(895), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [sym__newline] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1780), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1784), + [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), + }, + [STATE(464)] = { + [sym_comment] = STATE(464), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(741), @@ -83914,8 +83568,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(741), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(741), [anon_sym_xor2] = ACTIONS(741), @@ -83951,7 +83607,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1712), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -83973,157 +83628,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(470)] = { - [sym_comment] = STATE(470), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [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(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [STATE(465)] = { + [sym_cmd_identifier] = STATE(4323), + [sym__match_pattern_record_body] = STATE(4926), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4182), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_entry] = STATE(4547), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(465), + [aux_sym__types_body_repeat1] = STATE(521), + [aux_sym__match_pattern_record_body_repeat1] = STATE(823), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [sym__newline] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1780), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1784), + [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(471)] = { - [sym_comment] = STATE(471), - [anon_sym_EQ] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1830), - [anon_sym_DASH_EQ] = ACTIONS(1830), - [anon_sym_STAR_EQ] = ACTIONS(1830), - [anon_sym_SLASH_EQ] = ACTIONS(1830), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1830), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [STATE(466)] = { + [sym_comment] = STATE(466), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [anon_sym_DOT_DOT2] = ACTIONS(1812), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1810), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1810), + [aux_sym__immediate_decimal_token5] = ACTIONS(1814), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(472)] = { - [sym_comment] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(773), + [STATE(467)] = { + [sym_comment] = STATE(467), [anon_sym_in] = ACTIONS(773), [sym__newline] = ACTIONS(773), [anon_sym_SEMI] = ACTIONS(773), @@ -84136,8 +83790,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(773), [anon_sym_xor2] = ACTIONS(773), @@ -84173,7 +83829,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1832), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -84195,8 +83850,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(473)] = { - [sym_comment] = STATE(473), + [STATE(468)] = { + [sym_comment] = STATE(468), + [anon_sym_in] = ACTIONS(880), + [sym__newline] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_err_GT_PIPE] = ACTIONS(880), + [anon_sym_out_GT_PIPE] = ACTIONS(880), + [anon_sym_e_GT_PIPE] = ACTIONS(880), + [anon_sym_o_GT_PIPE] = ACTIONS(880), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(880), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(880), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(880), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_GT2] = ACTIONS(878), + [anon_sym_DASH2] = ACTIONS(880), + [anon_sym_RBRACE] = ACTIONS(880), + [anon_sym_STAR2] = ACTIONS(878), + [anon_sym_and2] = ACTIONS(880), + [anon_sym_xor2] = ACTIONS(880), + [anon_sym_or2] = ACTIONS(880), + [anon_sym_not_DASHin2] = ACTIONS(880), + [anon_sym_has2] = ACTIONS(880), + [anon_sym_not_DASHhas2] = ACTIONS(880), + [anon_sym_starts_DASHwith2] = ACTIONS(880), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(880), + [anon_sym_ends_DASHwith2] = ACTIONS(880), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(880), + [anon_sym_EQ_EQ2] = ACTIONS(880), + [anon_sym_BANG_EQ2] = ACTIONS(880), + [anon_sym_LT2] = ACTIONS(878), + [anon_sym_LT_EQ2] = ACTIONS(880), + [anon_sym_GT_EQ2] = ACTIONS(880), + [anon_sym_EQ_TILDE2] = ACTIONS(880), + [anon_sym_BANG_TILDE2] = ACTIONS(880), + [anon_sym_like2] = ACTIONS(880), + [anon_sym_not_DASHlike2] = ACTIONS(880), + [anon_sym_LPAREN2] = ACTIONS(880), + [anon_sym_STAR_STAR2] = ACTIONS(880), + [anon_sym_PLUS_PLUS2] = ACTIONS(880), + [anon_sym_SLASH2] = ACTIONS(878), + [anon_sym_mod2] = ACTIONS(880), + [anon_sym_SLASH_SLASH2] = ACTIONS(880), + [anon_sym_PLUS2] = ACTIONS(878), + [anon_sym_bit_DASHshl2] = ACTIONS(880), + [anon_sym_bit_DASHshr2] = ACTIONS(880), + [anon_sym_bit_DASHand2] = ACTIONS(880), + [anon_sym_bit_DASHxor2] = ACTIONS(880), + [anon_sym_bit_DASHor2] = ACTIONS(880), + [anon_sym_DOT_DOT2] = ACTIONS(878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(880), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), + [anon_sym_err_GT] = ACTIONS(878), + [anon_sym_out_GT] = ACTIONS(878), + [anon_sym_e_GT] = ACTIONS(878), + [anon_sym_o_GT] = ACTIONS(878), + [anon_sym_err_PLUSout_GT] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(878), + [anon_sym_o_PLUSe_GT] = ACTIONS(878), + [anon_sym_e_PLUSo_GT] = ACTIONS(878), + [anon_sym_err_GT_GT] = ACTIONS(880), + [anon_sym_out_GT_GT] = ACTIONS(880), + [anon_sym_e_GT_GT] = ACTIONS(880), + [anon_sym_o_GT_GT] = ACTIONS(880), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(880), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(880), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(880), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(880), + [sym__unquoted_pattern] = ACTIONS(878), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(469)] = { + [sym_comment] = STATE(469), + [anon_sym_if] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_EQ_GT] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1816), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1816), + [anon_sym_COLON2] = ACTIONS(1816), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(470)] = { + [sym_comment] = STATE(470), + [anon_sym_EQ] = ACTIONS(1820), + [anon_sym_PLUS_EQ] = ACTIONS(1822), + [anon_sym_DASH_EQ] = ACTIONS(1822), + [anon_sym_STAR_EQ] = ACTIONS(1822), + [anon_sym_SLASH_EQ] = ACTIONS(1822), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1613), + [anon_sym_DASH2] = ACTIONS(1613), + [anon_sym_STAR2] = ACTIONS(1613), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1613), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1613), + [anon_sym_SLASH2] = ACTIONS(1613), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1613), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_DOT_DOT2] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1613), + [anon_sym_out_GT] = ACTIONS(1613), + [anon_sym_e_GT] = ACTIONS(1613), + [anon_sym_o_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT] = ACTIONS(1613), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(471)] = { + [sym_comment] = STATE(471), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), [anon_sym_SEMI] = ACTIONS(749), @@ -84209,10 +84087,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(749), [anon_sym_xor2] = ACTIONS(749), @@ -84248,6 +84124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token5] = ACTIONS(1714), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -84269,14 +84146,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(474)] = { - [sym_comment] = STATE(474), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_STAR_EQ] = ACTIONS(1836), - [anon_sym_SLASH_EQ] = ACTIONS(1836), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1836), + [STATE(472)] = { + [sym_comment] = STATE(472), + [anon_sym_EQ] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1826), + [anon_sym_DASH_EQ] = ACTIONS(1826), + [anon_sym_STAR_EQ] = ACTIONS(1826), + [anon_sym_SLASH_EQ] = ACTIONS(1826), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1826), [anon_sym_in] = ACTIONS(1706), [sym__newline] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1706), @@ -84289,9 +84166,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_GT2] = ACTIONS(1613), + [anon_sym_DASH2] = ACTIONS(1613), + [anon_sym_STAR2] = ACTIONS(1613), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -84304,7 +84181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1613), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), @@ -84312,27 +84189,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1706), [anon_sym_not_DASHlike2] = ACTIONS(1706), [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_PLUS_PLUS2] = ACTIONS(1613), + [anon_sym_SLASH2] = ACTIONS(1613), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1613), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_DOT_DOT2] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1613), + [anon_sym_out_GT] = ACTIONS(1613), + [anon_sym_e_GT] = ACTIONS(1613), + [anon_sym_o_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT] = ACTIONS(1613), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -84343,30 +84220,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(475)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_body] = STATE(5053), - [sym_record_entry] = STATE(4558), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(475), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(473)] = { + [sym_cmd_identifier] = STATE(4323), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5075), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_body] = STATE(4881), + [sym_record_entry] = STATE(4572), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(473), + [aux_sym__types_body_repeat1] = STATE(646), + [aux_sym_record_body_repeat1] = STATE(895), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -84395,9 +84272,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1770), [sym__newline] = ACTIONS(1772), [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1776), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1828), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), @@ -84417,82 +84294,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, + [STATE(474)] = { + [sym__expr_parenthesized_immediate] = STATE(4765), + [sym_comment] = STATE(474), + [ts_builtin_sym_end] = ACTIONS(960), + [anon_sym_in] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(960), + [anon_sym_xor2] = ACTIONS(960), + [anon_sym_or2] = ACTIONS(960), + [anon_sym_not_DASHin2] = ACTIONS(960), + [anon_sym_has2] = ACTIONS(960), + [anon_sym_not_DASHhas2] = ACTIONS(960), + [anon_sym_starts_DASHwith2] = ACTIONS(960), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(960), + [anon_sym_ends_DASHwith2] = ACTIONS(960), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(960), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(960), + [anon_sym_like2] = ACTIONS(960), + [anon_sym_not_DASHlike2] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(960), + [anon_sym_PLUS_PLUS2] = ACTIONS(960), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(960), + [anon_sym_SLASH_SLASH2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(960), + [anon_sym_bit_DASHshr2] = ACTIONS(960), + [anon_sym_bit_DASHand2] = ACTIONS(960), + [anon_sym_bit_DASHxor2] = ACTIONS(960), + [anon_sym_bit_DASHor2] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(1830), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1832), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1832), + [sym_filesize_unit] = ACTIONS(1834), + [sym_duration_unit] = ACTIONS(1836), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [sym__unquoted_pattern] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(475)] = { + [sym_comment] = STATE(475), + [anon_sym_if] = ACTIONS(1665), + [anon_sym_in] = ACTIONS(1665), + [sym__newline] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_err_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_GT_PIPE] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), + [anon_sym_RPAREN] = ACTIONS(1665), + [anon_sym_GT2] = ACTIONS(1667), + [anon_sym_DASH2] = ACTIONS(1665), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_EQ_GT] = ACTIONS(1665), + [anon_sym_STAR2] = ACTIONS(1667), + [anon_sym_and2] = ACTIONS(1665), + [anon_sym_xor2] = ACTIONS(1665), + [anon_sym_or2] = ACTIONS(1665), + [anon_sym_not_DASHin2] = ACTIONS(1665), + [anon_sym_has2] = ACTIONS(1665), + [anon_sym_not_DASHhas2] = ACTIONS(1665), + [anon_sym_starts_DASHwith2] = ACTIONS(1665), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1665), + [anon_sym_ends_DASHwith2] = ACTIONS(1665), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1665), + [anon_sym_EQ_EQ2] = ACTIONS(1665), + [anon_sym_BANG_EQ2] = ACTIONS(1665), + [anon_sym_LT2] = ACTIONS(1667), + [anon_sym_LT_EQ2] = ACTIONS(1665), + [anon_sym_GT_EQ2] = ACTIONS(1665), + [anon_sym_EQ_TILDE2] = ACTIONS(1665), + [anon_sym_BANG_TILDE2] = ACTIONS(1665), + [anon_sym_like2] = ACTIONS(1665), + [anon_sym_not_DASHlike2] = ACTIONS(1665), + [anon_sym_STAR_STAR2] = ACTIONS(1665), + [anon_sym_PLUS_PLUS2] = ACTIONS(1665), + [anon_sym_SLASH2] = ACTIONS(1667), + [anon_sym_mod2] = ACTIONS(1665), + [anon_sym_SLASH_SLASH2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(1667), + [anon_sym_bit_DASHshl2] = ACTIONS(1665), + [anon_sym_bit_DASHshr2] = ACTIONS(1665), + [anon_sym_bit_DASHand2] = ACTIONS(1665), + [anon_sym_bit_DASHxor2] = ACTIONS(1665), + [anon_sym_bit_DASHor2] = ACTIONS(1665), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1665), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1665), + [anon_sym_COLON2] = ACTIONS(1665), + [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(1665), + [anon_sym_out_GT_GT] = ACTIONS(1665), + [anon_sym_e_GT_GT] = ACTIONS(1665), + [anon_sym_o_GT_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(476)] = { [sym_comment] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1570), + [anon_sym_GT2] = ACTIONS(1568), + [anon_sym_DASH2] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_RBRACE] = ACTIONS(1570), + [anon_sym_EQ_GT] = ACTIONS(1570), + [anon_sym_STAR2] = ACTIONS(1568), + [anon_sym_and2] = ACTIONS(1570), + [anon_sym_xor2] = ACTIONS(1570), + [anon_sym_or2] = ACTIONS(1570), + [anon_sym_not_DASHin2] = ACTIONS(1570), + [anon_sym_has2] = ACTIONS(1570), + [anon_sym_not_DASHhas2] = ACTIONS(1570), + [anon_sym_starts_DASHwith2] = ACTIONS(1570), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1570), + [anon_sym_ends_DASHwith2] = ACTIONS(1570), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1570), + [anon_sym_EQ_EQ2] = ACTIONS(1570), + [anon_sym_BANG_EQ2] = ACTIONS(1570), + [anon_sym_LT2] = ACTIONS(1568), + [anon_sym_LT_EQ2] = ACTIONS(1570), + [anon_sym_GT_EQ2] = ACTIONS(1570), + [anon_sym_EQ_TILDE2] = ACTIONS(1570), + [anon_sym_BANG_TILDE2] = ACTIONS(1570), + [anon_sym_like2] = ACTIONS(1570), + [anon_sym_not_DASHlike2] = ACTIONS(1570), + [anon_sym_STAR_STAR2] = ACTIONS(1570), + [anon_sym_PLUS_PLUS2] = ACTIONS(1570), + [anon_sym_SLASH2] = ACTIONS(1568), + [anon_sym_mod2] = ACTIONS(1570), + [anon_sym_SLASH_SLASH2] = ACTIONS(1570), + [anon_sym_PLUS2] = ACTIONS(1568), + [anon_sym_bit_DASHshl2] = ACTIONS(1570), + [anon_sym_bit_DASHshr2] = ACTIONS(1570), + [anon_sym_bit_DASHand2] = ACTIONS(1570), + [anon_sym_bit_DASHxor2] = ACTIONS(1570), + [anon_sym_bit_DASHor2] = ACTIONS(1570), + [anon_sym_DOT_DOT2] = ACTIONS(1568), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1570), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1570), + [anon_sym_COLON2] = ACTIONS(1570), + [anon_sym_err_GT] = ACTIONS(1568), + [anon_sym_out_GT] = ACTIONS(1568), + [anon_sym_e_GT] = ACTIONS(1568), + [anon_sym_o_GT] = ACTIONS(1568), + [anon_sym_err_PLUSout_GT] = ACTIONS(1568), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1568), + [anon_sym_o_PLUSe_GT] = ACTIONS(1568), + [anon_sym_e_PLUSo_GT] = ACTIONS(1568), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(477)] = { [sym_comment] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(1726), + [ts_builtin_sym_end] = ACTIONS(1508), + [anon_sym_in] = ACTIONS(1508), + [sym__newline] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_err_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_GT_PIPE] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1508), + [anon_sym_GT2] = ACTIONS(1506), + [anon_sym_DASH2] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_STAR2] = ACTIONS(1506), + [anon_sym_and2] = ACTIONS(1508), + [anon_sym_xor2] = ACTIONS(1508), + [anon_sym_or2] = ACTIONS(1508), + [anon_sym_not_DASHin2] = ACTIONS(1508), + [anon_sym_has2] = ACTIONS(1508), + [anon_sym_not_DASHhas2] = ACTIONS(1508), + [anon_sym_starts_DASHwith2] = ACTIONS(1508), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1508), + [anon_sym_ends_DASHwith2] = ACTIONS(1508), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1508), + [anon_sym_EQ_EQ2] = ACTIONS(1508), + [anon_sym_BANG_EQ2] = ACTIONS(1508), + [anon_sym_LT2] = ACTIONS(1506), + [anon_sym_LT_EQ2] = ACTIONS(1508), + [anon_sym_GT_EQ2] = ACTIONS(1508), + [anon_sym_EQ_TILDE2] = ACTIONS(1508), + [anon_sym_BANG_TILDE2] = ACTIONS(1508), + [anon_sym_like2] = ACTIONS(1508), + [anon_sym_not_DASHlike2] = ACTIONS(1508), + [anon_sym_STAR_STAR2] = ACTIONS(1508), + [anon_sym_PLUS_PLUS2] = ACTIONS(1508), + [anon_sym_SLASH2] = ACTIONS(1506), + [anon_sym_mod2] = ACTIONS(1508), + [anon_sym_SLASH_SLASH2] = ACTIONS(1508), + [anon_sym_PLUS2] = ACTIONS(1506), + [anon_sym_bit_DASHshl2] = ACTIONS(1508), + [anon_sym_bit_DASHshr2] = ACTIONS(1508), + [anon_sym_bit_DASHand2] = ACTIONS(1508), + [anon_sym_bit_DASHxor2] = ACTIONS(1508), + [anon_sym_bit_DASHor2] = ACTIONS(1508), + [anon_sym_DOT_DOT2] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1508), + [anon_sym_QMARK2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_DOT2] = ACTIONS(1506), + [anon_sym_err_GT] = ACTIONS(1506), + [anon_sym_out_GT] = ACTIONS(1506), + [anon_sym_e_GT] = ACTIONS(1506), + [anon_sym_o_GT] = ACTIONS(1506), + [anon_sym_err_PLUSout_GT] = ACTIONS(1506), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1506), + [anon_sym_o_PLUSe_GT] = ACTIONS(1506), + [anon_sym_e_PLUSo_GT] = ACTIONS(1506), + [anon_sym_err_GT_GT] = ACTIONS(1508), + [anon_sym_out_GT_GT] = ACTIONS(1508), + [anon_sym_e_GT_GT] = ACTIONS(1508), + [anon_sym_o_GT_GT] = ACTIONS(1508), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1508), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1508), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1508), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(478)] = { + [sym_comment] = STATE(478), + [ts_builtin_sym_end] = ACTIONS(1520), + [anon_sym_in] = 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_GT2] = ACTIONS(1518), + [anon_sym_DASH2] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_STAR2] = ACTIONS(1518), + [anon_sym_and2] = ACTIONS(1520), + [anon_sym_xor2] = ACTIONS(1520), + [anon_sym_or2] = ACTIONS(1520), + [anon_sym_not_DASHin2] = ACTIONS(1520), + [anon_sym_has2] = ACTIONS(1520), + [anon_sym_not_DASHhas2] = ACTIONS(1520), + [anon_sym_starts_DASHwith2] = ACTIONS(1520), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1520), + [anon_sym_ends_DASHwith2] = ACTIONS(1520), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1520), + [anon_sym_EQ_EQ2] = ACTIONS(1520), + [anon_sym_BANG_EQ2] = ACTIONS(1520), + [anon_sym_LT2] = ACTIONS(1518), + [anon_sym_LT_EQ2] = ACTIONS(1520), + [anon_sym_GT_EQ2] = ACTIONS(1520), + [anon_sym_EQ_TILDE2] = ACTIONS(1520), + [anon_sym_BANG_TILDE2] = ACTIONS(1520), + [anon_sym_like2] = ACTIONS(1520), + [anon_sym_not_DASHlike2] = ACTIONS(1520), + [anon_sym_STAR_STAR2] = ACTIONS(1520), + [anon_sym_PLUS_PLUS2] = ACTIONS(1520), + [anon_sym_SLASH2] = ACTIONS(1518), + [anon_sym_mod2] = ACTIONS(1520), + [anon_sym_SLASH_SLASH2] = ACTIONS(1520), + [anon_sym_PLUS2] = ACTIONS(1518), + [anon_sym_bit_DASHshl2] = ACTIONS(1520), + [anon_sym_bit_DASHshr2] = ACTIONS(1520), + [anon_sym_bit_DASHand2] = ACTIONS(1520), + [anon_sym_bit_DASHxor2] = ACTIONS(1520), + [anon_sym_bit_DASHor2] = ACTIONS(1520), + [anon_sym_DOT_DOT2] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), + [anon_sym_QMARK2] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_DOT2] = ACTIONS(1518), + [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(3), + }, + [STATE(479)] = { + [sym_comment] = STATE(479), [anon_sym_in] = ACTIONS(1726), [sym__newline] = ACTIONS(1726), [anon_sym_SEMI] = ACTIONS(1726), @@ -84505,8 +84675,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), [anon_sym_GT2] = ACTIONS(1728), [anon_sym_DASH2] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), [anon_sym_STAR2] = ACTIONS(1728), [anon_sym_and2] = ACTIONS(1726), [anon_sym_xor2] = ACTIONS(1726), @@ -84542,8 +84715,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1728), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(1840), - [aux_sym__immediate_decimal_token5] = ACTIONS(1842), [anon_sym_err_GT] = ACTIONS(1728), [anon_sym_out_GT] = ACTIONS(1728), [anon_sym_e_GT] = ACTIONS(1728), @@ -84563,572 +84734,791 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(478)] = { - [sym_cell_path] = STATE(935), - [sym_path] = STATE(783), - [sym_comment] = STATE(478), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(479)] = { - [sym_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(480)] = { [sym_comment] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1480), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [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(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1512), + [anon_sym_in] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_err_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_GT_PIPE] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1512), + [anon_sym_GT2] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_STAR2] = ACTIONS(1510), + [anon_sym_and2] = ACTIONS(1512), + [anon_sym_xor2] = ACTIONS(1512), + [anon_sym_or2] = ACTIONS(1512), + [anon_sym_not_DASHin2] = ACTIONS(1512), + [anon_sym_has2] = ACTIONS(1512), + [anon_sym_not_DASHhas2] = ACTIONS(1512), + [anon_sym_starts_DASHwith2] = ACTIONS(1512), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1512), + [anon_sym_ends_DASHwith2] = ACTIONS(1512), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1512), + [anon_sym_EQ_EQ2] = ACTIONS(1512), + [anon_sym_BANG_EQ2] = ACTIONS(1512), + [anon_sym_LT2] = ACTIONS(1510), + [anon_sym_LT_EQ2] = ACTIONS(1512), + [anon_sym_GT_EQ2] = ACTIONS(1512), + [anon_sym_EQ_TILDE2] = ACTIONS(1512), + [anon_sym_BANG_TILDE2] = ACTIONS(1512), + [anon_sym_like2] = ACTIONS(1512), + [anon_sym_not_DASHlike2] = ACTIONS(1512), + [anon_sym_STAR_STAR2] = ACTIONS(1512), + [anon_sym_PLUS_PLUS2] = ACTIONS(1512), + [anon_sym_SLASH2] = ACTIONS(1510), + [anon_sym_mod2] = ACTIONS(1512), + [anon_sym_SLASH_SLASH2] = ACTIONS(1512), + [anon_sym_PLUS2] = ACTIONS(1510), + [anon_sym_bit_DASHshl2] = ACTIONS(1512), + [anon_sym_bit_DASHshr2] = ACTIONS(1512), + [anon_sym_bit_DASHand2] = ACTIONS(1512), + [anon_sym_bit_DASHxor2] = ACTIONS(1512), + [anon_sym_bit_DASHor2] = ACTIONS(1512), + [anon_sym_DOT_DOT2] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1512), + [anon_sym_QMARK2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_DOT2] = ACTIONS(1510), + [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(1512), + [anon_sym_out_GT_GT] = ACTIONS(1512), + [anon_sym_e_GT_GT] = ACTIONS(1512), + [anon_sym_o_GT_GT] = ACTIONS(1512), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1512), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1512), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1512), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1512), [anon_sym_POUND] = ACTIONS(3), }, [STATE(481)] = { + [sym_cell_path] = STATE(949), + [sym_path] = STATE(451), [sym_comment] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(1846), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [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(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = ACTIONS(1840), + [sym__newline] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1840), + [anon_sym_err_GT_PIPE] = ACTIONS(1840), + [anon_sym_out_GT_PIPE] = ACTIONS(1840), + [anon_sym_e_GT_PIPE] = ACTIONS(1840), + [anon_sym_o_GT_PIPE] = ACTIONS(1840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_GT2] = ACTIONS(1842), + [anon_sym_DASH2] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1840), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_EQ_GT] = ACTIONS(1840), + [anon_sym_STAR2] = ACTIONS(1842), + [anon_sym_and2] = ACTIONS(1840), + [anon_sym_xor2] = ACTIONS(1840), + [anon_sym_or2] = ACTIONS(1840), + [anon_sym_not_DASHin2] = ACTIONS(1840), + [anon_sym_has2] = ACTIONS(1840), + [anon_sym_not_DASHhas2] = ACTIONS(1840), + [anon_sym_starts_DASHwith2] = ACTIONS(1840), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1840), + [anon_sym_ends_DASHwith2] = ACTIONS(1840), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1840), + [anon_sym_EQ_EQ2] = ACTIONS(1840), + [anon_sym_BANG_EQ2] = ACTIONS(1840), + [anon_sym_LT2] = ACTIONS(1842), + [anon_sym_LT_EQ2] = ACTIONS(1840), + [anon_sym_GT_EQ2] = ACTIONS(1840), + [anon_sym_EQ_TILDE2] = ACTIONS(1840), + [anon_sym_BANG_TILDE2] = ACTIONS(1840), + [anon_sym_like2] = ACTIONS(1840), + [anon_sym_not_DASHlike2] = ACTIONS(1840), + [anon_sym_STAR_STAR2] = ACTIONS(1840), + [anon_sym_PLUS_PLUS2] = ACTIONS(1840), + [anon_sym_SLASH2] = ACTIONS(1842), + [anon_sym_mod2] = ACTIONS(1840), + [anon_sym_SLASH_SLASH2] = ACTIONS(1840), + [anon_sym_PLUS2] = ACTIONS(1842), + [anon_sym_bit_DASHshl2] = ACTIONS(1840), + [anon_sym_bit_DASHshr2] = ACTIONS(1840), + [anon_sym_bit_DASHand2] = ACTIONS(1840), + [anon_sym_bit_DASHxor2] = ACTIONS(1840), + [anon_sym_bit_DASHor2] = ACTIONS(1840), + [anon_sym_DOT2] = ACTIONS(1844), + [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(1840), + [anon_sym_out_GT_GT] = ACTIONS(1840), + [anon_sym_e_GT_GT] = ACTIONS(1840), + [anon_sym_o_GT_GT] = ACTIONS(1840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1840), [anon_sym_POUND] = ACTIONS(3), }, [STATE(482)] = { [sym_comment] = STATE(482), - [ts_builtin_sym_end] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1476), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(741), + [sym__newline] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_err_GT_PIPE] = ACTIONS(741), + [anon_sym_out_GT_PIPE] = ACTIONS(741), + [anon_sym_e_GT_PIPE] = ACTIONS(741), + [anon_sym_o_GT_PIPE] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(741), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(741), + [anon_sym_xor2] = ACTIONS(741), + [anon_sym_or2] = ACTIONS(741), + [anon_sym_not_DASHin2] = ACTIONS(741), + [anon_sym_has2] = ACTIONS(741), + [anon_sym_not_DASHhas2] = ACTIONS(741), + [anon_sym_starts_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), + [anon_sym_ends_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), + [anon_sym_EQ_EQ2] = ACTIONS(741), + [anon_sym_BANG_EQ2] = ACTIONS(741), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(741), + [anon_sym_GT_EQ2] = ACTIONS(741), + [anon_sym_EQ_TILDE2] = ACTIONS(741), + [anon_sym_BANG_TILDE2] = ACTIONS(741), + [anon_sym_like2] = ACTIONS(741), + [anon_sym_not_DASHlike2] = ACTIONS(741), + [anon_sym_LPAREN2] = ACTIONS(741), + [anon_sym_STAR_STAR2] = ACTIONS(741), + [anon_sym_PLUS_PLUS2] = ACTIONS(741), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(741), + [anon_sym_SLASH_SLASH2] = ACTIONS(741), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(741), + [anon_sym_bit_DASHshr2] = ACTIONS(741), + [anon_sym_bit_DASHand2] = ACTIONS(741), + [anon_sym_bit_DASHxor2] = ACTIONS(741), + [anon_sym_bit_DASHor2] = ACTIONS(741), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(741), + [anon_sym_out_GT_GT] = ACTIONS(741), + [anon_sym_e_GT_GT] = ACTIONS(741), + [anon_sym_o_GT_GT] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), + [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, [STATE(483)] = { [sym_comment] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1516), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_in] = ACTIONS(773), + [sym__newline] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_err_GT_PIPE] = ACTIONS(773), + [anon_sym_out_GT_PIPE] = ACTIONS(773), + [anon_sym_e_GT_PIPE] = ACTIONS(773), + [anon_sym_o_GT_PIPE] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(773), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(773), + [anon_sym_xor2] = ACTIONS(773), + [anon_sym_or2] = ACTIONS(773), + [anon_sym_not_DASHin2] = ACTIONS(773), + [anon_sym_has2] = ACTIONS(773), + [anon_sym_not_DASHhas2] = ACTIONS(773), + [anon_sym_starts_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), + [anon_sym_ends_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), + [anon_sym_EQ_EQ2] = ACTIONS(773), + [anon_sym_BANG_EQ2] = ACTIONS(773), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(773), + [anon_sym_GT_EQ2] = ACTIONS(773), + [anon_sym_EQ_TILDE2] = ACTIONS(773), + [anon_sym_BANG_TILDE2] = ACTIONS(773), + [anon_sym_like2] = ACTIONS(773), + [anon_sym_not_DASHlike2] = ACTIONS(773), + [anon_sym_LPAREN2] = ACTIONS(773), + [anon_sym_STAR_STAR2] = ACTIONS(773), + [anon_sym_PLUS_PLUS2] = ACTIONS(773), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(773), + [anon_sym_SLASH_SLASH2] = ACTIONS(773), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(773), + [anon_sym_bit_DASHshr2] = ACTIONS(773), + [anon_sym_bit_DASHand2] = ACTIONS(773), + [anon_sym_bit_DASHxor2] = ACTIONS(773), + [anon_sym_bit_DASHor2] = ACTIONS(773), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(773), + [anon_sym_out_GT_GT] = ACTIONS(773), + [anon_sym_e_GT_GT] = ACTIONS(773), + [anon_sym_o_GT_GT] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), + [sym__unquoted_pattern] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(3), }, [STATE(484)] = { - [sym_cell_path] = STATE(923), - [sym_path] = STATE(441), [sym_comment] = STATE(484), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = 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_RPAREN] = ACTIONS(1850), - [anon_sym_GT2] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(1850), - [anon_sym_STAR2] = ACTIONS(1853), - [anon_sym_and2] = ACTIONS(1850), - [anon_sym_xor2] = ACTIONS(1850), - [anon_sym_or2] = ACTIONS(1850), - [anon_sym_not_DASHin2] = ACTIONS(1850), - [anon_sym_has2] = ACTIONS(1850), - [anon_sym_not_DASHhas2] = ACTIONS(1850), - [anon_sym_starts_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1850), - [anon_sym_ends_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1850), - [anon_sym_EQ_EQ2] = ACTIONS(1850), - [anon_sym_BANG_EQ2] = ACTIONS(1850), - [anon_sym_LT2] = ACTIONS(1853), - [anon_sym_LT_EQ2] = ACTIONS(1850), - [anon_sym_GT_EQ2] = ACTIONS(1850), - [anon_sym_EQ_TILDE2] = ACTIONS(1850), - [anon_sym_BANG_TILDE2] = ACTIONS(1850), - [anon_sym_like2] = ACTIONS(1850), - [anon_sym_not_DASHlike2] = ACTIONS(1850), - [anon_sym_STAR_STAR2] = ACTIONS(1850), - [anon_sym_PLUS_PLUS2] = ACTIONS(1850), - [anon_sym_SLASH2] = ACTIONS(1853), - [anon_sym_mod2] = ACTIONS(1850), - [anon_sym_SLASH_SLASH2] = ACTIONS(1850), - [anon_sym_PLUS2] = ACTIONS(1853), - [anon_sym_bit_DASHshl2] = ACTIONS(1850), - [anon_sym_bit_DASHshr2] = ACTIONS(1850), - [anon_sym_bit_DASHand2] = ACTIONS(1850), - [anon_sym_bit_DASHxor2] = ACTIONS(1850), - [anon_sym_bit_DASHor2] = ACTIONS(1850), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1853), - [anon_sym_out_GT] = ACTIONS(1853), - [anon_sym_e_GT] = ACTIONS(1853), - [anon_sym_o_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT] = ACTIONS(1853), - [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), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [anon_sym_DOT_DOT2] = ACTIONS(1812), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1810), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1810), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), [anon_sym_POUND] = ACTIONS(3), }, [STATE(485)] = { - [sym_cell_path] = STATE(936), - [sym_path] = STATE(441), + [sym_cmd_identifier] = STATE(4323), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4301), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_entry] = STATE(4454), + [sym__record_key] = STATE(5002), [sym_comment] = STATE(485), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = 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_RPAREN] = ACTIONS(1858), - [anon_sym_GT2] = ACTIONS(1860), - [anon_sym_DASH2] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_EQ_GT] = ACTIONS(1858), - [anon_sym_STAR2] = ACTIONS(1860), - [anon_sym_and2] = ACTIONS(1858), - [anon_sym_xor2] = ACTIONS(1858), - [anon_sym_or2] = ACTIONS(1858), - [anon_sym_not_DASHin2] = ACTIONS(1858), - [anon_sym_has2] = ACTIONS(1858), - [anon_sym_not_DASHhas2] = ACTIONS(1858), - [anon_sym_starts_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), - [anon_sym_ends_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), - [anon_sym_EQ_EQ2] = ACTIONS(1858), - [anon_sym_BANG_EQ2] = ACTIONS(1858), - [anon_sym_LT2] = ACTIONS(1860), - [anon_sym_LT_EQ2] = ACTIONS(1858), - [anon_sym_GT_EQ2] = ACTIONS(1858), - [anon_sym_EQ_TILDE2] = ACTIONS(1858), - [anon_sym_BANG_TILDE2] = ACTIONS(1858), - [anon_sym_like2] = ACTIONS(1858), - [anon_sym_not_DASHlike2] = ACTIONS(1858), - [anon_sym_STAR_STAR2] = ACTIONS(1858), - [anon_sym_PLUS_PLUS2] = ACTIONS(1858), - [anon_sym_SLASH2] = ACTIONS(1860), - [anon_sym_mod2] = ACTIONS(1858), - [anon_sym_SLASH_SLASH2] = ACTIONS(1858), - [anon_sym_PLUS2] = ACTIONS(1860), - [anon_sym_bit_DASHshl2] = ACTIONS(1858), - [anon_sym_bit_DASHshr2] = ACTIONS(1858), - [anon_sym_bit_DASHand2] = ACTIONS(1858), + [aux_sym__types_body_repeat1] = STATE(1504), + [aux_sym__match_pattern_record_body_repeat1] = STATE(769), + [aux_sym_record_body_repeat1] = STATE(801), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [sym__newline] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1780), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1784), + [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), + }, + [STATE(486)] = { + [sym_cell_path] = STATE(952), + [sym_path] = STATE(451), + [sym_comment] = STATE(486), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1846), + [anon_sym_GT2] = ACTIONS(1849), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_EQ_GT] = ACTIONS(1846), + [anon_sym_STAR2] = ACTIONS(1849), + [anon_sym_and2] = ACTIONS(1846), + [anon_sym_xor2] = ACTIONS(1846), + [anon_sym_or2] = ACTIONS(1846), + [anon_sym_not_DASHin2] = ACTIONS(1846), + [anon_sym_has2] = ACTIONS(1846), + [anon_sym_not_DASHhas2] = ACTIONS(1846), + [anon_sym_starts_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), + [anon_sym_ends_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), + [anon_sym_EQ_EQ2] = ACTIONS(1846), + [anon_sym_BANG_EQ2] = ACTIONS(1846), + [anon_sym_LT2] = ACTIONS(1849), + [anon_sym_LT_EQ2] = ACTIONS(1846), + [anon_sym_GT_EQ2] = ACTIONS(1846), + [anon_sym_EQ_TILDE2] = ACTIONS(1846), + [anon_sym_BANG_TILDE2] = ACTIONS(1846), + [anon_sym_like2] = ACTIONS(1846), + [anon_sym_not_DASHlike2] = ACTIONS(1846), + [anon_sym_STAR_STAR2] = ACTIONS(1846), + [anon_sym_PLUS_PLUS2] = ACTIONS(1846), + [anon_sym_SLASH2] = ACTIONS(1849), + [anon_sym_mod2] = ACTIONS(1846), + [anon_sym_SLASH_SLASH2] = ACTIONS(1846), + [anon_sym_PLUS2] = ACTIONS(1849), + [anon_sym_bit_DASHshl2] = ACTIONS(1846), + [anon_sym_bit_DASHshr2] = ACTIONS(1846), + [anon_sym_bit_DASHand2] = ACTIONS(1846), + [anon_sym_bit_DASHxor2] = ACTIONS(1846), + [anon_sym_bit_DASHor2] = ACTIONS(1846), + [anon_sym_DOT2] = ACTIONS(1844), + [anon_sym_err_GT] = ACTIONS(1849), + [anon_sym_out_GT] = ACTIONS(1849), + [anon_sym_e_GT] = ACTIONS(1849), + [anon_sym_o_GT] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT] = ACTIONS(1849), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(487)] = { + [sym_cell_path] = STATE(930), + [sym_path] = STATE(842), + [sym_comment] = STATE(487), + [aux_sym__where_predicate_lhs_repeat1] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_in] = ACTIONS(1462), + [sym__newline] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_err_GT_PIPE] = ACTIONS(1462), + [anon_sym_out_GT_PIPE] = ACTIONS(1462), + [anon_sym_e_GT_PIPE] = ACTIONS(1462), + [anon_sym_o_GT_PIPE] = ACTIONS(1462), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1462), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1462), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1462), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1462), + [anon_sym_GT2] = ACTIONS(1460), + [anon_sym_DASH2] = ACTIONS(1462), + [anon_sym_STAR2] = ACTIONS(1460), + [anon_sym_and2] = ACTIONS(1462), + [anon_sym_xor2] = ACTIONS(1462), + [anon_sym_or2] = ACTIONS(1462), + [anon_sym_not_DASHin2] = ACTIONS(1462), + [anon_sym_has2] = ACTIONS(1462), + [anon_sym_not_DASHhas2] = ACTIONS(1462), + [anon_sym_starts_DASHwith2] = ACTIONS(1462), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1462), + [anon_sym_ends_DASHwith2] = ACTIONS(1462), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1462), + [anon_sym_EQ_EQ2] = ACTIONS(1462), + [anon_sym_BANG_EQ2] = ACTIONS(1462), + [anon_sym_LT2] = ACTIONS(1460), + [anon_sym_LT_EQ2] = ACTIONS(1462), + [anon_sym_GT_EQ2] = ACTIONS(1462), + [anon_sym_EQ_TILDE2] = ACTIONS(1462), + [anon_sym_BANG_TILDE2] = ACTIONS(1462), + [anon_sym_like2] = ACTIONS(1462), + [anon_sym_not_DASHlike2] = ACTIONS(1462), + [anon_sym_STAR_STAR2] = ACTIONS(1462), + [anon_sym_PLUS_PLUS2] = ACTIONS(1462), + [anon_sym_SLASH2] = ACTIONS(1460), + [anon_sym_mod2] = ACTIONS(1462), + [anon_sym_SLASH_SLASH2] = ACTIONS(1462), + [anon_sym_PLUS2] = ACTIONS(1460), + [anon_sym_bit_DASHshl2] = ACTIONS(1462), + [anon_sym_bit_DASHshr2] = ACTIONS(1462), + [anon_sym_bit_DASHand2] = ACTIONS(1462), + [anon_sym_bit_DASHxor2] = ACTIONS(1462), + [anon_sym_bit_DASHor2] = ACTIONS(1462), + [anon_sym_DOT_DOT2] = ACTIONS(1460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1462), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1462), + [anon_sym_DOT2] = ACTIONS(1852), + [anon_sym_err_GT] = ACTIONS(1460), + [anon_sym_out_GT] = ACTIONS(1460), + [anon_sym_e_GT] = ACTIONS(1460), + [anon_sym_o_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT] = ACTIONS(1460), + [anon_sym_err_GT_GT] = ACTIONS(1462), + [anon_sym_out_GT_GT] = ACTIONS(1462), + [anon_sym_e_GT_GT] = ACTIONS(1462), + [anon_sym_o_GT_GT] = ACTIONS(1462), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1462), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1462), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1462), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(488)] = { + [sym_comment] = STATE(488), + [ts_builtin_sym_end] = ACTIONS(880), + [anon_sym_in] = ACTIONS(880), + [sym__newline] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_err_GT_PIPE] = ACTIONS(880), + [anon_sym_out_GT_PIPE] = ACTIONS(880), + [anon_sym_e_GT_PIPE] = ACTIONS(880), + [anon_sym_o_GT_PIPE] = ACTIONS(880), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(880), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(880), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(880), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(880), + [anon_sym_GT2] = ACTIONS(878), + [anon_sym_DASH2] = ACTIONS(880), + [anon_sym_STAR2] = ACTIONS(878), + [anon_sym_and2] = ACTIONS(880), + [anon_sym_xor2] = ACTIONS(880), + [anon_sym_or2] = ACTIONS(880), + [anon_sym_not_DASHin2] = ACTIONS(880), + [anon_sym_has2] = ACTIONS(880), + [anon_sym_not_DASHhas2] = ACTIONS(880), + [anon_sym_starts_DASHwith2] = ACTIONS(880), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(880), + [anon_sym_ends_DASHwith2] = ACTIONS(880), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(880), + [anon_sym_EQ_EQ2] = ACTIONS(880), + [anon_sym_BANG_EQ2] = ACTIONS(880), + [anon_sym_LT2] = ACTIONS(878), + [anon_sym_LT_EQ2] = ACTIONS(880), + [anon_sym_GT_EQ2] = ACTIONS(880), + [anon_sym_EQ_TILDE2] = ACTIONS(880), + [anon_sym_BANG_TILDE2] = ACTIONS(880), + [anon_sym_like2] = ACTIONS(880), + [anon_sym_not_DASHlike2] = ACTIONS(880), + [anon_sym_LPAREN2] = ACTIONS(880), + [anon_sym_STAR_STAR2] = ACTIONS(880), + [anon_sym_PLUS_PLUS2] = ACTIONS(880), + [anon_sym_SLASH2] = ACTIONS(878), + [anon_sym_mod2] = ACTIONS(880), + [anon_sym_SLASH_SLASH2] = ACTIONS(880), + [anon_sym_PLUS2] = ACTIONS(878), + [anon_sym_bit_DASHshl2] = ACTIONS(880), + [anon_sym_bit_DASHshr2] = ACTIONS(880), + [anon_sym_bit_DASHand2] = ACTIONS(880), + [anon_sym_bit_DASHxor2] = ACTIONS(880), + [anon_sym_bit_DASHor2] = ACTIONS(880), + [anon_sym_DOT_DOT2] = ACTIONS(878), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(880), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), + [anon_sym_err_GT] = ACTIONS(878), + [anon_sym_out_GT] = ACTIONS(878), + [anon_sym_e_GT] = ACTIONS(878), + [anon_sym_o_GT] = ACTIONS(878), + [anon_sym_err_PLUSout_GT] = ACTIONS(878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(878), + [anon_sym_o_PLUSe_GT] = ACTIONS(878), + [anon_sym_e_PLUSo_GT] = ACTIONS(878), + [anon_sym_err_GT_GT] = ACTIONS(880), + [anon_sym_out_GT_GT] = ACTIONS(880), + [anon_sym_e_GT_GT] = ACTIONS(880), + [anon_sym_o_GT_GT] = ACTIONS(880), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(880), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(880), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(880), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(880), + [sym__unquoted_pattern] = ACTIONS(878), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(489)] = { + [sym_comment] = STATE(489), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1854), + [anon_sym_GT2] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_STAR2] = ACTIONS(1856), + [anon_sym_and2] = ACTIONS(1854), + [anon_sym_xor2] = ACTIONS(1854), + [anon_sym_or2] = ACTIONS(1854), + [anon_sym_not_DASHin2] = ACTIONS(1854), + [anon_sym_has2] = ACTIONS(1854), + [anon_sym_not_DASHhas2] = ACTIONS(1854), + [anon_sym_starts_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), + [anon_sym_ends_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), + [anon_sym_EQ_EQ2] = ACTIONS(1854), + [anon_sym_BANG_EQ2] = ACTIONS(1854), + [anon_sym_LT2] = ACTIONS(1856), + [anon_sym_LT_EQ2] = ACTIONS(1854), + [anon_sym_GT_EQ2] = ACTIONS(1854), + [anon_sym_EQ_TILDE2] = ACTIONS(1854), + [anon_sym_BANG_TILDE2] = ACTIONS(1854), + [anon_sym_like2] = ACTIONS(1854), + [anon_sym_not_DASHlike2] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_STAR_STAR2] = ACTIONS(1854), + [anon_sym_PLUS_PLUS2] = ACTIONS(1854), + [anon_sym_SLASH2] = ACTIONS(1856), + [anon_sym_mod2] = ACTIONS(1854), + [anon_sym_SLASH_SLASH2] = ACTIONS(1854), + [anon_sym_PLUS2] = ACTIONS(1856), + [anon_sym_bit_DASHshl2] = ACTIONS(1854), + [anon_sym_bit_DASHshr2] = ACTIONS(1854), + [anon_sym_bit_DASHand2] = ACTIONS(1854), + [anon_sym_bit_DASHxor2] = ACTIONS(1854), + [anon_sym_bit_DASHor2] = ACTIONS(1854), + [anon_sym_DOT_DOT2] = ACTIONS(1856), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1854), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1854), + [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(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), + [sym__unquoted_pattern] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(490)] = { + [sym_cell_path] = STATE(903), + [sym_path] = STATE(451), + [sym_comment] = STATE(490), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1858), + [anon_sym_GT2] = ACTIONS(1860), + [anon_sym_DASH2] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_EQ_GT] = ACTIONS(1858), + [anon_sym_STAR2] = ACTIONS(1860), + [anon_sym_and2] = ACTIONS(1858), + [anon_sym_xor2] = ACTIONS(1858), + [anon_sym_or2] = ACTIONS(1858), + [anon_sym_not_DASHin2] = ACTIONS(1858), + [anon_sym_has2] = ACTIONS(1858), + [anon_sym_not_DASHhas2] = ACTIONS(1858), + [anon_sym_starts_DASHwith2] = ACTIONS(1858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), + [anon_sym_ends_DASHwith2] = ACTIONS(1858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), + [anon_sym_EQ_EQ2] = ACTIONS(1858), + [anon_sym_BANG_EQ2] = ACTIONS(1858), + [anon_sym_LT2] = ACTIONS(1860), + [anon_sym_LT_EQ2] = ACTIONS(1858), + [anon_sym_GT_EQ2] = ACTIONS(1858), + [anon_sym_EQ_TILDE2] = ACTIONS(1858), + [anon_sym_BANG_TILDE2] = ACTIONS(1858), + [anon_sym_like2] = ACTIONS(1858), + [anon_sym_not_DASHlike2] = ACTIONS(1858), + [anon_sym_STAR_STAR2] = ACTIONS(1858), + [anon_sym_PLUS_PLUS2] = ACTIONS(1858), + [anon_sym_SLASH2] = ACTIONS(1860), + [anon_sym_mod2] = ACTIONS(1858), + [anon_sym_SLASH_SLASH2] = ACTIONS(1858), + [anon_sym_PLUS2] = ACTIONS(1860), + [anon_sym_bit_DASHshl2] = ACTIONS(1858), + [anon_sym_bit_DASHshr2] = ACTIONS(1858), + [anon_sym_bit_DASHand2] = ACTIONS(1858), [anon_sym_bit_DASHxor2] = ACTIONS(1858), [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(1856), + [anon_sym_DOT2] = ACTIONS(1844), [anon_sym_err_GT] = ACTIONS(1860), [anon_sym_out_GT] = ACTIONS(1860), [anon_sym_e_GT] = ACTIONS(1860), @@ -85147,230 +85537,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(486)] = { - [sym_cell_path] = STATE(724), - [sym_path] = STATE(441), - [sym_comment] = STATE(486), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = 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_RPAREN] = ACTIONS(1862), - [anon_sym_GT2] = ACTIONS(1864), - [anon_sym_DASH2] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_EQ_GT] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1864), - [anon_sym_and2] = ACTIONS(1862), - [anon_sym_xor2] = ACTIONS(1862), - [anon_sym_or2] = ACTIONS(1862), - [anon_sym_not_DASHin2] = ACTIONS(1862), - [anon_sym_has2] = ACTIONS(1862), - [anon_sym_not_DASHhas2] = ACTIONS(1862), - [anon_sym_starts_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), - [anon_sym_ends_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), - [anon_sym_EQ_EQ2] = ACTIONS(1862), - [anon_sym_BANG_EQ2] = ACTIONS(1862), - [anon_sym_LT2] = ACTIONS(1864), - [anon_sym_LT_EQ2] = ACTIONS(1862), - [anon_sym_GT_EQ2] = ACTIONS(1862), - [anon_sym_EQ_TILDE2] = ACTIONS(1862), - [anon_sym_BANG_TILDE2] = ACTIONS(1862), - [anon_sym_like2] = ACTIONS(1862), - [anon_sym_not_DASHlike2] = ACTIONS(1862), - [anon_sym_STAR_STAR2] = ACTIONS(1862), - [anon_sym_PLUS_PLUS2] = ACTIONS(1862), - [anon_sym_SLASH2] = ACTIONS(1864), - [anon_sym_mod2] = ACTIONS(1862), - [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1864), - [anon_sym_bit_DASHshl2] = ACTIONS(1862), - [anon_sym_bit_DASHshr2] = ACTIONS(1862), - [anon_sym_bit_DASHand2] = ACTIONS(1862), - [anon_sym_bit_DASHxor2] = ACTIONS(1862), - [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(1856), - [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(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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(487)] = { - [sym_comment] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1545), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(488)] = { - [sym_comment] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1472), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), + [STATE(491)] = { + [sym_comment] = STATE(491), + [ts_builtin_sym_end] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1762), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_has2] = ACTIONS(1760), + [anon_sym_not_DASHhas2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1762), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_like2] = ACTIONS(1760), + [anon_sym_not_DASHlike2] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1762), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1762), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1762), + [anon_sym_DOT] = ACTIONS(1862), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1760), + [aux_sym__immediate_decimal_token5] = ACTIONS(1864), + [anon_sym_err_GT] = ACTIONS(1762), + [anon_sym_out_GT] = ACTIONS(1762), + [anon_sym_e_GT] = ACTIONS(1762), + [anon_sym_o_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT] = ACTIONS(1762), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [sym__unquoted_pattern] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(489)] = { - [sym_cell_path] = STATE(899), - [sym_path] = STATE(441), - [sym_comment] = STATE(489), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [STATE(492)] = { + [sym_comment] = STATE(492), + [anon_sym_if] = ACTIONS(1866), [anon_sym_in] = ACTIONS(1866), [sym__newline] = ACTIONS(1866), [anon_sym_SEMI] = ACTIONS(1866), @@ -85420,7 +85662,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1866), [anon_sym_bit_DASHxor2] = ACTIONS(1866), [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), [anon_sym_err_GT] = ACTIONS(1868), [anon_sym_out_GT] = ACTIONS(1868), [anon_sym_e_GT] = ACTIONS(1868), @@ -85439,8 +85683,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(490)] = { - [sym_comment] = STATE(490), + [STATE(493)] = { + [sym_comment] = STATE(493), + [ts_builtin_sym_end] = ACTIONS(1524), + [anon_sym_in] = 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_GT2] = ACTIONS(1522), + [anon_sym_DASH2] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_STAR2] = ACTIONS(1522), + [anon_sym_and2] = ACTIONS(1524), + [anon_sym_xor2] = ACTIONS(1524), + [anon_sym_or2] = ACTIONS(1524), + [anon_sym_not_DASHin2] = ACTIONS(1524), + [anon_sym_has2] = ACTIONS(1524), + [anon_sym_not_DASHhas2] = ACTIONS(1524), + [anon_sym_starts_DASHwith2] = ACTIONS(1524), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1524), + [anon_sym_ends_DASHwith2] = ACTIONS(1524), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1524), + [anon_sym_EQ_EQ2] = ACTIONS(1524), + [anon_sym_BANG_EQ2] = ACTIONS(1524), + [anon_sym_LT2] = ACTIONS(1522), + [anon_sym_LT_EQ2] = ACTIONS(1524), + [anon_sym_GT_EQ2] = ACTIONS(1524), + [anon_sym_EQ_TILDE2] = ACTIONS(1524), + [anon_sym_BANG_TILDE2] = ACTIONS(1524), + [anon_sym_like2] = ACTIONS(1524), + [anon_sym_not_DASHlike2] = ACTIONS(1524), + [anon_sym_STAR_STAR2] = ACTIONS(1524), + [anon_sym_PLUS_PLUS2] = ACTIONS(1524), + [anon_sym_SLASH2] = ACTIONS(1522), + [anon_sym_mod2] = ACTIONS(1524), + [anon_sym_SLASH_SLASH2] = ACTIONS(1524), + [anon_sym_PLUS2] = ACTIONS(1522), + [anon_sym_bit_DASHshl2] = ACTIONS(1524), + [anon_sym_bit_DASHshr2] = ACTIONS(1524), + [anon_sym_bit_DASHand2] = ACTIONS(1524), + [anon_sym_bit_DASHxor2] = ACTIONS(1524), + [anon_sym_bit_DASHor2] = ACTIONS(1524), + [anon_sym_DOT_DOT2] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1524), + [anon_sym_QMARK2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DOT2] = ACTIONS(1522), + [anon_sym_err_GT] = ACTIONS(1522), + [anon_sym_out_GT] = ACTIONS(1522), + [anon_sym_e_GT] = ACTIONS(1522), + [anon_sym_o_GT] = ACTIONS(1522), + [anon_sym_err_PLUSout_GT] = ACTIONS(1522), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1522), + [anon_sym_o_PLUSe_GT] = ACTIONS(1522), + [anon_sym_e_PLUSo_GT] = ACTIONS(1522), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(494)] = { + [sym_cell_path] = STATE(917), + [sym_path] = STATE(842), + [sym_comment] = STATE(494), + [aux_sym__where_predicate_lhs_repeat1] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(1665), + [anon_sym_in] = ACTIONS(1665), + [sym__newline] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_err_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_GT_PIPE] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), + [anon_sym_GT2] = ACTIONS(1667), + [anon_sym_DASH2] = ACTIONS(1665), + [anon_sym_STAR2] = ACTIONS(1667), + [anon_sym_and2] = ACTIONS(1665), + [anon_sym_xor2] = ACTIONS(1665), + [anon_sym_or2] = ACTIONS(1665), + [anon_sym_not_DASHin2] = ACTIONS(1665), + [anon_sym_has2] = ACTIONS(1665), + [anon_sym_not_DASHhas2] = ACTIONS(1665), + [anon_sym_starts_DASHwith2] = ACTIONS(1665), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1665), + [anon_sym_ends_DASHwith2] = ACTIONS(1665), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1665), + [anon_sym_EQ_EQ2] = ACTIONS(1665), + [anon_sym_BANG_EQ2] = ACTIONS(1665), + [anon_sym_LT2] = ACTIONS(1667), + [anon_sym_LT_EQ2] = ACTIONS(1665), + [anon_sym_GT_EQ2] = ACTIONS(1665), + [anon_sym_EQ_TILDE2] = ACTIONS(1665), + [anon_sym_BANG_TILDE2] = ACTIONS(1665), + [anon_sym_like2] = ACTIONS(1665), + [anon_sym_not_DASHlike2] = ACTIONS(1665), + [anon_sym_STAR_STAR2] = ACTIONS(1665), + [anon_sym_PLUS_PLUS2] = ACTIONS(1665), + [anon_sym_SLASH2] = ACTIONS(1667), + [anon_sym_mod2] = ACTIONS(1665), + [anon_sym_SLASH_SLASH2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(1667), + [anon_sym_bit_DASHshl2] = ACTIONS(1665), + [anon_sym_bit_DASHshr2] = ACTIONS(1665), + [anon_sym_bit_DASHand2] = ACTIONS(1665), + [anon_sym_bit_DASHxor2] = ACTIONS(1665), + [anon_sym_bit_DASHor2] = ACTIONS(1665), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1665), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1665), + [anon_sym_DOT2] = ACTIONS(1852), + [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(1665), + [anon_sym_out_GT_GT] = ACTIONS(1665), + [anon_sym_e_GT_GT] = ACTIONS(1665), + [anon_sym_o_GT_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(495)] = { + [sym_cell_path] = STATE(932), + [sym_path] = STATE(451), + [sym_comment] = STATE(495), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), [anon_sym_in] = ACTIONS(1870), [sym__newline] = ACTIONS(1870), [anon_sym_SEMI] = ACTIONS(1870), @@ -85458,6 +85851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1870), [anon_sym_LBRACE] = ACTIONS(1870), [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_EQ_GT] = ACTIONS(1870), [anon_sym_STAR2] = ACTIONS(1872), [anon_sym_and2] = ACTIONS(1870), [anon_sym_xor2] = ACTIONS(1870), @@ -85478,7 +85872,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1870), [anon_sym_like2] = ACTIONS(1870), [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), [anon_sym_STAR_STAR2] = ACTIONS(1870), [anon_sym_PLUS_PLUS2] = ACTIONS(1870), [anon_sym_SLASH2] = ACTIONS(1872), @@ -85490,9 +85883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1870), [anon_sym_bit_DASHxor2] = ACTIONS(1870), [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_DOT_DOT2] = ACTIONS(1872), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), + [anon_sym_DOT2] = ACTIONS(1844), [anon_sym_err_GT] = ACTIONS(1872), [anon_sym_out_GT] = ACTIONS(1872), [anon_sym_e_GT] = ACTIONS(1872), @@ -85509,11 +85900,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(491)] = { - [sym_comment] = STATE(491), + [STATE(496)] = { + [sym_comment] = STATE(496), [anon_sym_if] = ACTIONS(1874), [anon_sym_in] = ACTIONS(1874), [sym__newline] = ACTIONS(1874), @@ -85585,84 +85975,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(492)] = { - [sym_comment] = STATE(492), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_EQ_GT] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1558), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), + [STATE(497)] = { + [sym_comment] = STATE(497), + [ts_builtin_sym_end] = ACTIONS(1528), + [anon_sym_in] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_err_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_GT_PIPE] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1528), + [anon_sym_GT2] = ACTIONS(1526), + [anon_sym_DASH2] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_STAR2] = ACTIONS(1526), + [anon_sym_and2] = ACTIONS(1528), + [anon_sym_xor2] = ACTIONS(1528), + [anon_sym_or2] = ACTIONS(1528), + [anon_sym_not_DASHin2] = ACTIONS(1528), + [anon_sym_has2] = ACTIONS(1528), + [anon_sym_not_DASHhas2] = ACTIONS(1528), + [anon_sym_starts_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1528), + [anon_sym_ends_DASHwith2] = ACTIONS(1528), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1528), + [anon_sym_EQ_EQ2] = ACTIONS(1528), + [anon_sym_BANG_EQ2] = ACTIONS(1528), + [anon_sym_LT2] = ACTIONS(1526), + [anon_sym_LT_EQ2] = ACTIONS(1528), + [anon_sym_GT_EQ2] = ACTIONS(1528), + [anon_sym_EQ_TILDE2] = ACTIONS(1528), + [anon_sym_BANG_TILDE2] = ACTIONS(1528), + [anon_sym_like2] = ACTIONS(1528), + [anon_sym_not_DASHlike2] = ACTIONS(1528), + [anon_sym_STAR_STAR2] = ACTIONS(1528), + [anon_sym_PLUS_PLUS2] = ACTIONS(1528), + [anon_sym_SLASH2] = ACTIONS(1526), + [anon_sym_mod2] = ACTIONS(1528), + [anon_sym_SLASH_SLASH2] = ACTIONS(1528), + [anon_sym_PLUS2] = ACTIONS(1526), + [anon_sym_bit_DASHshl2] = ACTIONS(1528), + [anon_sym_bit_DASHshr2] = ACTIONS(1528), + [anon_sym_bit_DASHand2] = ACTIONS(1528), + [anon_sym_bit_DASHxor2] = ACTIONS(1528), + [anon_sym_bit_DASHor2] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1526), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1528), + [anon_sym_QMARK2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_DOT2] = ACTIONS(1526), + [anon_sym_err_GT] = ACTIONS(1526), + [anon_sym_out_GT] = ACTIONS(1526), + [anon_sym_e_GT] = ACTIONS(1526), + [anon_sym_o_GT] = ACTIONS(1526), + [anon_sym_err_PLUSout_GT] = ACTIONS(1526), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1526), + [anon_sym_o_PLUSe_GT] = ACTIONS(1526), + [anon_sym_e_PLUSo_GT] = ACTIONS(1526), + [anon_sym_err_GT_GT] = ACTIONS(1528), + [anon_sym_out_GT_GT] = ACTIONS(1528), + [anon_sym_e_GT_GT] = ACTIONS(1528), + [anon_sym_o_GT_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1528), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(493)] = { - [sym_cell_path] = STATE(735), - [sym_path] = STATE(441), - [sym_comment] = STATE(493), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [STATE(498)] = { + [sym_cell_path] = STATE(714), + [sym_path] = STATE(451), + [sym_comment] = STATE(498), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), [anon_sym_in] = ACTIONS(1878), [sym__newline] = ACTIONS(1878), [anon_sym_SEMI] = ACTIONS(1878), @@ -85712,7 +86102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1878), [anon_sym_bit_DASHxor2] = ACTIONS(1878), [anon_sym_bit_DASHor2] = ACTIONS(1878), - [anon_sym_DOT2] = ACTIONS(1856), + [anon_sym_DOT2] = ACTIONS(1844), [anon_sym_err_GT] = ACTIONS(1880), [anon_sym_out_GT] = ACTIONS(1880), [anon_sym_e_GT] = ACTIONS(1880), @@ -85731,301 +86121,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(494)] = { - [sym_cell_path] = STATE(932), - [sym_path] = STATE(783), - [sym_comment] = STATE(494), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(1679), - [sym__newline] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_err_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_GT_PIPE] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1679), - [anon_sym_xor2] = ACTIONS(1679), - [anon_sym_or2] = ACTIONS(1679), - [anon_sym_not_DASHin2] = ACTIONS(1679), - [anon_sym_has2] = ACTIONS(1679), - [anon_sym_not_DASHhas2] = ACTIONS(1679), - [anon_sym_starts_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1679), - [anon_sym_ends_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1679), - [anon_sym_EQ_EQ2] = ACTIONS(1679), - [anon_sym_BANG_EQ2] = ACTIONS(1679), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1679), - [anon_sym_GT_EQ2] = ACTIONS(1679), - [anon_sym_EQ_TILDE2] = ACTIONS(1679), - [anon_sym_BANG_TILDE2] = ACTIONS(1679), - [anon_sym_like2] = ACTIONS(1679), - [anon_sym_not_DASHlike2] = ACTIONS(1679), - [anon_sym_STAR_STAR2] = ACTIONS(1679), - [anon_sym_PLUS_PLUS2] = ACTIONS(1679), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1679), - [anon_sym_SLASH_SLASH2] = ACTIONS(1679), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1679), - [anon_sym_bit_DASHshr2] = ACTIONS(1679), - [anon_sym_bit_DASHand2] = ACTIONS(1679), - [anon_sym_bit_DASHxor2] = ACTIONS(1679), - [anon_sym_bit_DASHor2] = ACTIONS(1679), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1679), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1679), - [anon_sym_out_GT_GT] = ACTIONS(1679), - [anon_sym_e_GT_GT] = ACTIONS(1679), - [anon_sym_o_GT_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(495)] = { - [sym_comment] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(496)] = { - [sym_cell_path] = STATE(933), - [sym_path] = STATE(783), - [sym_comment] = STATE(496), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1434), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), + [STATE(499)] = { + [sym_cell_path] = STATE(948), + [sym_path] = STATE(842), + [sym_comment] = STATE(499), + [aux_sym__where_predicate_lhs_repeat1] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(1655), + [anon_sym_in] = 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_GT2] = ACTIONS(1657), + [anon_sym_DASH2] = ACTIONS(1655), + [anon_sym_STAR2] = ACTIONS(1657), + [anon_sym_and2] = ACTIONS(1655), + [anon_sym_xor2] = ACTIONS(1655), + [anon_sym_or2] = ACTIONS(1655), + [anon_sym_not_DASHin2] = ACTIONS(1655), + [anon_sym_has2] = ACTIONS(1655), + [anon_sym_not_DASHhas2] = ACTIONS(1655), + [anon_sym_starts_DASHwith2] = ACTIONS(1655), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1655), + [anon_sym_ends_DASHwith2] = ACTIONS(1655), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1655), + [anon_sym_EQ_EQ2] = ACTIONS(1655), + [anon_sym_BANG_EQ2] = ACTIONS(1655), + [anon_sym_LT2] = ACTIONS(1657), + [anon_sym_LT_EQ2] = ACTIONS(1655), + [anon_sym_GT_EQ2] = ACTIONS(1655), + [anon_sym_EQ_TILDE2] = ACTIONS(1655), + [anon_sym_BANG_TILDE2] = ACTIONS(1655), + [anon_sym_like2] = ACTIONS(1655), + [anon_sym_not_DASHlike2] = ACTIONS(1655), + [anon_sym_STAR_STAR2] = ACTIONS(1655), + [anon_sym_PLUS_PLUS2] = ACTIONS(1655), + [anon_sym_SLASH2] = ACTIONS(1657), + [anon_sym_mod2] = ACTIONS(1655), + [anon_sym_SLASH_SLASH2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(1657), + [anon_sym_bit_DASHshl2] = ACTIONS(1655), + [anon_sym_bit_DASHshr2] = ACTIONS(1655), + [anon_sym_bit_DASHand2] = ACTIONS(1655), + [anon_sym_bit_DASHxor2] = ACTIONS(1655), + [anon_sym_bit_DASHor2] = ACTIONS(1655), + [anon_sym_DOT_DOT2] = ACTIONS(1657), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [anon_sym_DOT2] = ACTIONS(1852), + [anon_sym_err_GT] = ACTIONS(1657), + [anon_sym_out_GT] = ACTIONS(1657), + [anon_sym_e_GT] = ACTIONS(1657), + [anon_sym_o_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT] = ACTIONS(1657), + [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(3), }, - [STATE(497)] = { - [sym_cell_path] = STATE(930), - [sym_path] = STATE(441), - [sym_comment] = STATE(497), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = 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_RPAREN] = ACTIONS(1882), - [anon_sym_GT2] = ACTIONS(1884), - [anon_sym_DASH2] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_EQ_GT] = ACTIONS(1882), - [anon_sym_STAR2] = ACTIONS(1884), - [anon_sym_and2] = ACTIONS(1882), - [anon_sym_xor2] = ACTIONS(1882), - [anon_sym_or2] = ACTIONS(1882), - [anon_sym_not_DASHin2] = ACTIONS(1882), - [anon_sym_has2] = ACTIONS(1882), - [anon_sym_not_DASHhas2] = ACTIONS(1882), - [anon_sym_starts_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), - [anon_sym_ends_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), - [anon_sym_EQ_EQ2] = ACTIONS(1882), - [anon_sym_BANG_EQ2] = ACTIONS(1882), - [anon_sym_LT2] = ACTIONS(1884), - [anon_sym_LT_EQ2] = ACTIONS(1882), - [anon_sym_GT_EQ2] = ACTIONS(1882), - [anon_sym_EQ_TILDE2] = ACTIONS(1882), - [anon_sym_BANG_TILDE2] = ACTIONS(1882), - [anon_sym_like2] = ACTIONS(1882), - [anon_sym_not_DASHlike2] = ACTIONS(1882), - [anon_sym_STAR_STAR2] = ACTIONS(1882), - [anon_sym_PLUS_PLUS2] = ACTIONS(1882), - [anon_sym_SLASH2] = ACTIONS(1884), - [anon_sym_mod2] = ACTIONS(1882), - [anon_sym_SLASH_SLASH2] = ACTIONS(1882), - [anon_sym_PLUS2] = ACTIONS(1884), - [anon_sym_bit_DASHshl2] = ACTIONS(1882), - [anon_sym_bit_DASHshr2] = ACTIONS(1882), - [anon_sym_bit_DASHand2] = ACTIONS(1882), - [anon_sym_bit_DASHxor2] = ACTIONS(1882), - [anon_sym_bit_DASHor2] = ACTIONS(1882), - [anon_sym_DOT2] = ACTIONS(1856), - [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(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), + [STATE(500)] = { + [sym__path_suffix] = STATE(810), + [sym_comment] = STATE(500), + [ts_builtin_sym_end] = ACTIONS(1478), + [anon_sym_in] = ACTIONS(1478), + [sym__newline] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_err_GT_PIPE] = ACTIONS(1478), + [anon_sym_out_GT_PIPE] = ACTIONS(1478), + [anon_sym_e_GT_PIPE] = ACTIONS(1478), + [anon_sym_o_GT_PIPE] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1478), + [anon_sym_GT2] = ACTIONS(1476), + [anon_sym_DASH2] = ACTIONS(1478), + [anon_sym_STAR2] = ACTIONS(1476), + [anon_sym_and2] = ACTIONS(1478), + [anon_sym_xor2] = ACTIONS(1478), + [anon_sym_or2] = ACTIONS(1478), + [anon_sym_not_DASHin2] = ACTIONS(1478), + [anon_sym_has2] = ACTIONS(1478), + [anon_sym_not_DASHhas2] = ACTIONS(1478), + [anon_sym_starts_DASHwith2] = ACTIONS(1478), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1478), + [anon_sym_ends_DASHwith2] = ACTIONS(1478), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1478), + [anon_sym_EQ_EQ2] = ACTIONS(1478), + [anon_sym_BANG_EQ2] = ACTIONS(1478), + [anon_sym_LT2] = ACTIONS(1476), + [anon_sym_LT_EQ2] = ACTIONS(1478), + [anon_sym_GT_EQ2] = ACTIONS(1478), + [anon_sym_EQ_TILDE2] = ACTIONS(1478), + [anon_sym_BANG_TILDE2] = ACTIONS(1478), + [anon_sym_like2] = ACTIONS(1478), + [anon_sym_not_DASHlike2] = ACTIONS(1478), + [anon_sym_STAR_STAR2] = ACTIONS(1478), + [anon_sym_PLUS_PLUS2] = ACTIONS(1478), + [anon_sym_SLASH2] = ACTIONS(1476), + [anon_sym_mod2] = ACTIONS(1478), + [anon_sym_SLASH_SLASH2] = ACTIONS(1478), + [anon_sym_PLUS2] = ACTIONS(1476), + [anon_sym_bit_DASHshl2] = ACTIONS(1478), + [anon_sym_bit_DASHshr2] = ACTIONS(1478), + [anon_sym_bit_DASHand2] = ACTIONS(1478), + [anon_sym_bit_DASHxor2] = ACTIONS(1478), + [anon_sym_bit_DASHor2] = ACTIONS(1478), + [anon_sym_DOT_DOT2] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1478), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1478), + [anon_sym_QMARK2] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_DOT2] = ACTIONS(1476), + [anon_sym_err_GT] = ACTIONS(1476), + [anon_sym_out_GT] = ACTIONS(1476), + [anon_sym_e_GT] = ACTIONS(1476), + [anon_sym_o_GT] = ACTIONS(1476), + [anon_sym_err_PLUSout_GT] = ACTIONS(1476), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1476), + [anon_sym_o_PLUSe_GT] = ACTIONS(1476), + [anon_sym_e_PLUSo_GT] = ACTIONS(1476), + [anon_sym_err_GT_GT] = ACTIONS(1478), + [anon_sym_out_GT_GT] = ACTIONS(1478), + [anon_sym_e_GT_GT] = ACTIONS(1478), + [anon_sym_o_GT_GT] = ACTIONS(1478), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1478), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1478), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1478), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1478), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(498)] = { - [sym_comment] = STATE(498), - [anon_sym_if] = ACTIONS(1886), + [STATE(501)] = { + [sym_cell_path] = STATE(736), + [sym_path] = STATE(451), + [sym_comment] = STATE(501), + [aux_sym__where_predicate_lhs_repeat1] = STATE(427), [anon_sym_in] = ACTIONS(1886), [sym__newline] = ACTIONS(1886), [anon_sym_SEMI] = ACTIONS(1886), @@ -86075,9 +86321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1886), [anon_sym_bit_DASHxor2] = ACTIONS(1886), [anon_sym_bit_DASHor2] = ACTIONS(1886), - [anon_sym_DOT_DOT2] = ACTIONS(1888), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1886), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1886), + [anon_sym_DOT2] = ACTIONS(1844), [anon_sym_err_GT] = ACTIONS(1888), [anon_sym_out_GT] = ACTIONS(1888), [anon_sym_e_GT] = ACTIONS(1888), @@ -86096,81 +86340,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(499)] = { - [sym_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(851), - [sym__newline] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_err_GT_PIPE] = ACTIONS(851), - [anon_sym_out_GT_PIPE] = ACTIONS(851), - [anon_sym_e_GT_PIPE] = ACTIONS(851), - [anon_sym_o_GT_PIPE] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(851), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(851), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(851), - [anon_sym_xor2] = ACTIONS(851), - [anon_sym_or2] = ACTIONS(851), - [anon_sym_not_DASHin2] = ACTIONS(851), - [anon_sym_has2] = ACTIONS(851), - [anon_sym_not_DASHhas2] = ACTIONS(851), - [anon_sym_starts_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(851), - [anon_sym_ends_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(851), - [anon_sym_EQ_EQ2] = ACTIONS(851), - [anon_sym_BANG_EQ2] = ACTIONS(851), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(851), - [anon_sym_GT_EQ2] = ACTIONS(851), - [anon_sym_EQ_TILDE2] = ACTIONS(851), - [anon_sym_BANG_TILDE2] = ACTIONS(851), - [anon_sym_like2] = ACTIONS(851), - [anon_sym_not_DASHlike2] = ACTIONS(851), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_STAR_STAR2] = ACTIONS(851), - [anon_sym_PLUS_PLUS2] = ACTIONS(851), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(851), - [anon_sym_SLASH_SLASH2] = ACTIONS(851), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(851), - [anon_sym_bit_DASHshr2] = ACTIONS(851), - [anon_sym_bit_DASHand2] = ACTIONS(851), - [anon_sym_bit_DASHxor2] = ACTIONS(851), - [anon_sym_bit_DASHor2] = ACTIONS(851), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(851), - [anon_sym_out_GT_GT] = ACTIONS(851), - [anon_sym_e_GT_GT] = ACTIONS(851), - [anon_sym_o_GT_GT] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(851), - [sym__unquoted_pattern] = ACTIONS(849), + [STATE(502)] = { + [sym_comment] = STATE(502), + [ts_builtin_sym_end] = ACTIONS(1516), + [anon_sym_in] = ACTIONS(1516), + [sym__newline] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_err_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_GT_PIPE] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), + [anon_sym_GT2] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_STAR2] = ACTIONS(1514), + [anon_sym_and2] = ACTIONS(1516), + [anon_sym_xor2] = ACTIONS(1516), + [anon_sym_or2] = ACTIONS(1516), + [anon_sym_not_DASHin2] = ACTIONS(1516), + [anon_sym_has2] = ACTIONS(1516), + [anon_sym_not_DASHhas2] = ACTIONS(1516), + [anon_sym_starts_DASHwith2] = ACTIONS(1516), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), + [anon_sym_ends_DASHwith2] = ACTIONS(1516), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), + [anon_sym_EQ_EQ2] = ACTIONS(1516), + [anon_sym_BANG_EQ2] = ACTIONS(1516), + [anon_sym_LT2] = ACTIONS(1514), + [anon_sym_LT_EQ2] = ACTIONS(1516), + [anon_sym_GT_EQ2] = ACTIONS(1516), + [anon_sym_EQ_TILDE2] = ACTIONS(1516), + [anon_sym_BANG_TILDE2] = ACTIONS(1516), + [anon_sym_like2] = ACTIONS(1516), + [anon_sym_not_DASHlike2] = ACTIONS(1516), + [anon_sym_STAR_STAR2] = ACTIONS(1516), + [anon_sym_PLUS_PLUS2] = ACTIONS(1516), + [anon_sym_SLASH2] = ACTIONS(1514), + [anon_sym_mod2] = ACTIONS(1516), + [anon_sym_SLASH_SLASH2] = ACTIONS(1516), + [anon_sym_PLUS2] = ACTIONS(1514), + [anon_sym_bit_DASHshl2] = ACTIONS(1516), + [anon_sym_bit_DASHshr2] = ACTIONS(1516), + [anon_sym_bit_DASHand2] = ACTIONS(1516), + [anon_sym_bit_DASHxor2] = ACTIONS(1516), + [anon_sym_bit_DASHor2] = ACTIONS(1516), + [anon_sym_DOT_DOT2] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), + [anon_sym_QMARK2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_DOT2] = ACTIONS(1514), + [anon_sym_err_GT] = ACTIONS(1514), + [anon_sym_out_GT] = ACTIONS(1514), + [anon_sym_e_GT] = ACTIONS(1514), + [anon_sym_o_GT] = ACTIONS(1514), + [anon_sym_err_PLUSout_GT] = ACTIONS(1514), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), + [anon_sym_o_PLUSe_GT] = ACTIONS(1514), + [anon_sym_e_PLUSo_GT] = ACTIONS(1514), + [anon_sym_err_GT_GT] = ACTIONS(1516), + [anon_sym_out_GT_GT] = ACTIONS(1516), + [anon_sym_e_GT_GT] = ACTIONS(1516), + [anon_sym_o_GT_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(500)] = { - [sym_comment] = STATE(500), + [STATE(503)] = { + [sym_comment] = STATE(503), + [ts_builtin_sym_end] = ACTIONS(1726), [anon_sym_in] = ACTIONS(1726), [sym__newline] = ACTIONS(1726), [anon_sym_SEMI] = ACTIONS(1726), @@ -86183,11 +86428,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), [anon_sym_GT2] = ACTIONS(1728), [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), [anon_sym_STAR2] = ACTIONS(1728), [anon_sym_and2] = ACTIONS(1726), [anon_sym_xor2] = ACTIONS(1726), @@ -86223,6 +86465,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1728), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), + [aux_sym__immediate_decimal_token1] = ACTIONS(1890), + [aux_sym__immediate_decimal_token5] = ACTIONS(1892), [anon_sym_err_GT] = ACTIONS(1728), [anon_sym_out_GT] = ACTIONS(1728), [anon_sym_e_GT] = ACTIONS(1728), @@ -86242,260 +86486,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(501)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4298), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4450), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(501), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym__match_pattern_record_body_repeat1] = STATE(836), - [aux_sym_record_body_repeat1] = STATE(878), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(502)] = { - [sym__path_suffix] = STATE(784), - [sym_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1448), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(503)] = { - [sym_comment] = STATE(503), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(504)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1588), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2094), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(717), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(504), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), @@ -86534,40 +86559,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(505)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2046), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(580), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1162), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(742), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(505), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -86606,40 +86631,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(506)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2048), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(581), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1168), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(744), + [sym__unquoted_with_expr] = STATE(1027), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(506), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -86678,40 +86703,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(507)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2050), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(582), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1028), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(746), + [sym__unquoted_with_expr] = STATE(1029), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(507), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -86750,40 +86775,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(508)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2052), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(583), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1175), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(748), + [sym__unquoted_with_expr] = STATE(1030), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(508), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -86822,40 +86847,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(509)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2054), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(584), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1179), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(750), + [sym__unquoted_with_expr] = STATE(1031), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(509), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -86894,40 +86919,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(510)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2056), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(585), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1181), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(751), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(510), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -86966,40 +86991,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(511)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2058), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(586), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1184), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(753), + [sym__unquoted_with_expr] = STATE(1034), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(511), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -87038,41 +87063,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(512)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(512), + [ts_builtin_sym_end] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [anon_sym_DOT_DOT2] = ACTIONS(1812), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1810), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1810), + [aux_sym__immediate_decimal_token5] = ACTIONS(1934), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(513)] = { + [sym_comment] = STATE(513), + [ts_builtin_sym_end] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1762), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_has2] = ACTIONS(1760), + [anon_sym_not_DASHhas2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1762), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_like2] = ACTIONS(1760), + [anon_sym_not_DASHlike2] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1762), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1762), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1762), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1760), + [aux_sym__immediate_decimal_token5] = ACTIONS(1864), + [anon_sym_err_GT] = ACTIONS(1762), + [anon_sym_out_GT] = ACTIONS(1762), + [anon_sym_e_GT] = ACTIONS(1762), + [anon_sym_o_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT] = ACTIONS(1762), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [sym__unquoted_pattern] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(514)] = { + [aux_sym__repeat_newline] = STATE(648), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1239), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(514), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -87109,42 +87278,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(513)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2060), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(513), + [STATE(515)] = { + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4536), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), + [sym_val_cellpath] = STATE(4536), + [sym_val_number] = STATE(4536), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4536), + [sym_val_filesize] = STATE(4536), + [sym_val_binary] = STATE(4536), + [sym_val_string] = STATE(4536), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_interpolated] = STATE(4536), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4536), + [sym__spread_list] = STATE(4668), + [sym_val_entry] = STATE(4499), + [sym_val_record] = STATE(4536), + [sym_val_table] = STATE(4536), + [sym_val_closure] = STATE(4536), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(515), + [aux_sym_list_body_repeat1] = STATE(655), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, + [STATE(516)] = { + [sym_comment] = STATE(516), + [anon_sym_in] = ACTIONS(1936), + [sym__newline] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_err_GT_PIPE] = ACTIONS(1936), + [anon_sym_out_GT_PIPE] = ACTIONS(1936), + [anon_sym_e_GT_PIPE] = ACTIONS(1936), + [anon_sym_o_GT_PIPE] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1936), + [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_GT2] = ACTIONS(1938), + [anon_sym_DASH2] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_STAR2] = ACTIONS(1938), + [anon_sym_and2] = ACTIONS(1936), + [anon_sym_xor2] = ACTIONS(1936), + [anon_sym_or2] = ACTIONS(1936), + [anon_sym_not_DASHin2] = ACTIONS(1936), + [anon_sym_has2] = ACTIONS(1936), + [anon_sym_not_DASHhas2] = ACTIONS(1936), + [anon_sym_starts_DASHwith2] = ACTIONS(1936), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1936), + [anon_sym_ends_DASHwith2] = ACTIONS(1936), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1936), + [anon_sym_EQ_EQ2] = ACTIONS(1936), + [anon_sym_BANG_EQ2] = ACTIONS(1936), + [anon_sym_LT2] = ACTIONS(1938), + [anon_sym_LT_EQ2] = ACTIONS(1936), + [anon_sym_GT_EQ2] = ACTIONS(1936), + [anon_sym_EQ_TILDE2] = ACTIONS(1936), + [anon_sym_BANG_TILDE2] = ACTIONS(1936), + [anon_sym_like2] = ACTIONS(1936), + [anon_sym_not_DASHlike2] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1940), + [anon_sym_STAR_STAR2] = ACTIONS(1936), + [anon_sym_PLUS_PLUS2] = ACTIONS(1936), + [anon_sym_SLASH2] = ACTIONS(1938), + [anon_sym_mod2] = ACTIONS(1936), + [anon_sym_SLASH_SLASH2] = ACTIONS(1936), + [anon_sym_PLUS2] = ACTIONS(1938), + [anon_sym_bit_DASHshl2] = ACTIONS(1936), + [anon_sym_bit_DASHshr2] = ACTIONS(1936), + [anon_sym_bit_DASHand2] = ACTIONS(1936), + [anon_sym_bit_DASHxor2] = ACTIONS(1936), + [anon_sym_bit_DASHor2] = ACTIONS(1936), + [anon_sym_DOT_DOT2] = ACTIONS(1942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1944), + [anon_sym_err_GT] = ACTIONS(1938), + [anon_sym_out_GT] = ACTIONS(1938), + [anon_sym_e_GT] = ACTIONS(1938), + [anon_sym_o_GT] = ACTIONS(1938), + [anon_sym_err_PLUSout_GT] = ACTIONS(1938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1938), + [anon_sym_o_PLUSe_GT] = ACTIONS(1938), + [anon_sym_e_PLUSo_GT] = ACTIONS(1938), + [anon_sym_err_GT_GT] = ACTIONS(1936), + [anon_sym_out_GT_GT] = ACTIONS(1936), + [anon_sym_e_GT_GT] = ACTIONS(1936), + [anon_sym_o_GT_GT] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1936), + [sym__unquoted_pattern] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(517)] = { + [sym_comment] = STATE(517), + [anon_sym_in] = ACTIONS(1946), + [sym__newline] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_err_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_GT_PIPE] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_GT2] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_STAR2] = ACTIONS(1948), + [anon_sym_and2] = ACTIONS(1946), + [anon_sym_xor2] = ACTIONS(1946), + [anon_sym_or2] = ACTIONS(1946), + [anon_sym_not_DASHin2] = ACTIONS(1946), + [anon_sym_has2] = ACTIONS(1946), + [anon_sym_not_DASHhas2] = ACTIONS(1946), + [anon_sym_starts_DASHwith2] = ACTIONS(1946), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1946), + [anon_sym_ends_DASHwith2] = ACTIONS(1946), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1946), + [anon_sym_EQ_EQ2] = ACTIONS(1946), + [anon_sym_BANG_EQ2] = ACTIONS(1946), + [anon_sym_LT2] = ACTIONS(1948), + [anon_sym_LT_EQ2] = ACTIONS(1946), + [anon_sym_GT_EQ2] = ACTIONS(1946), + [anon_sym_EQ_TILDE2] = ACTIONS(1946), + [anon_sym_BANG_TILDE2] = ACTIONS(1946), + [anon_sym_like2] = ACTIONS(1946), + [anon_sym_not_DASHlike2] = ACTIONS(1946), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_STAR_STAR2] = ACTIONS(1946), + [anon_sym_PLUS_PLUS2] = ACTIONS(1946), + [anon_sym_SLASH2] = ACTIONS(1948), + [anon_sym_mod2] = ACTIONS(1946), + [anon_sym_SLASH_SLASH2] = ACTIONS(1946), + [anon_sym_PLUS2] = ACTIONS(1948), + [anon_sym_bit_DASHshl2] = ACTIONS(1946), + [anon_sym_bit_DASHshr2] = ACTIONS(1946), + [anon_sym_bit_DASHand2] = ACTIONS(1946), + [anon_sym_bit_DASHxor2] = ACTIONS(1946), + [anon_sym_bit_DASHor2] = ACTIONS(1946), + [anon_sym_DOT_DOT2] = ACTIONS(1952), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1954), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1954), + [anon_sym_err_GT] = ACTIONS(1948), + [anon_sym_out_GT] = ACTIONS(1948), + [anon_sym_e_GT] = ACTIONS(1948), + [anon_sym_o_GT] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT] = ACTIONS(1948), + [anon_sym_err_GT_GT] = ACTIONS(1946), + [anon_sym_out_GT_GT] = ACTIONS(1946), + [anon_sym_e_GT_GT] = ACTIONS(1946), + [anon_sym_o_GT_GT] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1946), + [sym__unquoted_pattern] = ACTIONS(1956), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(518)] = { + [aux_sym__repeat_newline] = STATE(651), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1241), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(789), + [sym__unquoted_with_expr] = STATE(1120), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(518), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -87181,42 +87566,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(514)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2062), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(514), + [STATE(519)] = { + [aux_sym__repeat_newline] = STATE(658), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1121), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(790), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(519), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -87253,42 +87638,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(515)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2064), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(515), + [STATE(520)] = { + [aux_sym__repeat_newline] = STATE(659), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1246), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(520), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -87325,42 +87710,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(516)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2066), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(516), + [STATE(521)] = { + [sym_cmd_identifier] = STATE(4323), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4301), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_entry] = STATE(4587), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(521), + [aux_sym__types_body_repeat1] = STATE(1504), + [aux_sym__match_pattern_record_body_repeat1] = STATE(769), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [sym__newline] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1780), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1784), + [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), + }, + [STATE(522)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1255), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(826), + [sym__unquoted_with_expr] = STATE(977), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(522), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -87397,213 +87854,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(517)] = { - [sym_path] = STATE(783), - [sym_comment] = STATE(517), - [aux_sym__where_predicate_lhs_repeat1] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1526), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1934), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(518)] = { - [sym_path] = STATE(783), - [sym_comment] = STATE(518), - [aux_sym__where_predicate_lhs_repeat1] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1460), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(519)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1187), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(519), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(523)] = { + [aux_sym__repeat_newline] = STATE(536), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2010), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(716), + [sym__unquoted_with_expr] = STATE(1110), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(523), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -87613,69 +87926,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(520)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1156), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(520), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(524)] = { + [aux_sym__repeat_newline] = STATE(537), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2012), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(721), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(524), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -87685,69 +87998,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(521)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1193), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(521), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(525)] = { + [aux_sym__repeat_newline] = STATE(538), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2015), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(525), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -87757,69 +88070,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(522)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1168), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(522), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(526)] = { + [aux_sym__repeat_newline] = STATE(539), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2017), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(726), + [sym__unquoted_with_expr] = STATE(1116), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(526), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -87829,69 +88142,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(523)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1180), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(523), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(527)] = { + [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2022), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(527), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -87901,69 +88214,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(524)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1197), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(524), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(528)] = { + [aux_sym__repeat_newline] = STATE(541), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2028), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(528), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -87973,69 +88286,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(525)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1234), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(525), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(529)] = { + [aux_sym__repeat_newline] = STATE(542), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2029), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(529), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88045,69 +88358,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(526)] = { - [aux_sym__repeat_newline] = STATE(616), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1982), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(526), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(530)] = { + [aux_sym__repeat_newline] = STATE(543), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2111), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(789), + [sym__unquoted_with_expr] = STATE(1120), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(530), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88117,69 +88430,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(527)] = { - [aux_sym__repeat_newline] = STATE(598), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1226), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(527), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(531)] = { + [aux_sym__repeat_newline] = STATE(544), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1121), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(790), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(531), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88189,285 +88502,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(528)] = { - [aux_sym__repeat_newline] = STATE(599), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1235), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(528), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(529)] = { - [aux_sym__repeat_newline] = STATE(617), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1983), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(529), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(530)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1261), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(530), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(531)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(531), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(532)] = { + [aux_sym__repeat_newline] = STATE(504), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2033), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(532), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88477,69 +88574,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(532)] = { - [aux_sym__repeat_newline] = STATE(619), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1984), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(532), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(533)] = { + [aux_sym__repeat_newline] = STATE(545), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2035), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(533), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88549,69 +88646,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(533)] = { - [aux_sym__repeat_newline] = STATE(620), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1985), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(533), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(534)] = { + [aux_sym__repeat_newline] = STATE(546), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2037), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1125), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(534), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88621,69 +88718,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(534)] = { - [aux_sym__repeat_newline] = STATE(621), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1986), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(534), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(535)] = { + [aux_sym__repeat_newline] = STATE(547), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2039), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(798), + [sym__unquoted_with_expr] = STATE(1126), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(535), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88693,69 +88790,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(535)] = { - [aux_sym__repeat_newline] = STATE(600), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1241), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(535), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(536)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2090), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(826), + [sym__unquoted_with_expr] = STATE(977), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(536), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88765,69 +88862,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(536)] = { - [aux_sym__repeat_newline] = STATE(622), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1987), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(536), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(537)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2093), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(981), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(537), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88837,69 +88934,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(537)] = { - [aux_sym__repeat_newline] = STATE(623), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1988), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(537), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(538)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2099), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(835), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(538), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88909,69 +89006,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(538)] = { - [aux_sym__repeat_newline] = STATE(624), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1989), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(538), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(539)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2101), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(836), + [sym__unquoted_with_expr] = STATE(988), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(539), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88981,69 +89078,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(539)] = { - [aux_sym__repeat_newline] = STATE(626), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(539), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(540)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2104), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(876), + [sym__unquoted_with_expr] = STATE(991), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(540), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1896), + [aux_sym_cmd_identifier_token3] = ACTIONS(1898), + [aux_sym_cmd_identifier_token4] = ACTIONS(1898), + [aux_sym_cmd_identifier_token5] = ACTIONS(1898), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1902), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), + [anon_sym_DOT_DOT_LT] = ACTIONS(1904), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1912), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -89053,113 +89150,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(540)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(540), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1955), - [sym__newline] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_GT2] = ACTIONS(1960), - [anon_sym_DASH2] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_STAR2] = ACTIONS(1960), - [anon_sym_and2] = ACTIONS(1955), - [anon_sym_xor2] = ACTIONS(1955), - [anon_sym_or2] = ACTIONS(1955), - [anon_sym_not_DASHin2] = ACTIONS(1955), - [anon_sym_has2] = ACTIONS(1955), - [anon_sym_not_DASHhas2] = ACTIONS(1955), - [anon_sym_starts_DASHwith2] = ACTIONS(1955), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1955), - [anon_sym_ends_DASHwith2] = ACTIONS(1955), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1955), - [anon_sym_EQ_EQ2] = ACTIONS(1955), - [anon_sym_BANG_EQ2] = ACTIONS(1955), - [anon_sym_LT2] = ACTIONS(1960), - [anon_sym_LT_EQ2] = ACTIONS(1955), - [anon_sym_GT_EQ2] = ACTIONS(1955), - [anon_sym_EQ_TILDE2] = ACTIONS(1955), - [anon_sym_BANG_TILDE2] = ACTIONS(1955), - [anon_sym_like2] = ACTIONS(1955), - [anon_sym_not_DASHlike2] = ACTIONS(1955), - [anon_sym_STAR_STAR2] = ACTIONS(1955), - [anon_sym_PLUS_PLUS2] = ACTIONS(1955), - [anon_sym_SLASH2] = ACTIONS(1960), - [anon_sym_mod2] = ACTIONS(1955), - [anon_sym_SLASH_SLASH2] = ACTIONS(1955), - [anon_sym_PLUS2] = ACTIONS(1960), - [anon_sym_bit_DASHshl2] = ACTIONS(1955), - [anon_sym_bit_DASHshr2] = ACTIONS(1955), - [anon_sym_bit_DASHand2] = ACTIONS(1955), - [anon_sym_bit_DASHxor2] = ACTIONS(1955), - [anon_sym_bit_DASHor2] = ACTIONS(1955), - [anon_sym_err_GT] = ACTIONS(1960), - [anon_sym_out_GT] = ACTIONS(1960), - [anon_sym_e_GT] = ACTIONS(1960), - [anon_sym_o_GT] = ACTIONS(1960), - [anon_sym_err_PLUSout_GT] = ACTIONS(1960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), - [anon_sym_o_PLUSe_GT] = ACTIONS(1960), - [anon_sym_e_PLUSo_GT] = ACTIONS(1960), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(541)] = { - [aux_sym__repeat_newline] = STATE(556), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1564), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2106), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(881), + [sym__unquoted_with_expr] = STATE(993), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(541), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), @@ -89198,40 +89223,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(542)] = { - [aux_sym__repeat_newline] = STATE(557), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1565), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1976), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(887), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(542), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), @@ -89270,40 +89295,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(543)] = { - [aux_sym__repeat_newline] = STATE(558), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1566), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2077), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(892), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(543), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), @@ -89342,40 +89367,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(544)] = { - [aux_sym__repeat_newline] = STATE(559), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1567), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(999), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(893), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(544), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), @@ -89414,40 +89439,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(545)] = { - [aux_sym__repeat_newline] = STATE(560), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1568), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2108), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(718), + [sym__unquoted_with_expr] = STATE(1005), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(545), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), @@ -89486,40 +89511,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(546)] = { - [aux_sym__repeat_newline] = STATE(504), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1569), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2046), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(719), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(546), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), @@ -89558,40 +89583,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(547)] = { - [aux_sym__repeat_newline] = STATE(562), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1570), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2056), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(720), + [sym__unquoted_with_expr] = STATE(1010), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(547), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), @@ -89630,40 +89655,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(548)] = { - [aux_sym__repeat_newline] = STATE(563), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1571), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(562), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2080), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(1012), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(548), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), @@ -89702,40 +89727,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(549)] = { - [aux_sym__repeat_newline] = STATE(564), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(563), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2091), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(1014), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(549), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), @@ -89774,40 +89799,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(550)] = { - [aux_sym__repeat_newline] = STATE(565), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1572), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(564), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2095), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(735), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(550), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), @@ -89846,40 +89871,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(551)] = { - [aux_sym__repeat_newline] = STATE(566), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1573), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(565), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2107), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(737), + [sym__unquoted_with_expr] = STATE(1018), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(551), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), @@ -89918,40 +89943,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(552)] = { - [aux_sym__repeat_newline] = STATE(567), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1574), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(566), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2038), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(738), + [sym__unquoted_with_expr] = STATE(1020), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(552), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), @@ -89990,40 +90015,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(553)] = { - [aux_sym__repeat_newline] = STATE(568), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1575), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(567), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2044), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(740), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(553), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), @@ -90062,185 +90087,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(554)] = { - [aux_sym__repeat_newline] = STATE(601), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1245), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(568), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2047), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(742), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(554), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(555)] = { - [aux_sym__repeat_newline] = STATE(627), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1991), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(555), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(556)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1578), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(556), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -90277,186 +90158,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(557)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1580), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(557), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(558)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1582), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(558), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(559)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1584), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(559), + [STATE(555)] = { + [aux_sym__repeat_newline] = STATE(569), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2055), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(744), + [sym__unquoted_with_expr] = STATE(1027), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(555), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -90493,42 +90230,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(560)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1586), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(560), + [STATE(556)] = { + [aux_sym__repeat_newline] = STATE(570), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1028), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(746), + [sym__unquoted_with_expr] = STATE(1029), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(556), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -90565,114 +90302,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(561)] = { - [aux_sym__repeat_newline] = STATE(530), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1221), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(561), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(562)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1589), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(562), + [STATE(557)] = { + [aux_sym__repeat_newline] = STATE(571), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2076), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(748), + [sym__unquoted_with_expr] = STATE(1030), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(557), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -90709,42 +90374,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(563)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1591), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(563), + [STATE(558)] = { + [aux_sym__repeat_newline] = STATE(572), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2079), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(750), + [sym__unquoted_with_expr] = STATE(1031), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(558), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -90781,42 +90446,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(564)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(564), + [STATE(559)] = { + [aux_sym__repeat_newline] = STATE(573), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2081), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(751), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(559), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -90853,42 +90518,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(565)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1593), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(565), + [STATE(560)] = { + [aux_sym__repeat_newline] = STATE(574), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2084), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(753), + [sym__unquoted_with_expr] = STATE(1034), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(560), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -90925,69 +90590,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(566)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1595), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(566), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(561)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1242), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(775), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(561), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90997,42 +90662,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(567)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1597), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(567), + [STATE(562)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1992), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(775), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(562), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -91069,42 +90734,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(568)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1599), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(568), + [STATE(563)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1997), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(777), + [sym__unquoted_with_expr] = STATE(1130), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(563), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -91141,42 +90806,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(569)] = { - [aux_sym__repeat_newline] = STATE(585), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1601), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(569), + [STATE(564)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1999), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(778), + [sym__unquoted_with_expr] = STATE(1057), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(564), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -91213,42 +90878,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(570)] = { - [aux_sym__repeat_newline] = STATE(586), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1602), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(570), + [STATE(565)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2005), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(565), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -91285,42 +90950,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(571)] = { - [aux_sym__repeat_newline] = STATE(587), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1603), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(571), + [STATE(566)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2008), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1062), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(566), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -91357,42 +91022,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(572)] = { - [aux_sym__repeat_newline] = STATE(588), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1605), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(572), + [STATE(567)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2011), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1064), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(567), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -91429,42 +91094,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(573)] = { - [aux_sym__repeat_newline] = STATE(589), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1606), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(573), + [STATE(568)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2014), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(782), + [sym__unquoted_with_expr] = STATE(1066), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(568), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -91501,42 +91166,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(574)] = { - [aux_sym__repeat_newline] = STATE(590), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1607), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(574), + [STATE(569)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2019), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(569), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -91573,42 +91238,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(575)] = { - [aux_sym__repeat_newline] = STATE(591), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1608), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(575), + [STATE(570)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1071), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(784), + [sym__unquoted_with_expr] = STATE(1072), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(570), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -91645,42 +91310,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(576)] = { - [aux_sym__repeat_newline] = STATE(592), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1609), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(576), + [STATE(571)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2021), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(571), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -91717,42 +91382,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(577)] = { - [aux_sym__repeat_newline] = STATE(593), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(577), + [STATE(572)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2025), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(1078), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(572), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -91789,42 +91454,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(578)] = { - [aux_sym__repeat_newline] = STATE(594), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1610), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(578), + [STATE(573)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2030), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(573), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -91861,42 +91526,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(579)] = { - [aux_sym__repeat_newline] = STATE(595), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1611), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(579), + [STATE(574)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(2034), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(1082), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(574), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -91933,69 +91598,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(580)] = { - [aux_sym__repeat_newline] = STATE(596), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1612), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(580), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(575)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1254), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(777), + [sym__unquoted_with_expr] = STATE(1130), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(575), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92005,69 +91670,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(581)] = { - [aux_sym__repeat_newline] = STATE(597), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1613), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(581), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(576)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1203), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(778), + [sym__unquoted_with_expr] = STATE(1057), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(576), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92077,42 +91742,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(582)] = { - [aux_sym__repeat_newline] = STATE(628), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1992), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(582), + [STATE(577)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1135), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(577), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -92149,42 +91814,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(583)] = { - [aux_sym__repeat_newline] = STATE(643), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1993), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(583), + [STATE(578)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1139), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1062), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(578), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -92221,42 +91886,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(584)] = { - [aux_sym__repeat_newline] = STATE(646), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1994), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(584), + [STATE(579)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1144), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1064), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(579), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -92293,69 +91958,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(585)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1626), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(585), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(580)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1150), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(782), + [sym__unquoted_with_expr] = STATE(1066), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(580), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92365,69 +92030,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(586)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1628), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(586), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(581)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1154), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(581), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92437,69 +92102,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(587)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1630), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(587), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(582)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1071), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(784), + [sym__unquoted_with_expr] = STATE(1072), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(582), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92509,69 +92174,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(588)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1632), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(588), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(583)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1163), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(583), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92581,69 +92246,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(589)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1634), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(589), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(584)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1167), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(1078), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(584), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92653,69 +92318,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(590)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1636), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(590), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(585)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1172), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(585), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92725,69 +92390,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(591)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1638), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(591), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(586)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1176), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(1082), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(586), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92797,69 +92462,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(592)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1640), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(592), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(587)] = { + [aux_sym__repeat_newline] = STATE(671), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1515), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(716), + [sym__unquoted_with_expr] = STATE(1110), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(587), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92869,69 +92534,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(593)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(593), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(588)] = { + [aux_sym__repeat_newline] = STATE(601), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1516), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(721), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(588), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92941,69 +92606,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(594)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1642), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(594), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(589)] = { + [aux_sym__repeat_newline] = STATE(602), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1517), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(589), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93013,69 +92678,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(595)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1644), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(595), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(590)] = { + [aux_sym__repeat_newline] = STATE(603), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1518), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(726), + [sym__unquoted_with_expr] = STATE(1116), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(590), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93085,69 +92750,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(596)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1646), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(596), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(591)] = { + [aux_sym__repeat_newline] = STATE(604), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1519), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(591), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93157,69 +92822,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(597)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1648), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(597), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(592)] = { + [aux_sym__repeat_newline] = STATE(605), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1520), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(592), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93229,69 +92894,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(598)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1178), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(598), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(593)] = { + [aux_sym__repeat_newline] = STATE(606), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1521), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(593), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93301,69 +92966,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(599)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1188), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(599), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(594)] = { + [aux_sym__repeat_newline] = STATE(607), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1522), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(789), + [sym__unquoted_with_expr] = STATE(1120), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(594), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93373,69 +93038,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(600)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1201), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(600), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(595)] = { + [aux_sym__repeat_newline] = STATE(608), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1121), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(790), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(595), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93445,69 +93110,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(601)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1217), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(601), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(596)] = { + [aux_sym__repeat_newline] = STATE(609), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1511), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(596), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93517,69 +93182,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(602)] = { - [aux_sym__repeat_newline] = STATE(631), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1236), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(602), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(597)] = { + [aux_sym__repeat_newline] = STATE(610), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1524), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(597), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(598)] = { + [aux_sym__repeat_newline] = STATE(611), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1526), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1125), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(598), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), + [sym__newline] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(599)] = { + [aux_sym__repeat_newline] = STATE(612), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1527), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(798), + [sym__unquoted_with_expr] = STATE(1126), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(599), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), + [sym__newline] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(600)] = { + [aux_sym__repeat_newline] = STATE(579), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1158), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(740), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(600), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(601)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1541), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(981), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(601), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), + [sym__newline] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(602)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1543), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(835), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(602), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), + [sym__newline] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93590,68 +93615,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(603)] = { - [aux_sym__repeat_newline] = STATE(632), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1249), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1545), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(836), + [sym__unquoted_with_expr] = STATE(988), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(603), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93662,68 +93687,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(604)] = { - [aux_sym__repeat_newline] = STATE(633), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1253), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1547), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(876), + [sym__unquoted_with_expr] = STATE(991), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(604), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93734,68 +93759,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(605)] = { - [aux_sym__repeat_newline] = STATE(634), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1154), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1549), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(881), + [sym__unquoted_with_expr] = STATE(993), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(605), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93806,68 +93831,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(606)] = { - [aux_sym__repeat_newline] = STATE(635), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1161), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1551), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(887), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(606), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93878,68 +93903,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(607)] = { - [aux_sym__repeat_newline] = STATE(636), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1164), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1553), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(892), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(607), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93950,68 +93975,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(608)] = { - [aux_sym__repeat_newline] = STATE(638), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1171), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(999), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(893), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(608), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94022,68 +94047,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(609)] = { - [aux_sym__repeat_newline] = STATE(639), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1174), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1555), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(717), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(609), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94094,68 +94119,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(610)] = { - [aux_sym__repeat_newline] = STATE(640), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1557), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(718), + [sym__unquoted_with_expr] = STATE(1005), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(610), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94166,68 +94191,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(611)] = { - [aux_sym__repeat_newline] = STATE(641), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1185), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1559), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(719), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(611), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94238,68 +94263,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(612)] = { - [aux_sym__repeat_newline] = STATE(644), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1192), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1561), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(720), + [sym__unquoted_with_expr] = STATE(1010), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(612), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94310,68 +94335,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(613)] = { - [aux_sym__repeat_newline] = STATE(647), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1195), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(626), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1563), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(1012), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(613), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94382,68 +94407,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(614)] = { - [aux_sym__repeat_newline] = STATE(650), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1199), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(627), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1564), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(1014), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(614), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94454,140 +94479,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(615)] = { + [aux_sym__repeat_newline] = STATE(628), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1566), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(735), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(1962), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), + [sym__newline] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(616)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1996), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(629), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1567), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(737), + [sym__unquoted_with_expr] = STATE(1018), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(616), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94598,68 +94623,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(617)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1998), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(630), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1568), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(738), + [sym__unquoted_with_expr] = STATE(1020), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(617), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94670,140 +94695,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(618)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4386), - [sym__record_key] = STATE(4971), + [aux_sym__repeat_newline] = STATE(631), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1570), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(740), + [sym__unquoted_with_expr] = STATE(1023), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(618), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym_record_body_repeat1] = STATE(878), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), + [sym__newline] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1914), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(619)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2000), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(632), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1572), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(742), + [sym__unquoted_with_expr] = STATE(1026), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(619), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94814,68 +94839,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(620)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2002), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(633), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1574), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(744), + [sym__unquoted_with_expr] = STATE(1027), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(620), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94886,68 +94911,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(621)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2004), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(634), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1028), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(746), + [sym__unquoted_with_expr] = STATE(1029), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(621), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94958,68 +94983,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(622)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2006), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(635), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1577), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(748), + [sym__unquoted_with_expr] = STATE(1030), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(622), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95030,68 +95055,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(623)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2008), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(636), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1579), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(750), + [sym__unquoted_with_expr] = STATE(1031), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(623), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95102,68 +95127,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(624)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2010), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(637), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1581), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(751), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(624), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95174,140 +95199,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(625)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4298), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4586), - [sym__record_key] = STATE(4971), + [aux_sym__repeat_newline] = STATE(638), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1583), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(753), + [sym__unquoted_with_expr] = STATE(1034), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(625), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym__match_pattern_record_body_repeat1] = STATE(836), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(626)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(626), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95317,69 +95270,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(627)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2012), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(627), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(626)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1678), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(775), + [sym__unquoted_with_expr] = STATE(1052), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(626), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95389,69 +95342,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(628)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2014), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(628), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(627)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1601), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(777), + [sym__unquoted_with_expr] = STATE(1130), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(627), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95461,213 +95414,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(629)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4590), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(629), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(630)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), - [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4536), - [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4536), - [sym_val_filesize] = STATE(4536), - [sym_val_binary] = STATE(4536), - [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), - [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4595), - [sym_val_record] = STATE(4536), - [sym_val_table] = STATE(4536), - [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(630), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(631)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1134), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(631), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(628)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1603), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(778), + [sym__unquoted_with_expr] = STATE(1057), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(628), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95677,69 +95486,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(632)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1139), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(632), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(629)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1605), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1059), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(629), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95749,69 +95558,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(633)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1143), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(633), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(630)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1607), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1062), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(630), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95821,69 +95630,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(634)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1148), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(634), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(631)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1609), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1064), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(631), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95893,69 +95702,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(635)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1152), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(635), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(632)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1611), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(782), + [sym__unquoted_with_expr] = STATE(1066), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(632), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95965,69 +95774,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(636)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1157), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(636), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(633)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1613), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1069), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(633), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96037,69 +95846,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(637)] = { - [aux_sym__repeat_newline] = STATE(531), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(637), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(634)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1071), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(784), + [sym__unquoted_with_expr] = STATE(1072), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(634), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96109,69 +95918,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(638)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1162), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(638), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(635)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1615), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(1075), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(635), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96181,69 +95990,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(639)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1167), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(639), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(636)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1617), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(1078), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(636), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96253,69 +96062,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(640)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(640), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(637)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1619), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(637), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96325,69 +96134,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(641)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1177), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(641), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(638)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1621), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(1082), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(638), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96397,114 +96206,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(642)] = { - [sym_comment] = STATE(642), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(1970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1972), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(643)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2016), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(643), + [STATE(639)] = { + [aux_sym__repeat_newline] = STATE(660), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1249), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(639), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -96541,69 +96278,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(644)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1181), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(644), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(640)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1173), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(834), + [sym__unquoted_with_expr] = STATE(981), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(640), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96613,114 +96350,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(645)] = { - [sym_comment] = STATE(645), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(1980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1982), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(646)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2018), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(646), + [STATE(641)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1188), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(835), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(641), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -96757,69 +96422,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(647)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1186), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(647), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(642)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1222), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(836), + [sym__unquoted_with_expr] = STATE(988), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(642), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96829,42 +96494,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(648)] = { - [aux_sym__repeat_newline] = STATE(671), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2020), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(648), + [STATE(643)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1132), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(876), + [sym__unquoted_with_expr] = STATE(991), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(643), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -96901,42 +96566,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(649)] = { - [aux_sym__repeat_newline] = STATE(505), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2021), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(649), + [STATE(644)] = { + [sym_path] = STATE(842), + [sym_comment] = STATE(644), + [aux_sym__where_predicate_lhs_repeat1] = STATE(644), + [ts_builtin_sym_end] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(1540), + [sym__newline] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_err_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_GT_PIPE] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), + [anon_sym_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1540), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1540), + [anon_sym_xor2] = ACTIONS(1540), + [anon_sym_or2] = ACTIONS(1540), + [anon_sym_not_DASHin2] = ACTIONS(1540), + [anon_sym_has2] = ACTIONS(1540), + [anon_sym_not_DASHhas2] = ACTIONS(1540), + [anon_sym_starts_DASHwith2] = ACTIONS(1540), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1540), + [anon_sym_ends_DASHwith2] = ACTIONS(1540), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1540), + [anon_sym_EQ_EQ2] = ACTIONS(1540), + [anon_sym_BANG_EQ2] = ACTIONS(1540), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1540), + [anon_sym_GT_EQ2] = ACTIONS(1540), + [anon_sym_EQ_TILDE2] = ACTIONS(1540), + [anon_sym_BANG_TILDE2] = ACTIONS(1540), + [anon_sym_like2] = ACTIONS(1540), + [anon_sym_not_DASHlike2] = ACTIONS(1540), + [anon_sym_STAR_STAR2] = ACTIONS(1540), + [anon_sym_PLUS_PLUS2] = ACTIONS(1540), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1540), + [anon_sym_SLASH_SLASH2] = ACTIONS(1540), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_bit_DASHshl2] = ACTIONS(1540), + [anon_sym_bit_DASHshr2] = ACTIONS(1540), + [anon_sym_bit_DASHand2] = ACTIONS(1540), + [anon_sym_bit_DASHxor2] = ACTIONS(1540), + [anon_sym_bit_DASHor2] = ACTIONS(1540), + [anon_sym_DOT_DOT2] = ACTIONS(1538), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), + [anon_sym_DOT2] = ACTIONS(1976), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1540), + [anon_sym_out_GT_GT] = ACTIONS(1540), + [anon_sym_e_GT_GT] = ACTIONS(1540), + [anon_sym_o_GT_GT] = ACTIONS(1540), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(645)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1153), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(881), + [sym__unquoted_with_expr] = STATE(993), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(645), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -96973,114 +96710,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(650)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1191), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(650), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [STATE(646)] = { + [sym_cmd_identifier] = STATE(4323), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5075), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_entry] = STATE(4391), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(646), + [aux_sym__types_body_repeat1] = STATE(1504), + [aux_sym_record_body_repeat1] = STATE(801), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [sym__newline] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1780), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1784), + [aux_sym__val_number_decimal_token4] = ACTIONS(1784), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(651)] = { - [aux_sym__repeat_newline] = STATE(506), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2022), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(651), + [STATE(647)] = { + [sym_path] = STATE(842), + [sym_comment] = STATE(647), + [aux_sym__where_predicate_lhs_repeat1] = STATE(644), + [ts_builtin_sym_end] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1536), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_err_GT_PIPE] = ACTIONS(1536), + [anon_sym_out_GT_PIPE] = ACTIONS(1536), + [anon_sym_e_GT_PIPE] = ACTIONS(1536), + [anon_sym_o_GT_PIPE] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1536), + [anon_sym_GT2] = ACTIONS(1534), + [anon_sym_DASH2] = ACTIONS(1536), + [anon_sym_STAR2] = ACTIONS(1534), + [anon_sym_and2] = ACTIONS(1536), + [anon_sym_xor2] = ACTIONS(1536), + [anon_sym_or2] = ACTIONS(1536), + [anon_sym_not_DASHin2] = ACTIONS(1536), + [anon_sym_has2] = ACTIONS(1536), + [anon_sym_not_DASHhas2] = ACTIONS(1536), + [anon_sym_starts_DASHwith2] = ACTIONS(1536), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1536), + [anon_sym_ends_DASHwith2] = ACTIONS(1536), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1536), + [anon_sym_EQ_EQ2] = ACTIONS(1536), + [anon_sym_BANG_EQ2] = ACTIONS(1536), + [anon_sym_LT2] = ACTIONS(1534), + [anon_sym_LT_EQ2] = ACTIONS(1536), + [anon_sym_GT_EQ2] = ACTIONS(1536), + [anon_sym_EQ_TILDE2] = ACTIONS(1536), + [anon_sym_BANG_TILDE2] = ACTIONS(1536), + [anon_sym_like2] = ACTIONS(1536), + [anon_sym_not_DASHlike2] = ACTIONS(1536), + [anon_sym_STAR_STAR2] = ACTIONS(1536), + [anon_sym_PLUS_PLUS2] = ACTIONS(1536), + [anon_sym_SLASH2] = ACTIONS(1534), + [anon_sym_mod2] = ACTIONS(1536), + [anon_sym_SLASH_SLASH2] = ACTIONS(1536), + [anon_sym_PLUS2] = ACTIONS(1534), + [anon_sym_bit_DASHshl2] = ACTIONS(1536), + [anon_sym_bit_DASHshr2] = ACTIONS(1536), + [anon_sym_bit_DASHand2] = ACTIONS(1536), + [anon_sym_bit_DASHxor2] = ACTIONS(1536), + [anon_sym_bit_DASHor2] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1534), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1536), + [anon_sym_DOT2] = ACTIONS(1852), + [anon_sym_err_GT] = ACTIONS(1534), + [anon_sym_out_GT] = ACTIONS(1534), + [anon_sym_e_GT] = ACTIONS(1534), + [anon_sym_o_GT] = ACTIONS(1534), + [anon_sym_err_PLUSout_GT] = ACTIONS(1534), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1534), + [anon_sym_o_PLUSe_GT] = ACTIONS(1534), + [anon_sym_e_PLUSo_GT] = ACTIONS(1534), + [anon_sym_err_GT_GT] = ACTIONS(1536), + [anon_sym_out_GT_GT] = ACTIONS(1536), + [anon_sym_e_GT_GT] = ACTIONS(1536), + [anon_sym_o_GT_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(648)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1161), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(887), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(648), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -97117,42 +96926,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(652)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(652), + [STATE(649)] = { + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), + [sym_val_nothing] = STATE(4536), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), + [sym_val_cellpath] = STATE(4536), + [sym_val_number] = STATE(4536), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4536), + [sym_val_filesize] = STATE(4536), + [sym_val_binary] = STATE(4536), + [sym_val_string] = STATE(4536), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_interpolated] = STATE(4536), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), + [sym_val_list] = STATE(4536), + [sym__spread_list] = STATE(4668), + [sym_val_entry] = STATE(4604), + [sym_val_record] = STATE(4536), + [sym_val_table] = STATE(4536), + [sym_val_closure] = STATE(4536), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(649), + [aux_sym_list_body_repeat1] = STATE(655), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_null] = ACTIONS(1434), + [aux_sym_cmd_identifier_token3] = ACTIONS(1436), + [aux_sym_cmd_identifier_token4] = ACTIONS(1436), + [aux_sym_cmd_identifier_token5] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_DOLLAR] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), + [anon_sym_DOT_DOT_LT] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1452), + [aux_sym__val_number_decimal_token2] = ACTIONS(1454), + [aux_sym__val_number_decimal_token3] = ACTIONS(1456), + [aux_sym__val_number_decimal_token4] = ACTIONS(1456), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1414), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1418), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, + [STATE(650)] = { + [aux_sym__repeat_newline] = STATE(642), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1233), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(726), + [sym__unquoted_with_expr] = STATE(1116), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(650), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -97189,42 +97070,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(653)] = { - [aux_sym__repeat_newline] = STATE(508), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2024), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(653), + [STATE(651)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1171), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(892), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(651), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -97261,42 +97142,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(654)] = { - [aux_sym__repeat_newline] = STATE(509), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2025), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(654), + [STATE(652)] = { + [aux_sym__repeat_newline] = STATE(661), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1251), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1125), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(652), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -97333,69 +97214,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(655)] = { - [aux_sym__repeat_newline] = STATE(525), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1182), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(655), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(653)] = { + [aux_sym__repeat_newline] = STATE(664), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1253), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(798), + [sym__unquoted_with_expr] = STATE(1126), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(653), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -97405,42 +97286,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(656)] = { - [aux_sym__repeat_newline] = STATE(510), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2026), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(656), + [STATE(654)] = { + [aux_sym__repeat_newline] = STATE(643), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1235), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(654), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -97477,114 +97358,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(657)] = { - [sym_expr_parenthesized] = STATE(3954), - [sym__spread_parenthesized] = STATE(4742), - [sym_val_range] = STATE(4754), - [sym__val_range] = STATE(4438), - [sym__value] = STATE(4754), + [STATE(655)] = { + [sym_expr_parenthesized] = STATE(4034), + [sym__spread_parenthesized] = STATE(4668), + [sym_val_range] = STATE(4748), + [sym__val_range] = STATE(4510), + [sym__value] = STATE(4748), [sym_val_nothing] = STATE(4536), - [sym_val_bool] = STATE(4263), - [sym__spread_variable] = STATE(4721), - [sym_val_variable] = STATE(3846), + [sym_val_bool] = STATE(4265), + [sym__spread_variable] = STATE(4645), + [sym_val_variable] = STATE(3847), [sym_val_cellpath] = STATE(4536), [sym_val_number] = STATE(4536), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4165), + [sym__val_number_decimal] = STATE(3452), + [sym__val_number] = STATE(4172), [sym_val_duration] = STATE(4536), [sym_val_filesize] = STATE(4536), [sym_val_binary] = STATE(4536), [sym_val_string] = STATE(4536), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), [sym_val_interpolated] = STATE(4536), - [sym__inter_single_quotes] = STATE(4452), - [sym__inter_double_quotes] = STATE(4453), + [sym__inter_single_quotes] = STATE(4457), + [sym__inter_double_quotes] = STATE(4458), [sym_val_list] = STATE(4536), - [sym__spread_list] = STATE(4742), - [sym_val_entry] = STATE(4767), + [sym__spread_list] = STATE(4668), + [sym_val_entry] = STATE(4762), [sym_val_record] = STATE(4536), [sym_val_table] = STATE(4536), [sym_val_closure] = STATE(4536), - [sym__unquoted_in_list] = STATE(4203), - [sym__unquoted_in_list_with_expr] = STATE(4754), - [sym__unquoted_anonymous_prefix] = STATE(4438), - [sym_comment] = STATE(657), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [anon_sym_null] = ACTIONS(1989), - [aux_sym_cmd_identifier_token3] = ACTIONS(1992), - [aux_sym_cmd_identifier_token4] = ACTIONS(1992), - [aux_sym_cmd_identifier_token5] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_DOT_DOT] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2013), - [anon_sym_DOT_DOT_LT] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2016), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2022), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2028), - [aux_sym__val_number_token2] = ACTIONS(2028), - [aux_sym__val_number_token3] = ACTIONS(2028), - [anon_sym_0b] = ACTIONS(2031), - [anon_sym_0o] = ACTIONS(2034), - [anon_sym_0x] = ACTIONS(2034), - [sym_val_date] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_BQUOTE] = ACTIONS(2046), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2052), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2055), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2061), + [sym__unquoted_in_list] = STATE(4280), + [sym__unquoted_in_list_with_expr] = STATE(4748), + [sym__unquoted_anonymous_prefix] = STATE(4510), + [sym_comment] = STATE(655), + [aux_sym_list_body_repeat1] = STATE(655), + [anon_sym_true] = ACTIONS(1979), + [anon_sym_false] = ACTIONS(1979), + [anon_sym_null] = ACTIONS(1982), + [aux_sym_cmd_identifier_token3] = ACTIONS(1985), + [aux_sym_cmd_identifier_token4] = ACTIONS(1985), + [aux_sym_cmd_identifier_token5] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_DOLLAR] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_DOT_DOT] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2006), + [anon_sym_DOT_DOT_LT] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2012), + [aux_sym__val_number_decimal_token2] = ACTIONS(2015), + [aux_sym__val_number_decimal_token3] = ACTIONS(2018), + [aux_sym__val_number_decimal_token4] = ACTIONS(2018), + [aux_sym__val_number_token1] = ACTIONS(2021), + [aux_sym__val_number_token2] = ACTIONS(2021), + [aux_sym__val_number_token3] = ACTIONS(2021), + [anon_sym_0b] = ACTIONS(2024), + [anon_sym_0o] = ACTIONS(2027), + [anon_sym_0x] = ACTIONS(2027), + [sym_val_date] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2033), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2039), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2042), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2045), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2048), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2054), }, - [STATE(658)] = { - [aux_sym__repeat_newline] = STATE(511), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2027), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(658), + [STATE(656)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(656), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_catch] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [sym__newline] = ACTIONS(2059), + [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_COLON] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_RPAREN] = ACTIONS(2057), + [anon_sym_GT2] = ACTIONS(2062), + [anon_sym_DASH2] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_STAR2] = ACTIONS(2062), + [anon_sym_and2] = ACTIONS(2057), + [anon_sym_xor2] = ACTIONS(2057), + [anon_sym_or2] = ACTIONS(2057), + [anon_sym_not_DASHin2] = ACTIONS(2057), + [anon_sym_has2] = ACTIONS(2057), + [anon_sym_not_DASHhas2] = ACTIONS(2057), + [anon_sym_starts_DASHwith2] = ACTIONS(2057), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2057), + [anon_sym_ends_DASHwith2] = ACTIONS(2057), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2057), + [anon_sym_EQ_EQ2] = ACTIONS(2057), + [anon_sym_BANG_EQ2] = ACTIONS(2057), + [anon_sym_LT2] = ACTIONS(2062), + [anon_sym_LT_EQ2] = ACTIONS(2057), + [anon_sym_GT_EQ2] = ACTIONS(2057), + [anon_sym_EQ_TILDE2] = ACTIONS(2057), + [anon_sym_BANG_TILDE2] = ACTIONS(2057), + [anon_sym_like2] = ACTIONS(2057), + [anon_sym_not_DASHlike2] = ACTIONS(2057), + [anon_sym_STAR_STAR2] = ACTIONS(2057), + [anon_sym_PLUS_PLUS2] = ACTIONS(2057), + [anon_sym_SLASH2] = ACTIONS(2062), + [anon_sym_mod2] = ACTIONS(2057), + [anon_sym_SLASH_SLASH2] = ACTIONS(2057), + [anon_sym_PLUS2] = ACTIONS(2062), + [anon_sym_bit_DASHshl2] = ACTIONS(2057), + [anon_sym_bit_DASHshr2] = ACTIONS(2057), + [anon_sym_bit_DASHand2] = ACTIONS(2057), + [anon_sym_bit_DASHxor2] = ACTIONS(2057), + [anon_sym_bit_DASHor2] = ACTIONS(2057), + [anon_sym_err_GT] = ACTIONS(2062), + [anon_sym_out_GT] = ACTIONS(2062), + [anon_sym_e_GT] = ACTIONS(2062), + [anon_sym_o_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT] = ACTIONS(2062), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(657)] = { + [aux_sym__repeat_newline] = STATE(645), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1237), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(657), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(658)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(999), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(893), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(658), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -97622,40 +97647,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(659)] = { - [aux_sym__repeat_newline] = STATE(512), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1194), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(717), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(659), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97694,40 +97719,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(660)] = { - [aux_sym__repeat_newline] = STATE(513), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2028), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1206), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(718), + [sym__unquoted_with_expr] = STATE(1005), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(660), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97766,40 +97791,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(661)] = { - [aux_sym__repeat_newline] = STATE(514), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2029), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1217), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(719), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(661), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97838,40 +97863,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(662)] = { - [aux_sym__repeat_newline] = STATE(515), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2030), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(641), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1228), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(662), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97910,40 +97935,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(663)] = { - [aux_sym__repeat_newline] = STATE(516), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2031), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(522), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1224), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(716), + [sym__unquoted_with_expr] = STATE(1110), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(663), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), @@ -97982,140 +98007,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(664)] = { + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1230), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(720), + [sym__unquoted_with_expr] = STATE(1010), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [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(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [sym__newline] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(665)] = { - [aux_sym__repeat_newline] = STATE(519), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1176), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(561), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1252), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(1012), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(665), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -98126,68 +98151,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(666)] = { - [aux_sym__repeat_newline] = STATE(520), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1262), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(575), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1202), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(1014), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(666), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -98198,68 +98223,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(667)] = { - [aux_sym__repeat_newline] = STATE(521), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1250), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(576), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1136), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(735), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(667), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -98270,68 +98295,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(668)] = { - [aux_sym__repeat_newline] = STATE(522), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1255), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(577), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1140), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(737), + [sym__unquoted_with_expr] = STATE(1018), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(668), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -98342,68 +98367,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(669)] = { - [aux_sym__repeat_newline] = STATE(523), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1135), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(640), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1226), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(721), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(669), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -98414,68 +98439,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(670)] = { - [aux_sym__repeat_newline] = STATE(524), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1158), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(578), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1149), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(738), + [sym__unquoted_with_expr] = STATE(1020), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(670), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1922), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1932), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -98486,68 +98511,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(671)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2044), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(2191), + [sym_expr_unary] = STATE(1223), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1223), + [sym__expr_binary_expression_parenthesized] = STATE(1539), + [sym_expr_parenthesized] = STATE(715), + [sym_val_range] = STATE(1223), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(1223), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(826), + [sym__unquoted_with_expr] = STATE(977), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(671), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [sym__newline] = ACTIONS(1900), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1964), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -98559,220 +98584,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(672)] = { [sym_comment] = STATE(672), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2064), - [aux_sym__immediate_decimal_token5] = ACTIONS(2066), - [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(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(2064), + [anon_sym_catch] = ACTIONS(2064), + [anon_sym_in] = ACTIONS(2064), + [sym__newline] = ACTIONS(2064), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_err_GT_PIPE] = ACTIONS(2064), + [anon_sym_out_GT_PIPE] = ACTIONS(2064), + [anon_sym_e_GT_PIPE] = ACTIONS(2064), + [anon_sym_o_GT_PIPE] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2064), + [anon_sym_COLON] = ACTIONS(2064), + [anon_sym_LBRACK] = ACTIONS(2064), + [anon_sym_RPAREN] = ACTIONS(2064), + [anon_sym_GT2] = ACTIONS(2066), + [anon_sym_DASH2] = ACTIONS(2064), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_STAR2] = ACTIONS(2066), + [anon_sym_and2] = ACTIONS(2064), + [anon_sym_xor2] = ACTIONS(2064), + [anon_sym_or2] = ACTIONS(2064), + [anon_sym_not_DASHin2] = ACTIONS(2064), + [anon_sym_has2] = ACTIONS(2064), + [anon_sym_not_DASHhas2] = ACTIONS(2064), + [anon_sym_starts_DASHwith2] = ACTIONS(2064), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2064), + [anon_sym_ends_DASHwith2] = ACTIONS(2064), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2064), + [anon_sym_EQ_EQ2] = ACTIONS(2064), + [anon_sym_BANG_EQ2] = ACTIONS(2064), + [anon_sym_LT2] = ACTIONS(2066), + [anon_sym_LT_EQ2] = ACTIONS(2064), + [anon_sym_GT_EQ2] = ACTIONS(2064), + [anon_sym_EQ_TILDE2] = ACTIONS(2064), + [anon_sym_BANG_TILDE2] = ACTIONS(2064), + [anon_sym_like2] = ACTIONS(2064), + [anon_sym_not_DASHlike2] = ACTIONS(2064), + [anon_sym_STAR_STAR2] = ACTIONS(2064), + [anon_sym_PLUS_PLUS2] = ACTIONS(2064), + [anon_sym_SLASH2] = ACTIONS(2066), + [anon_sym_mod2] = ACTIONS(2064), + [anon_sym_SLASH_SLASH2] = ACTIONS(2064), + [anon_sym_PLUS2] = ACTIONS(2066), + [anon_sym_bit_DASHshl2] = ACTIONS(2064), + [anon_sym_bit_DASHshr2] = ACTIONS(2064), + [anon_sym_bit_DASHand2] = ACTIONS(2064), + [anon_sym_bit_DASHxor2] = ACTIONS(2064), + [anon_sym_bit_DASHor2] = ACTIONS(2064), + [anon_sym_err_GT] = ACTIONS(2066), + [anon_sym_out_GT] = ACTIONS(2066), + [anon_sym_e_GT] = ACTIONS(2066), + [anon_sym_o_GT] = ACTIONS(2066), + [anon_sym_err_PLUSout_GT] = ACTIONS(2066), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2066), + [anon_sym_o_PLUSe_GT] = ACTIONS(2066), + [anon_sym_e_PLUSo_GT] = ACTIONS(2066), + [anon_sym_err_GT_GT] = ACTIONS(2064), + [anon_sym_out_GT_GT] = ACTIONS(2064), + [anon_sym_e_GT_GT] = ACTIONS(2064), + [anon_sym_o_GT_GT] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2064), [anon_sym_POUND] = ACTIONS(3), }, [STATE(673)] = { [sym_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2068), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2070), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2070), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [sym__newline] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2068), + [anon_sym_GT2] = ACTIONS(2070), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_EQ_GT] = ACTIONS(2068), + [anon_sym_STAR2] = ACTIONS(2070), + [anon_sym_and2] = ACTIONS(2068), + [anon_sym_xor2] = ACTIONS(2068), + [anon_sym_or2] = ACTIONS(2068), + [anon_sym_not_DASHin2] = ACTIONS(2068), + [anon_sym_has2] = ACTIONS(2068), + [anon_sym_not_DASHhas2] = ACTIONS(2068), + [anon_sym_starts_DASHwith2] = ACTIONS(2068), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2068), + [anon_sym_ends_DASHwith2] = ACTIONS(2068), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2068), + [anon_sym_EQ_EQ2] = ACTIONS(2068), + [anon_sym_BANG_EQ2] = ACTIONS(2068), + [anon_sym_LT2] = ACTIONS(2070), + [anon_sym_LT_EQ2] = ACTIONS(2068), + [anon_sym_GT_EQ2] = ACTIONS(2068), + [anon_sym_EQ_TILDE2] = ACTIONS(2068), + [anon_sym_BANG_TILDE2] = ACTIONS(2068), + [anon_sym_like2] = ACTIONS(2068), + [anon_sym_not_DASHlike2] = ACTIONS(2068), + [anon_sym_STAR_STAR2] = ACTIONS(2068), + [anon_sym_PLUS_PLUS2] = ACTIONS(2068), + [anon_sym_SLASH2] = ACTIONS(2070), + [anon_sym_mod2] = ACTIONS(2068), + [anon_sym_SLASH_SLASH2] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2070), + [anon_sym_bit_DASHshl2] = ACTIONS(2068), + [anon_sym_bit_DASHshr2] = ACTIONS(2068), + [anon_sym_bit_DASHand2] = ACTIONS(2068), + [anon_sym_bit_DASHxor2] = ACTIONS(2068), + [anon_sym_bit_DASHor2] = ACTIONS(2068), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_err_GT] = ACTIONS(2070), + [anon_sym_out_GT] = ACTIONS(2070), + [anon_sym_e_GT] = ACTIONS(2070), + [anon_sym_o_GT] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT] = ACTIONS(2070), + [anon_sym_err_GT_GT] = ACTIONS(2068), + [anon_sym_out_GT_GT] = ACTIONS(2068), + [anon_sym_e_GT_GT] = ACTIONS(2068), + [anon_sym_o_GT_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2068), [anon_sym_POUND] = ACTIONS(3), }, [STATE(674)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(674), - [anon_sym_in] = ACTIONS(2072), - [sym__newline] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_err_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_GT_PIPE] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_GT2] = ACTIONS(2074), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_EQ_GT] = ACTIONS(2072), - [anon_sym_STAR2] = ACTIONS(2074), - [anon_sym_and2] = ACTIONS(2072), - [anon_sym_xor2] = ACTIONS(2072), - [anon_sym_or2] = ACTIONS(2072), - [anon_sym_not_DASHin2] = ACTIONS(2072), - [anon_sym_has2] = ACTIONS(2072), - [anon_sym_not_DASHhas2] = ACTIONS(2072), - [anon_sym_starts_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2072), - [anon_sym_ends_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2072), - [anon_sym_EQ_EQ2] = ACTIONS(2072), - [anon_sym_BANG_EQ2] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LT_EQ2] = ACTIONS(2072), - [anon_sym_GT_EQ2] = ACTIONS(2072), - [anon_sym_EQ_TILDE2] = ACTIONS(2072), - [anon_sym_BANG_TILDE2] = ACTIONS(2072), - [anon_sym_like2] = ACTIONS(2072), - [anon_sym_not_DASHlike2] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2072), - [anon_sym_PLUS_PLUS2] = ACTIONS(2072), - [anon_sym_SLASH2] = ACTIONS(2074), - [anon_sym_mod2] = ACTIONS(2072), - [anon_sym_SLASH_SLASH2] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2074), - [anon_sym_bit_DASHshl2] = ACTIONS(2072), - [anon_sym_bit_DASHshr2] = ACTIONS(2072), - [anon_sym_bit_DASHand2] = ACTIONS(2072), - [anon_sym_bit_DASHxor2] = ACTIONS(2072), - [anon_sym_bit_DASHor2] = ACTIONS(2072), - [anon_sym_err_GT] = ACTIONS(2074), - [anon_sym_out_GT] = ACTIONS(2074), - [anon_sym_e_GT] = ACTIONS(2074), - [anon_sym_o_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT] = ACTIONS(2074), - [anon_sym_err_GT_GT] = ACTIONS(2072), - [anon_sym_out_GT_GT] = ACTIONS(2072), - [anon_sym_e_GT_GT] = ACTIONS(2072), - [anon_sym_o_GT_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(675)] = { - [sym_comment] = STATE(675), - [anon_sym_in] = ACTIONS(2076), + [anon_sym_in] = ACTIONS(2074), [sym__newline] = ACTIONS(2076), [anon_sym_SEMI] = ACTIONS(2076), [anon_sym_PIPE] = ACTIONS(2076), @@ -98786,51 +98740,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), [anon_sym_RPAREN] = ACTIONS(2076), [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), + [anon_sym_DASH2] = ACTIONS(2074), [anon_sym_LBRACE] = ACTIONS(2076), [anon_sym_RBRACE] = ACTIONS(2076), [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_DOT_DOT2] = ACTIONS(2080), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2082), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_DOT_DOT2] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(2080), + [anon_sym_out_GT] = ACTIONS(2080), + [anon_sym_e_GT] = ACTIONS(2080), + [anon_sym_o_GT] = ACTIONS(2080), + [anon_sym_err_PLUSout_GT] = ACTIONS(2080), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2080), + [anon_sym_o_PLUSe_GT] = ACTIONS(2080), + [anon_sym_e_PLUSo_GT] = ACTIONS(2080), [anon_sym_err_GT_GT] = ACTIONS(2076), [anon_sym_out_GT_GT] = ACTIONS(2076), [anon_sym_e_GT_GT] = ACTIONS(2076), @@ -98841,150 +98795,576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(675)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(675), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(676)] = { [sym_comment] = STATE(676), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_in] = ACTIONS(2084), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_GT2] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_EQ_GT] = ACTIONS(2084), - [anon_sym_STAR2] = ACTIONS(2086), - [anon_sym_and2] = ACTIONS(2084), - [anon_sym_xor2] = ACTIONS(2084), - [anon_sym_or2] = ACTIONS(2084), - [anon_sym_not_DASHin2] = ACTIONS(2084), - [anon_sym_has2] = ACTIONS(2084), - [anon_sym_not_DASHhas2] = ACTIONS(2084), - [anon_sym_starts_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2084), - [anon_sym_ends_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2084), - [anon_sym_EQ_EQ2] = ACTIONS(2084), - [anon_sym_BANG_EQ2] = ACTIONS(2084), - [anon_sym_LT2] = ACTIONS(2086), - [anon_sym_LT_EQ2] = ACTIONS(2084), - [anon_sym_GT_EQ2] = ACTIONS(2084), - [anon_sym_EQ_TILDE2] = ACTIONS(2084), - [anon_sym_BANG_TILDE2] = ACTIONS(2084), - [anon_sym_like2] = ACTIONS(2084), - [anon_sym_not_DASHlike2] = ACTIONS(2084), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_STAR_STAR2] = ACTIONS(2084), - [anon_sym_PLUS_PLUS2] = ACTIONS(2084), - [anon_sym_SLASH2] = ACTIONS(2086), - [anon_sym_mod2] = ACTIONS(2084), - [anon_sym_SLASH_SLASH2] = ACTIONS(2084), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_bit_DASHshl2] = ACTIONS(2084), - [anon_sym_bit_DASHshr2] = ACTIONS(2084), - [anon_sym_bit_DASHand2] = ACTIONS(2084), - [anon_sym_bit_DASHxor2] = ACTIONS(2084), - [anon_sym_bit_DASHor2] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_in] = ACTIONS(2086), + [sym__newline] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_PIPE] = ACTIONS(2086), + [anon_sym_err_GT_PIPE] = ACTIONS(2086), + [anon_sym_out_GT_PIPE] = ACTIONS(2086), + [anon_sym_e_GT_PIPE] = ACTIONS(2086), + [anon_sym_o_GT_PIPE] = ACTIONS(2086), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2086), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2086), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2086), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2086), + [anon_sym_RPAREN] = ACTIONS(2086), + [anon_sym_GT2] = ACTIONS(2088), + [anon_sym_DASH2] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_EQ_GT] = ACTIONS(2086), + [anon_sym_STAR2] = ACTIONS(2088), + [anon_sym_and2] = ACTIONS(2086), + [anon_sym_xor2] = ACTIONS(2086), + [anon_sym_or2] = ACTIONS(2086), + [anon_sym_not_DASHin2] = ACTIONS(2086), + [anon_sym_has2] = ACTIONS(2086), + [anon_sym_not_DASHhas2] = ACTIONS(2086), + [anon_sym_starts_DASHwith2] = ACTIONS(2086), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2086), + [anon_sym_ends_DASHwith2] = ACTIONS(2086), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2086), + [anon_sym_EQ_EQ2] = ACTIONS(2086), + [anon_sym_BANG_EQ2] = ACTIONS(2086), + [anon_sym_LT2] = ACTIONS(2088), + [anon_sym_LT_EQ2] = ACTIONS(2086), + [anon_sym_GT_EQ2] = ACTIONS(2086), + [anon_sym_EQ_TILDE2] = ACTIONS(2086), + [anon_sym_BANG_TILDE2] = ACTIONS(2086), + [anon_sym_like2] = ACTIONS(2086), + [anon_sym_not_DASHlike2] = ACTIONS(2086), + [anon_sym_STAR_STAR2] = ACTIONS(2086), + [anon_sym_PLUS_PLUS2] = ACTIONS(2086), + [anon_sym_SLASH2] = ACTIONS(2088), + [anon_sym_mod2] = ACTIONS(2086), + [anon_sym_SLASH_SLASH2] = ACTIONS(2086), + [anon_sym_PLUS2] = ACTIONS(2088), + [anon_sym_bit_DASHshl2] = ACTIONS(2086), + [anon_sym_bit_DASHshr2] = ACTIONS(2086), + [anon_sym_bit_DASHand2] = ACTIONS(2086), + [anon_sym_bit_DASHxor2] = ACTIONS(2086), + [anon_sym_bit_DASHor2] = ACTIONS(2086), + [anon_sym_COLON2] = ACTIONS(2086), + [anon_sym_err_GT] = ACTIONS(2088), + [anon_sym_out_GT] = ACTIONS(2088), + [anon_sym_e_GT] = ACTIONS(2088), + [anon_sym_o_GT] = ACTIONS(2088), + [anon_sym_err_PLUSout_GT] = ACTIONS(2088), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2088), + [anon_sym_o_PLUSe_GT] = ACTIONS(2088), + [anon_sym_e_PLUSo_GT] = ACTIONS(2088), + [anon_sym_err_GT_GT] = ACTIONS(2086), + [anon_sym_out_GT_GT] = ACTIONS(2086), + [anon_sym_e_GT_GT] = ACTIONS(2086), + [anon_sym_o_GT_GT] = ACTIONS(2086), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2086), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2086), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2086), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2086), [anon_sym_POUND] = ACTIONS(3), }, [STATE(677)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(677), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2090), + [sym__newline] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_err_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_GT_PIPE] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2090), + [anon_sym_GT2] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_STAR2] = ACTIONS(2092), + [anon_sym_and2] = ACTIONS(2090), + [anon_sym_xor2] = ACTIONS(2090), + [anon_sym_or2] = ACTIONS(2090), + [anon_sym_not_DASHin2] = ACTIONS(2090), + [anon_sym_has2] = ACTIONS(2090), + [anon_sym_not_DASHhas2] = ACTIONS(2090), + [anon_sym_starts_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), + [anon_sym_ends_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), + [anon_sym_EQ_EQ2] = ACTIONS(2090), + [anon_sym_BANG_EQ2] = ACTIONS(2090), + [anon_sym_LT2] = ACTIONS(2092), + [anon_sym_LT_EQ2] = ACTIONS(2090), + [anon_sym_GT_EQ2] = ACTIONS(2090), + [anon_sym_EQ_TILDE2] = ACTIONS(2090), + [anon_sym_BANG_TILDE2] = ACTIONS(2090), + [anon_sym_like2] = ACTIONS(2090), + [anon_sym_not_DASHlike2] = ACTIONS(2090), + [anon_sym_STAR_STAR2] = ACTIONS(2090), + [anon_sym_PLUS_PLUS2] = ACTIONS(2090), + [anon_sym_SLASH2] = ACTIONS(2092), + [anon_sym_mod2] = ACTIONS(2090), + [anon_sym_SLASH_SLASH2] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2092), + [anon_sym_bit_DASHshl2] = ACTIONS(2090), + [anon_sym_bit_DASHshr2] = ACTIONS(2090), + [anon_sym_bit_DASHand2] = ACTIONS(2090), + [anon_sym_bit_DASHxor2] = ACTIONS(2090), + [anon_sym_bit_DASHor2] = ACTIONS(2090), + [anon_sym_DOT_DOT2] = ACTIONS(2094), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2096), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2096), + [anon_sym_err_GT] = ACTIONS(2092), + [anon_sym_out_GT] = ACTIONS(2092), + [anon_sym_e_GT] = ACTIONS(2092), + [anon_sym_o_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT] = ACTIONS(2092), + [anon_sym_err_GT_GT] = ACTIONS(2090), + [anon_sym_out_GT_GT] = ACTIONS(2090), + [anon_sym_e_GT_GT] = ACTIONS(2090), + [anon_sym_o_GT_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), [anon_sym_POUND] = ACTIONS(3), }, [STATE(678)] = { [sym_comment] = STATE(678), + [anon_sym_in] = ACTIONS(1946), + [sym__newline] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_err_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_GT_PIPE] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_GT2] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_STAR2] = ACTIONS(1948), + [anon_sym_and2] = ACTIONS(1946), + [anon_sym_xor2] = ACTIONS(1946), + [anon_sym_or2] = ACTIONS(1946), + [anon_sym_not_DASHin2] = ACTIONS(1946), + [anon_sym_has2] = ACTIONS(1946), + [anon_sym_not_DASHhas2] = ACTIONS(1946), + [anon_sym_starts_DASHwith2] = ACTIONS(1946), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1946), + [anon_sym_ends_DASHwith2] = ACTIONS(1946), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1946), + [anon_sym_EQ_EQ2] = ACTIONS(1946), + [anon_sym_BANG_EQ2] = ACTIONS(1946), + [anon_sym_LT2] = ACTIONS(1948), + [anon_sym_LT_EQ2] = ACTIONS(1946), + [anon_sym_GT_EQ2] = ACTIONS(1946), + [anon_sym_EQ_TILDE2] = ACTIONS(1946), + [anon_sym_BANG_TILDE2] = ACTIONS(1946), + [anon_sym_like2] = ACTIONS(1946), + [anon_sym_not_DASHlike2] = ACTIONS(1946), + [anon_sym_STAR_STAR2] = ACTIONS(1946), + [anon_sym_PLUS_PLUS2] = ACTIONS(1946), + [anon_sym_SLASH2] = ACTIONS(1948), + [anon_sym_mod2] = ACTIONS(1946), + [anon_sym_SLASH_SLASH2] = ACTIONS(1946), + [anon_sym_PLUS2] = ACTIONS(1948), + [anon_sym_bit_DASHshl2] = ACTIONS(1946), + [anon_sym_bit_DASHshr2] = ACTIONS(1946), + [anon_sym_bit_DASHand2] = ACTIONS(1946), + [anon_sym_bit_DASHxor2] = ACTIONS(1946), + [anon_sym_bit_DASHor2] = ACTIONS(1946), + [anon_sym_DOT_DOT2] = ACTIONS(2098), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2100), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2100), + [anon_sym_err_GT] = ACTIONS(1948), + [anon_sym_out_GT] = ACTIONS(1948), + [anon_sym_e_GT] = ACTIONS(1948), + [anon_sym_o_GT] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT] = ACTIONS(1948), + [anon_sym_err_GT_GT] = ACTIONS(1946), + [anon_sym_out_GT_GT] = ACTIONS(1946), + [anon_sym_e_GT_GT] = ACTIONS(1946), + [anon_sym_o_GT_GT] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1946), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(679)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(679), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(680)] = { + [sym_comment] = STATE(680), + [anon_sym_if] = ACTIONS(2102), + [anon_sym_in] = ACTIONS(2102), + [sym__newline] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_err_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_GT_PIPE] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2102), + [anon_sym_RPAREN] = ACTIONS(2102), + [anon_sym_GT2] = ACTIONS(2104), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_EQ_GT] = ACTIONS(2102), + [anon_sym_STAR2] = ACTIONS(2104), + [anon_sym_and2] = ACTIONS(2102), + [anon_sym_xor2] = ACTIONS(2102), + [anon_sym_or2] = ACTIONS(2102), + [anon_sym_not_DASHin2] = ACTIONS(2102), + [anon_sym_has2] = ACTIONS(2102), + [anon_sym_not_DASHhas2] = ACTIONS(2102), + [anon_sym_starts_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2102), + [anon_sym_ends_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2102), + [anon_sym_EQ_EQ2] = ACTIONS(2102), + [anon_sym_BANG_EQ2] = ACTIONS(2102), + [anon_sym_LT2] = ACTIONS(2104), + [anon_sym_LT_EQ2] = ACTIONS(2102), + [anon_sym_GT_EQ2] = ACTIONS(2102), + [anon_sym_EQ_TILDE2] = ACTIONS(2102), + [anon_sym_BANG_TILDE2] = ACTIONS(2102), + [anon_sym_like2] = ACTIONS(2102), + [anon_sym_not_DASHlike2] = ACTIONS(2102), + [anon_sym_LPAREN2] = ACTIONS(2102), + [anon_sym_STAR_STAR2] = ACTIONS(2102), + [anon_sym_PLUS_PLUS2] = ACTIONS(2102), + [anon_sym_SLASH2] = ACTIONS(2104), + [anon_sym_mod2] = ACTIONS(2102), + [anon_sym_SLASH_SLASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_bit_DASHshl2] = ACTIONS(2102), + [anon_sym_bit_DASHshr2] = ACTIONS(2102), + [anon_sym_bit_DASHand2] = ACTIONS(2102), + [anon_sym_bit_DASHxor2] = ACTIONS(2102), + [anon_sym_bit_DASHor2] = ACTIONS(2102), + [anon_sym_err_GT] = ACTIONS(2104), + [anon_sym_out_GT] = ACTIONS(2104), + [anon_sym_e_GT] = ACTIONS(2104), + [anon_sym_o_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT] = ACTIONS(2104), + [anon_sym_err_GT_GT] = ACTIONS(2102), + [anon_sym_out_GT_GT] = ACTIONS(2102), + [anon_sym_e_GT_GT] = ACTIONS(2102), + [anon_sym_o_GT_GT] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2102), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(681)] = { + [sym_comment] = STATE(681), + [ts_builtin_sym_end] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(1946), + [sym__newline] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_err_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_GT_PIPE] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1946), + [anon_sym_GT2] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1946), + [anon_sym_STAR2] = ACTIONS(1948), + [anon_sym_and2] = ACTIONS(1946), + [anon_sym_xor2] = ACTIONS(1946), + [anon_sym_or2] = ACTIONS(1946), + [anon_sym_not_DASHin2] = ACTIONS(1946), + [anon_sym_has2] = ACTIONS(1946), + [anon_sym_not_DASHhas2] = ACTIONS(1946), + [anon_sym_starts_DASHwith2] = ACTIONS(1946), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1946), + [anon_sym_ends_DASHwith2] = ACTIONS(1946), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1946), + [anon_sym_EQ_EQ2] = ACTIONS(1946), + [anon_sym_BANG_EQ2] = ACTIONS(1946), + [anon_sym_LT2] = ACTIONS(1948), + [anon_sym_LT_EQ2] = ACTIONS(1946), + [anon_sym_GT_EQ2] = ACTIONS(1946), + [anon_sym_EQ_TILDE2] = ACTIONS(1946), + [anon_sym_BANG_TILDE2] = ACTIONS(1946), + [anon_sym_like2] = ACTIONS(1946), + [anon_sym_not_DASHlike2] = ACTIONS(1946), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_STAR_STAR2] = ACTIONS(1946), + [anon_sym_PLUS_PLUS2] = ACTIONS(1946), + [anon_sym_SLASH2] = ACTIONS(1948), + [anon_sym_mod2] = ACTIONS(1946), + [anon_sym_SLASH_SLASH2] = ACTIONS(1946), + [anon_sym_PLUS2] = ACTIONS(1948), + [anon_sym_bit_DASHshl2] = ACTIONS(1946), + [anon_sym_bit_DASHshr2] = ACTIONS(1946), + [anon_sym_bit_DASHand2] = ACTIONS(1946), + [anon_sym_bit_DASHxor2] = ACTIONS(1946), + [anon_sym_bit_DASHor2] = ACTIONS(1946), + [anon_sym_DOT_DOT2] = ACTIONS(2106), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2108), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2108), + [anon_sym_err_GT] = ACTIONS(1948), + [anon_sym_out_GT] = ACTIONS(1948), + [anon_sym_e_GT] = ACTIONS(1948), + [anon_sym_o_GT] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT] = ACTIONS(1948), + [anon_sym_err_GT_GT] = ACTIONS(1946), + [anon_sym_out_GT_GT] = ACTIONS(1946), + [anon_sym_e_GT_GT] = ACTIONS(1946), + [anon_sym_o_GT_GT] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1946), + [sym__unquoted_pattern] = ACTIONS(1956), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(682)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(682), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(683)] = { + [sym_comment] = STATE(683), [ts_builtin_sym_end] = ACTIONS(1726), [anon_sym_in] = ACTIONS(1726), [sym__newline] = ACTIONS(1726), @@ -99054,1215 +99434,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(679)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(679), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(680)] = { - [sym_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(681)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(681), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(682)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(682), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(683)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(683), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(684)] = { [sym_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(1870), - [anon_sym_in] = 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_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_DOT_DOT2] = ACTIONS(1872), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), - [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(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), - [sym__unquoted_pattern] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_in] = ACTIONS(2110), + [sym__newline] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_err_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_GT_PIPE] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2110), + [anon_sym_RPAREN] = ACTIONS(2110), + [anon_sym_GT2] = ACTIONS(2112), + [anon_sym_DASH2] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_EQ_GT] = ACTIONS(2110), + [anon_sym_STAR2] = ACTIONS(2112), + [anon_sym_and2] = ACTIONS(2110), + [anon_sym_xor2] = ACTIONS(2110), + [anon_sym_or2] = ACTIONS(2110), + [anon_sym_not_DASHin2] = ACTIONS(2110), + [anon_sym_has2] = ACTIONS(2110), + [anon_sym_not_DASHhas2] = ACTIONS(2110), + [anon_sym_starts_DASHwith2] = ACTIONS(2110), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2110), + [anon_sym_ends_DASHwith2] = ACTIONS(2110), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2110), + [anon_sym_EQ_EQ2] = ACTIONS(2110), + [anon_sym_BANG_EQ2] = ACTIONS(2110), + [anon_sym_LT2] = ACTIONS(2112), + [anon_sym_LT_EQ2] = ACTIONS(2110), + [anon_sym_GT_EQ2] = ACTIONS(2110), + [anon_sym_EQ_TILDE2] = ACTIONS(2110), + [anon_sym_BANG_TILDE2] = ACTIONS(2110), + [anon_sym_like2] = ACTIONS(2110), + [anon_sym_not_DASHlike2] = ACTIONS(2110), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_STAR_STAR2] = ACTIONS(2110), + [anon_sym_PLUS_PLUS2] = ACTIONS(2110), + [anon_sym_SLASH2] = ACTIONS(2112), + [anon_sym_mod2] = ACTIONS(2110), + [anon_sym_SLASH_SLASH2] = ACTIONS(2110), + [anon_sym_PLUS2] = ACTIONS(2112), + [anon_sym_bit_DASHshl2] = ACTIONS(2110), + [anon_sym_bit_DASHshr2] = ACTIONS(2110), + [anon_sym_bit_DASHand2] = ACTIONS(2110), + [anon_sym_bit_DASHxor2] = ACTIONS(2110), + [anon_sym_bit_DASHor2] = ACTIONS(2110), + [anon_sym_err_GT] = ACTIONS(2112), + [anon_sym_out_GT] = ACTIONS(2112), + [anon_sym_e_GT] = ACTIONS(2112), + [anon_sym_o_GT] = ACTIONS(2112), + [anon_sym_err_PLUSout_GT] = ACTIONS(2112), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2112), + [anon_sym_o_PLUSe_GT] = ACTIONS(2112), + [anon_sym_e_PLUSo_GT] = ACTIONS(2112), + [anon_sym_err_GT_GT] = ACTIONS(2110), + [anon_sym_out_GT_GT] = ACTIONS(2110), + [anon_sym_e_GT_GT] = ACTIONS(2110), + [anon_sym_o_GT_GT] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2110), [anon_sym_POUND] = ACTIONS(3), }, [STATE(685)] = { [sym_comment] = STATE(685), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_in] = ACTIONS(2092), - [sym__newline] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_err_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_GT_PIPE] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), - [anon_sym_RPAREN] = ACTIONS(2092), - [anon_sym_GT2] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_EQ_GT] = ACTIONS(2092), - [anon_sym_STAR2] = ACTIONS(2094), - [anon_sym_and2] = ACTIONS(2092), - [anon_sym_xor2] = ACTIONS(2092), - [anon_sym_or2] = ACTIONS(2092), - [anon_sym_not_DASHin2] = ACTIONS(2092), - [anon_sym_has2] = ACTIONS(2092), - [anon_sym_not_DASHhas2] = ACTIONS(2092), - [anon_sym_starts_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2092), - [anon_sym_ends_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2092), - [anon_sym_EQ_EQ2] = ACTIONS(2092), - [anon_sym_BANG_EQ2] = ACTIONS(2092), - [anon_sym_LT2] = ACTIONS(2094), - [anon_sym_LT_EQ2] = ACTIONS(2092), - [anon_sym_GT_EQ2] = ACTIONS(2092), - [anon_sym_EQ_TILDE2] = ACTIONS(2092), - [anon_sym_BANG_TILDE2] = ACTIONS(2092), - [anon_sym_like2] = ACTIONS(2092), - [anon_sym_not_DASHlike2] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(686)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(686), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(687)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(687), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(688)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(688), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(689)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(689), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(690)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(690), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(691)] = { - [sym_comment] = STATE(691), - [anon_sym_else] = ACTIONS(2096), - [anon_sym_catch] = ACTIONS(2096), - [anon_sym_in] = ACTIONS(2096), - [sym__newline] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_COLON] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2096), - [anon_sym_GT2] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_STAR2] = ACTIONS(2098), - [anon_sym_and2] = ACTIONS(2096), - [anon_sym_xor2] = ACTIONS(2096), - [anon_sym_or2] = ACTIONS(2096), - [anon_sym_not_DASHin2] = ACTIONS(2096), - [anon_sym_has2] = ACTIONS(2096), - [anon_sym_not_DASHhas2] = ACTIONS(2096), - [anon_sym_starts_DASHwith2] = ACTIONS(2096), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2096), - [anon_sym_ends_DASHwith2] = ACTIONS(2096), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2096), - [anon_sym_EQ_EQ2] = ACTIONS(2096), - [anon_sym_BANG_EQ2] = ACTIONS(2096), - [anon_sym_LT2] = ACTIONS(2098), - [anon_sym_LT_EQ2] = ACTIONS(2096), - [anon_sym_GT_EQ2] = ACTIONS(2096), - [anon_sym_EQ_TILDE2] = ACTIONS(2096), - [anon_sym_BANG_TILDE2] = ACTIONS(2096), - [anon_sym_like2] = ACTIONS(2096), - [anon_sym_not_DASHlike2] = ACTIONS(2096), - [anon_sym_STAR_STAR2] = ACTIONS(2096), - [anon_sym_PLUS_PLUS2] = ACTIONS(2096), - [anon_sym_SLASH2] = ACTIONS(2098), - [anon_sym_mod2] = ACTIONS(2096), - [anon_sym_SLASH_SLASH2] = ACTIONS(2096), - [anon_sym_PLUS2] = ACTIONS(2098), - [anon_sym_bit_DASHshl2] = ACTIONS(2096), - [anon_sym_bit_DASHshr2] = ACTIONS(2096), - [anon_sym_bit_DASHand2] = ACTIONS(2096), - [anon_sym_bit_DASHxor2] = ACTIONS(2096), - [anon_sym_bit_DASHor2] = ACTIONS(2096), - [anon_sym_err_GT] = ACTIONS(2098), - [anon_sym_out_GT] = ACTIONS(2098), - [anon_sym_e_GT] = ACTIONS(2098), - [anon_sym_o_GT] = ACTIONS(2098), - [anon_sym_err_PLUSout_GT] = ACTIONS(2098), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2098), - [anon_sym_o_PLUSe_GT] = ACTIONS(2098), - [anon_sym_e_PLUSo_GT] = ACTIONS(2098), - [anon_sym_err_GT_GT] = ACTIONS(2096), - [anon_sym_out_GT_GT] = ACTIONS(2096), - [anon_sym_e_GT_GT] = ACTIONS(2096), - [anon_sym_o_GT_GT] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(692)] = { - [sym_comment] = STATE(692), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_DOT_DOT2] = ACTIONS(2104), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2106), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2106), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(693)] = { - [sym_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2108), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2110), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2110), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(694)] = { - [sym_comment] = STATE(694), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_in] = ACTIONS(2112), - [sym__newline] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(2112), - [anon_sym_err_GT_PIPE] = ACTIONS(2112), - [anon_sym_out_GT_PIPE] = ACTIONS(2112), - [anon_sym_e_GT_PIPE] = ACTIONS(2112), - [anon_sym_o_GT_PIPE] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2112), - [anon_sym_RPAREN] = ACTIONS(2112), - [anon_sym_GT2] = ACTIONS(2114), - [anon_sym_DASH2] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_EQ_GT] = ACTIONS(2112), - [anon_sym_STAR2] = ACTIONS(2114), - [anon_sym_and2] = ACTIONS(2112), - [anon_sym_xor2] = ACTIONS(2112), - [anon_sym_or2] = ACTIONS(2112), - [anon_sym_not_DASHin2] = ACTIONS(2112), - [anon_sym_has2] = ACTIONS(2112), - [anon_sym_not_DASHhas2] = ACTIONS(2112), - [anon_sym_starts_DASHwith2] = ACTIONS(2112), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2112), - [anon_sym_ends_DASHwith2] = ACTIONS(2112), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2112), - [anon_sym_EQ_EQ2] = ACTIONS(2112), - [anon_sym_BANG_EQ2] = ACTIONS(2112), - [anon_sym_LT2] = ACTIONS(2114), - [anon_sym_LT_EQ2] = ACTIONS(2112), - [anon_sym_GT_EQ2] = ACTIONS(2112), - [anon_sym_EQ_TILDE2] = ACTIONS(2112), - [anon_sym_BANG_TILDE2] = ACTIONS(2112), - [anon_sym_like2] = ACTIONS(2112), - [anon_sym_not_DASHlike2] = ACTIONS(2112), - [anon_sym_STAR_STAR2] = ACTIONS(2112), - [anon_sym_PLUS_PLUS2] = ACTIONS(2112), - [anon_sym_SLASH2] = ACTIONS(2114), - [anon_sym_mod2] = ACTIONS(2112), - [anon_sym_SLASH_SLASH2] = ACTIONS(2112), - [anon_sym_PLUS2] = ACTIONS(2114), - [anon_sym_bit_DASHshl2] = ACTIONS(2112), - [anon_sym_bit_DASHshr2] = ACTIONS(2112), - [anon_sym_bit_DASHand2] = ACTIONS(2112), - [anon_sym_bit_DASHxor2] = ACTIONS(2112), - [anon_sym_bit_DASHor2] = ACTIONS(2112), - [anon_sym_COLON2] = ACTIONS(2112), - [anon_sym_err_GT] = ACTIONS(2114), - [anon_sym_out_GT] = ACTIONS(2114), - [anon_sym_e_GT] = ACTIONS(2114), - [anon_sym_o_GT] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT] = ACTIONS(2114), - [anon_sym_err_GT_GT] = ACTIONS(2112), - [anon_sym_out_GT_GT] = ACTIONS(2112), - [anon_sym_e_GT_GT] = ACTIONS(2112), - [anon_sym_o_GT_GT] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(695)] = { - [sym_comment] = STATE(695), - [anon_sym_if] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(696)] = { - [sym_comment] = STATE(696), [anon_sym_in] = ACTIONS(1726), [sym__newline] = ACTIONS(1726), [anon_sym_SEMI] = ACTIONS(1726), @@ -100311,8 +99555,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1726), [anon_sym_bit_DASHxor2] = ACTIONS(1726), [anon_sym_bit_DASHor2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(2116), - [aux_sym__immediate_decimal_token5] = ACTIONS(2118), + [aux_sym__immediate_decimal_token1] = ACTIONS(2114), + [aux_sym__immediate_decimal_token5] = ACTIONS(2116), [anon_sym_err_GT] = ACTIONS(1728), [anon_sym_out_GT] = ACTIONS(1728), [anon_sym_e_GT] = ACTIONS(1728), @@ -100332,272 +99576,982 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1728), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(686)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(686), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(687)] = { + [sym_comment] = STATE(687), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_err_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_GT_PIPE] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_GT2] = ACTIONS(2120), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_STAR2] = ACTIONS(2120), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2120), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2120), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2120), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(2122), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2124), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2124), + [anon_sym_err_GT] = ACTIONS(2120), + [anon_sym_out_GT] = ACTIONS(2120), + [anon_sym_e_GT] = ACTIONS(2120), + [anon_sym_o_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT] = ACTIONS(2120), + [anon_sym_err_GT_GT] = ACTIONS(2118), + [anon_sym_out_GT_GT] = ACTIONS(2118), + [anon_sym_e_GT_GT] = ACTIONS(2118), + [anon_sym_o_GT_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(688)] = { + [sym_comment] = STATE(688), + [anon_sym_in] = ACTIONS(1936), + [sym__newline] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_err_GT_PIPE] = ACTIONS(1936), + [anon_sym_out_GT_PIPE] = ACTIONS(1936), + [anon_sym_e_GT_PIPE] = ACTIONS(1936), + [anon_sym_o_GT_PIPE] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1936), + [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_GT2] = ACTIONS(1938), + [anon_sym_DASH2] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_STAR2] = ACTIONS(1938), + [anon_sym_and2] = ACTIONS(1936), + [anon_sym_xor2] = ACTIONS(1936), + [anon_sym_or2] = ACTIONS(1936), + [anon_sym_not_DASHin2] = ACTIONS(1936), + [anon_sym_has2] = ACTIONS(1936), + [anon_sym_not_DASHhas2] = ACTIONS(1936), + [anon_sym_starts_DASHwith2] = ACTIONS(1936), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1936), + [anon_sym_ends_DASHwith2] = ACTIONS(1936), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1936), + [anon_sym_EQ_EQ2] = ACTIONS(1936), + [anon_sym_BANG_EQ2] = ACTIONS(1936), + [anon_sym_LT2] = ACTIONS(1938), + [anon_sym_LT_EQ2] = ACTIONS(1936), + [anon_sym_GT_EQ2] = ACTIONS(1936), + [anon_sym_EQ_TILDE2] = ACTIONS(1936), + [anon_sym_BANG_TILDE2] = ACTIONS(1936), + [anon_sym_like2] = ACTIONS(1936), + [anon_sym_not_DASHlike2] = ACTIONS(1936), + [anon_sym_STAR_STAR2] = ACTIONS(1936), + [anon_sym_PLUS_PLUS2] = ACTIONS(1936), + [anon_sym_SLASH2] = ACTIONS(1938), + [anon_sym_mod2] = ACTIONS(1936), + [anon_sym_SLASH_SLASH2] = ACTIONS(1936), + [anon_sym_PLUS2] = ACTIONS(1938), + [anon_sym_bit_DASHshl2] = ACTIONS(1936), + [anon_sym_bit_DASHshr2] = ACTIONS(1936), + [anon_sym_bit_DASHand2] = ACTIONS(1936), + [anon_sym_bit_DASHxor2] = ACTIONS(1936), + [anon_sym_bit_DASHor2] = ACTIONS(1936), + [anon_sym_DOT_DOT2] = ACTIONS(2126), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2128), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2128), + [anon_sym_err_GT] = ACTIONS(1938), + [anon_sym_out_GT] = ACTIONS(1938), + [anon_sym_e_GT] = ACTIONS(1938), + [anon_sym_o_GT] = ACTIONS(1938), + [anon_sym_err_PLUSout_GT] = ACTIONS(1938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1938), + [anon_sym_o_PLUSe_GT] = ACTIONS(1938), + [anon_sym_e_PLUSo_GT] = ACTIONS(1938), + [anon_sym_err_GT_GT] = ACTIONS(1936), + [anon_sym_out_GT_GT] = ACTIONS(1936), + [anon_sym_e_GT_GT] = ACTIONS(1936), + [anon_sym_o_GT_GT] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(689)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(689), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(690)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(690), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(691)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(691), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(692)] = { + [sym_comment] = STATE(692), + [anon_sym_if] = ACTIONS(960), + [anon_sym_in] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_EQ_GT] = ACTIONS(960), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(960), + [anon_sym_xor2] = ACTIONS(960), + [anon_sym_or2] = ACTIONS(960), + [anon_sym_not_DASHin2] = ACTIONS(960), + [anon_sym_has2] = ACTIONS(960), + [anon_sym_not_DASHhas2] = ACTIONS(960), + [anon_sym_starts_DASHwith2] = ACTIONS(960), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(960), + [anon_sym_ends_DASHwith2] = ACTIONS(960), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(960), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(960), + [anon_sym_like2] = ACTIONS(960), + [anon_sym_not_DASHlike2] = ACTIONS(960), + [anon_sym_STAR_STAR2] = ACTIONS(960), + [anon_sym_PLUS_PLUS2] = ACTIONS(960), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(960), + [anon_sym_SLASH_SLASH2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(960), + [anon_sym_bit_DASHshr2] = ACTIONS(960), + [anon_sym_bit_DASHand2] = ACTIONS(960), + [anon_sym_bit_DASHxor2] = ACTIONS(960), + [anon_sym_bit_DASHor2] = ACTIONS(960), + [anon_sym_COLON2] = ACTIONS(960), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(693)] = { + [sym_comment] = STATE(693), + [ts_builtin_sym_end] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(1936), + [sym__newline] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_err_GT_PIPE] = ACTIONS(1936), + [anon_sym_out_GT_PIPE] = ACTIONS(1936), + [anon_sym_e_GT_PIPE] = ACTIONS(1936), + [anon_sym_o_GT_PIPE] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1936), + [anon_sym_GT2] = ACTIONS(1938), + [anon_sym_DASH2] = ACTIONS(1936), + [anon_sym_STAR2] = ACTIONS(1938), + [anon_sym_and2] = ACTIONS(1936), + [anon_sym_xor2] = ACTIONS(1936), + [anon_sym_or2] = ACTIONS(1936), + [anon_sym_not_DASHin2] = ACTIONS(1936), + [anon_sym_has2] = ACTIONS(1936), + [anon_sym_not_DASHhas2] = ACTIONS(1936), + [anon_sym_starts_DASHwith2] = ACTIONS(1936), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1936), + [anon_sym_ends_DASHwith2] = ACTIONS(1936), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1936), + [anon_sym_EQ_EQ2] = ACTIONS(1936), + [anon_sym_BANG_EQ2] = ACTIONS(1936), + [anon_sym_LT2] = ACTIONS(1938), + [anon_sym_LT_EQ2] = ACTIONS(1936), + [anon_sym_GT_EQ2] = ACTIONS(1936), + [anon_sym_EQ_TILDE2] = ACTIONS(1936), + [anon_sym_BANG_TILDE2] = ACTIONS(1936), + [anon_sym_like2] = ACTIONS(1936), + [anon_sym_not_DASHlike2] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1940), + [anon_sym_STAR_STAR2] = ACTIONS(1936), + [anon_sym_PLUS_PLUS2] = ACTIONS(1936), + [anon_sym_SLASH2] = ACTIONS(1938), + [anon_sym_mod2] = ACTIONS(1936), + [anon_sym_SLASH_SLASH2] = ACTIONS(1936), + [anon_sym_PLUS2] = ACTIONS(1938), + [anon_sym_bit_DASHshl2] = ACTIONS(1936), + [anon_sym_bit_DASHshr2] = ACTIONS(1936), + [anon_sym_bit_DASHand2] = ACTIONS(1936), + [anon_sym_bit_DASHxor2] = ACTIONS(1936), + [anon_sym_bit_DASHor2] = ACTIONS(1936), + [anon_sym_DOT_DOT2] = ACTIONS(2130), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2132), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2132), + [anon_sym_err_GT] = ACTIONS(1938), + [anon_sym_out_GT] = ACTIONS(1938), + [anon_sym_e_GT] = ACTIONS(1938), + [anon_sym_o_GT] = ACTIONS(1938), + [anon_sym_err_PLUSout_GT] = ACTIONS(1938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1938), + [anon_sym_o_PLUSe_GT] = ACTIONS(1938), + [anon_sym_e_PLUSo_GT] = ACTIONS(1938), + [anon_sym_err_GT_GT] = ACTIONS(1936), + [anon_sym_out_GT_GT] = ACTIONS(1936), + [anon_sym_e_GT_GT] = ACTIONS(1936), + [anon_sym_o_GT_GT] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1936), + [sym__unquoted_pattern] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(694)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(694), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(695)] = { + [sym_comment] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_in] = ACTIONS(1468), + [sym__newline] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_err_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_GT_PIPE] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), + [anon_sym_GT2] = ACTIONS(1466), + [anon_sym_DASH2] = ACTIONS(1468), + [anon_sym_STAR2] = ACTIONS(1466), + [anon_sym_and2] = ACTIONS(1468), + [anon_sym_xor2] = ACTIONS(1468), + [anon_sym_or2] = ACTIONS(1468), + [anon_sym_not_DASHin2] = ACTIONS(1468), + [anon_sym_has2] = ACTIONS(1468), + [anon_sym_not_DASHhas2] = ACTIONS(1468), + [anon_sym_starts_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), + [anon_sym_ends_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), + [anon_sym_EQ_EQ2] = ACTIONS(1468), + [anon_sym_BANG_EQ2] = ACTIONS(1468), + [anon_sym_LT2] = ACTIONS(1466), + [anon_sym_LT_EQ2] = ACTIONS(1468), + [anon_sym_GT_EQ2] = ACTIONS(1468), + [anon_sym_EQ_TILDE2] = ACTIONS(1468), + [anon_sym_BANG_TILDE2] = ACTIONS(1468), + [anon_sym_like2] = ACTIONS(1468), + [anon_sym_not_DASHlike2] = ACTIONS(1468), + [anon_sym_STAR_STAR2] = ACTIONS(1468), + [anon_sym_PLUS_PLUS2] = ACTIONS(1468), + [anon_sym_SLASH2] = ACTIONS(1466), + [anon_sym_mod2] = ACTIONS(1468), + [anon_sym_SLASH_SLASH2] = ACTIONS(1468), + [anon_sym_PLUS2] = ACTIONS(1466), + [anon_sym_bit_DASHshl2] = ACTIONS(1468), + [anon_sym_bit_DASHshr2] = ACTIONS(1468), + [anon_sym_bit_DASHand2] = ACTIONS(1468), + [anon_sym_bit_DASHxor2] = ACTIONS(1468), + [anon_sym_bit_DASHor2] = ACTIONS(1468), + [anon_sym_DOT_DOT2] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), + [anon_sym_QMARK2] = ACTIONS(2134), + [anon_sym_DOT2] = ACTIONS(1466), + [anon_sym_err_GT] = ACTIONS(1466), + [anon_sym_out_GT] = ACTIONS(1466), + [anon_sym_e_GT] = ACTIONS(1466), + [anon_sym_o_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT] = ACTIONS(1466), + [anon_sym_err_GT_GT] = ACTIONS(1468), + [anon_sym_out_GT_GT] = ACTIONS(1468), + [anon_sym_e_GT_GT] = ACTIONS(1468), + [anon_sym_o_GT_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(696)] = { + [sym_comment] = STATE(696), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_in] = ACTIONS(1468), + [sym__newline] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_err_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_GT_PIPE] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), + [anon_sym_GT2] = ACTIONS(1466), + [anon_sym_DASH2] = ACTIONS(1468), + [anon_sym_STAR2] = ACTIONS(1466), + [anon_sym_and2] = ACTIONS(1468), + [anon_sym_xor2] = ACTIONS(1468), + [anon_sym_or2] = ACTIONS(1468), + [anon_sym_not_DASHin2] = ACTIONS(1468), + [anon_sym_has2] = ACTIONS(1468), + [anon_sym_not_DASHhas2] = ACTIONS(1468), + [anon_sym_starts_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), + [anon_sym_ends_DASHwith2] = ACTIONS(1468), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), + [anon_sym_EQ_EQ2] = ACTIONS(1468), + [anon_sym_BANG_EQ2] = ACTIONS(1468), + [anon_sym_LT2] = ACTIONS(1466), + [anon_sym_LT_EQ2] = ACTIONS(1468), + [anon_sym_GT_EQ2] = ACTIONS(1468), + [anon_sym_EQ_TILDE2] = ACTIONS(1468), + [anon_sym_BANG_TILDE2] = ACTIONS(1468), + [anon_sym_like2] = ACTIONS(1468), + [anon_sym_not_DASHlike2] = ACTIONS(1468), + [anon_sym_STAR_STAR2] = ACTIONS(1468), + [anon_sym_PLUS_PLUS2] = ACTIONS(1468), + [anon_sym_SLASH2] = ACTIONS(1466), + [anon_sym_mod2] = ACTIONS(1468), + [anon_sym_SLASH_SLASH2] = ACTIONS(1468), + [anon_sym_PLUS2] = ACTIONS(1466), + [anon_sym_bit_DASHshl2] = ACTIONS(1468), + [anon_sym_bit_DASHshr2] = ACTIONS(1468), + [anon_sym_bit_DASHand2] = ACTIONS(1468), + [anon_sym_bit_DASHxor2] = ACTIONS(1468), + [anon_sym_bit_DASHor2] = ACTIONS(1468), + [anon_sym_DOT_DOT2] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_DOT2] = ACTIONS(1466), + [anon_sym_err_GT] = ACTIONS(1466), + [anon_sym_out_GT] = ACTIONS(1466), + [anon_sym_e_GT] = ACTIONS(1466), + [anon_sym_o_GT] = ACTIONS(1466), + [anon_sym_err_PLUSout_GT] = ACTIONS(1466), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), + [anon_sym_o_PLUSe_GT] = ACTIONS(1466), + [anon_sym_e_PLUSo_GT] = ACTIONS(1466), + [anon_sym_err_GT_GT] = ACTIONS(1468), + [anon_sym_out_GT_GT] = ACTIONS(1468), + [anon_sym_e_GT_GT] = ACTIONS(1468), + [anon_sym_o_GT_GT] = ACTIONS(1468), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(697)] = { [sym_comment] = STATE(697), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_GT2] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_STAR2] = ACTIONS(2078), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2078), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2078), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_DOT_DOT2] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(2078), + [anon_sym_out_GT] = ACTIONS(2078), + [anon_sym_e_GT] = ACTIONS(2078), + [anon_sym_o_GT] = ACTIONS(2078), + [anon_sym_err_PLUSout_GT] = ACTIONS(2078), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), + [anon_sym_o_PLUSe_GT] = ACTIONS(2078), + [anon_sym_e_PLUSo_GT] = ACTIONS(2078), + [anon_sym_err_GT_GT] = ACTIONS(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), }, [STATE(698)] = { [sym_comment] = STATE(698), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), - [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2124), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2126), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2126), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), + [ts_builtin_sym_end] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [anon_sym_DOT_DOT2] = ACTIONS(1812), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1810), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1810), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), [anon_sym_POUND] = ACTIONS(3), }, [STATE(699)] = { + [sym__expr_parenthesized_immediate] = STATE(4971), [sym_comment] = STATE(699), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_in] = ACTIONS(2128), - [sym__newline] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_err_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_GT_PIPE] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), - [anon_sym_RPAREN] = ACTIONS(2128), - [anon_sym_GT2] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_EQ_GT] = ACTIONS(2128), - [anon_sym_STAR2] = ACTIONS(2130), - [anon_sym_and2] = ACTIONS(2128), - [anon_sym_xor2] = ACTIONS(2128), - [anon_sym_or2] = ACTIONS(2128), - [anon_sym_not_DASHin2] = ACTIONS(2128), - [anon_sym_has2] = ACTIONS(2128), - [anon_sym_not_DASHhas2] = ACTIONS(2128), - [anon_sym_starts_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2128), - [anon_sym_ends_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2128), - [anon_sym_EQ_EQ2] = ACTIONS(2128), - [anon_sym_BANG_EQ2] = ACTIONS(2128), - [anon_sym_LT2] = ACTIONS(2130), - [anon_sym_LT_EQ2] = ACTIONS(2128), - [anon_sym_GT_EQ2] = ACTIONS(2128), - [anon_sym_EQ_TILDE2] = ACTIONS(2128), - [anon_sym_BANG_TILDE2] = ACTIONS(2128), - [anon_sym_like2] = ACTIONS(2128), - [anon_sym_not_DASHlike2] = ACTIONS(2128), - [anon_sym_STAR_STAR2] = ACTIONS(2128), - [anon_sym_PLUS_PLUS2] = ACTIONS(2128), - [anon_sym_SLASH2] = ACTIONS(2130), - [anon_sym_mod2] = ACTIONS(2128), - [anon_sym_SLASH_SLASH2] = ACTIONS(2128), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_bit_DASHshl2] = ACTIONS(2128), - [anon_sym_bit_DASHshr2] = ACTIONS(2128), - [anon_sym_bit_DASHand2] = ACTIONS(2128), - [anon_sym_bit_DASHxor2] = ACTIONS(2128), - [anon_sym_bit_DASHor2] = ACTIONS(2128), - [anon_sym_LBRACK2] = ACTIONS(2132), - [anon_sym_err_GT] = ACTIONS(2130), - [anon_sym_out_GT] = ACTIONS(2130), - [anon_sym_e_GT] = ACTIONS(2130), - [anon_sym_o_GT] = ACTIONS(2130), - [anon_sym_err_PLUSout_GT] = ACTIONS(2130), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), - [anon_sym_o_PLUSe_GT] = ACTIONS(2130), - [anon_sym_e_PLUSo_GT] = ACTIONS(2130), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(700)] = { - [sym_comment] = STATE(700), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), + [anon_sym_in] = ACTIONS(2138), + [sym__newline] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_err_GT_PIPE] = ACTIONS(2138), + [anon_sym_out_GT_PIPE] = ACTIONS(2138), + [anon_sym_e_GT_PIPE] = ACTIONS(2138), + [anon_sym_o_GT_PIPE] = ACTIONS(2138), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2138), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2138), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2138), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2138), + [anon_sym_RPAREN] = ACTIONS(2138), + [anon_sym_GT2] = ACTIONS(2140), + [anon_sym_DASH2] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_EQ_GT] = ACTIONS(2138), + [anon_sym_STAR2] = ACTIONS(2140), + [anon_sym_and2] = ACTIONS(2138), + [anon_sym_xor2] = ACTIONS(2138), + [anon_sym_or2] = ACTIONS(2138), + [anon_sym_not_DASHin2] = ACTIONS(2138), + [anon_sym_has2] = ACTIONS(2138), + [anon_sym_not_DASHhas2] = ACTIONS(2138), + [anon_sym_starts_DASHwith2] = ACTIONS(2138), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2138), + [anon_sym_ends_DASHwith2] = ACTIONS(2138), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2138), + [anon_sym_EQ_EQ2] = ACTIONS(2138), + [anon_sym_BANG_EQ2] = ACTIONS(2138), + [anon_sym_LT2] = ACTIONS(2140), + [anon_sym_LT_EQ2] = ACTIONS(2138), + [anon_sym_GT_EQ2] = ACTIONS(2138), + [anon_sym_EQ_TILDE2] = ACTIONS(2138), + [anon_sym_BANG_TILDE2] = ACTIONS(2138), + [anon_sym_like2] = ACTIONS(2138), + [anon_sym_not_DASHlike2] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2138), + [anon_sym_PLUS_PLUS2] = ACTIONS(2138), + [anon_sym_SLASH2] = ACTIONS(2140), + [anon_sym_mod2] = ACTIONS(2138), + [anon_sym_SLASH_SLASH2] = ACTIONS(2138), + [anon_sym_PLUS2] = ACTIONS(2140), + [anon_sym_bit_DASHshl2] = ACTIONS(2138), + [anon_sym_bit_DASHshr2] = ACTIONS(2138), + [anon_sym_bit_DASHand2] = ACTIONS(2138), + [anon_sym_bit_DASHxor2] = ACTIONS(2138), + [anon_sym_bit_DASHor2] = ACTIONS(2138), [anon_sym_err_GT] = ACTIONS(2140), [anon_sym_out_GT] = ACTIONS(2140), [anon_sym_e_GT] = ACTIONS(2140), @@ -100606,1291 +100560,1363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), [anon_sym_o_PLUSe_GT] = ACTIONS(2140), [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [anon_sym_err_GT_GT] = ACTIONS(2138), + [anon_sym_out_GT_GT] = ACTIONS(2138), + [anon_sym_e_GT_GT] = ACTIONS(2138), + [anon_sym_o_GT_GT] = ACTIONS(2138), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2138), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2138), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2138), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2138), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(700)] = { + [sym_comment] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(1854), + [anon_sym_in] = 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_GT2] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_STAR2] = ACTIONS(1856), + [anon_sym_and2] = ACTIONS(1854), + [anon_sym_xor2] = ACTIONS(1854), + [anon_sym_or2] = ACTIONS(1854), + [anon_sym_not_DASHin2] = ACTIONS(1854), + [anon_sym_has2] = ACTIONS(1854), + [anon_sym_not_DASHhas2] = ACTIONS(1854), + [anon_sym_starts_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), + [anon_sym_ends_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), + [anon_sym_EQ_EQ2] = ACTIONS(1854), + [anon_sym_BANG_EQ2] = ACTIONS(1854), + [anon_sym_LT2] = ACTIONS(1856), + [anon_sym_LT_EQ2] = ACTIONS(1854), + [anon_sym_GT_EQ2] = ACTIONS(1854), + [anon_sym_EQ_TILDE2] = ACTIONS(1854), + [anon_sym_BANG_TILDE2] = ACTIONS(1854), + [anon_sym_like2] = ACTIONS(1854), + [anon_sym_not_DASHlike2] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_STAR_STAR2] = ACTIONS(1854), + [anon_sym_PLUS_PLUS2] = ACTIONS(1854), + [anon_sym_SLASH2] = ACTIONS(1856), + [anon_sym_mod2] = ACTIONS(1854), + [anon_sym_SLASH_SLASH2] = ACTIONS(1854), + [anon_sym_PLUS2] = ACTIONS(1856), + [anon_sym_bit_DASHshl2] = ACTIONS(1854), + [anon_sym_bit_DASHshr2] = ACTIONS(1854), + [anon_sym_bit_DASHand2] = ACTIONS(1854), + [anon_sym_bit_DASHxor2] = ACTIONS(1854), + [anon_sym_bit_DASHor2] = ACTIONS(1854), + [anon_sym_DOT_DOT2] = ACTIONS(1856), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1854), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1854), + [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(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), + [sym__unquoted_pattern] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(3), }, [STATE(701)] = { [sym_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_in] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1762), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_has2] = ACTIONS(1760), + [anon_sym_not_DASHhas2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1762), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_like2] = ACTIONS(1760), + [anon_sym_not_DASHlike2] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1762), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1762), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(2142), + [aux_sym__immediate_decimal_token5] = ACTIONS(2144), + [anon_sym_err_GT] = ACTIONS(1762), + [anon_sym_out_GT] = ACTIONS(1762), + [anon_sym_e_GT] = ACTIONS(1762), + [anon_sym_o_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT] = ACTIONS(1762), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [sym__unquoted_pattern] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), }, [STATE(702)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(702), - [anon_sym_in] = ACTIONS(2144), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_RPAREN] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_EQ_GT] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2146), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_has2] = ACTIONS(2144), - [anon_sym_not_DASHhas2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2146), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_like2] = ACTIONS(2144), - [anon_sym_not_DASHlike2] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2146), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(703)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(703), - [anon_sym_in] = ACTIONS(2148), - [sym__newline] = ACTIONS(2148), - [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_RPAREN] = ACTIONS(2148), - [anon_sym_GT2] = ACTIONS(2150), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2148), - [anon_sym_EQ_GT] = ACTIONS(2148), - [anon_sym_STAR2] = ACTIONS(2150), - [anon_sym_and2] = ACTIONS(2148), - [anon_sym_xor2] = ACTIONS(2148), - [anon_sym_or2] = ACTIONS(2148), - [anon_sym_not_DASHin2] = ACTIONS(2148), - [anon_sym_has2] = ACTIONS(2148), - [anon_sym_not_DASHhas2] = ACTIONS(2148), - [anon_sym_starts_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2148), - [anon_sym_ends_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2148), - [anon_sym_EQ_EQ2] = ACTIONS(2148), - [anon_sym_BANG_EQ2] = ACTIONS(2148), - [anon_sym_LT2] = ACTIONS(2150), - [anon_sym_LT_EQ2] = ACTIONS(2148), - [anon_sym_GT_EQ2] = ACTIONS(2148), - [anon_sym_EQ_TILDE2] = ACTIONS(2148), - [anon_sym_BANG_TILDE2] = ACTIONS(2148), - [anon_sym_like2] = ACTIONS(2148), - [anon_sym_not_DASHlike2] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2148), - [anon_sym_PLUS_PLUS2] = ACTIONS(2148), - [anon_sym_SLASH2] = ACTIONS(2150), - [anon_sym_mod2] = ACTIONS(2148), - [anon_sym_SLASH_SLASH2] = ACTIONS(2148), - [anon_sym_PLUS2] = ACTIONS(2150), - [anon_sym_bit_DASHshl2] = ACTIONS(2148), - [anon_sym_bit_DASHshr2] = ACTIONS(2148), - [anon_sym_bit_DASHand2] = ACTIONS(2148), - [anon_sym_bit_DASHxor2] = ACTIONS(2148), - [anon_sym_bit_DASHor2] = ACTIONS(2148), - [anon_sym_err_GT] = ACTIONS(2150), - [anon_sym_out_GT] = ACTIONS(2150), - [anon_sym_e_GT] = ACTIONS(2150), - [anon_sym_o_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT] = ACTIONS(2150), - [anon_sym_err_GT_GT] = ACTIONS(2148), - [anon_sym_out_GT_GT] = ACTIONS(2148), - [anon_sym_e_GT_GT] = ACTIONS(2148), - [anon_sym_o_GT_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(704)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(704), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(2156), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2158), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2158), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(705)] = { [sym_comment] = STATE(705), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2160), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2162), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2162), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), + [anon_sym_in] = ACTIONS(2146), + [sym__newline] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_err_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_GT_PIPE] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), + [anon_sym_RPAREN] = ACTIONS(2146), + [anon_sym_GT2] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2146), + [anon_sym_STAR2] = ACTIONS(2148), + [anon_sym_and2] = ACTIONS(2146), + [anon_sym_xor2] = ACTIONS(2146), + [anon_sym_or2] = ACTIONS(2146), + [anon_sym_not_DASHin2] = ACTIONS(2146), + [anon_sym_has2] = ACTIONS(2146), + [anon_sym_not_DASHhas2] = ACTIONS(2146), + [anon_sym_starts_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2146), + [anon_sym_ends_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2146), + [anon_sym_EQ_EQ2] = ACTIONS(2146), + [anon_sym_BANG_EQ2] = ACTIONS(2146), + [anon_sym_LT2] = ACTIONS(2148), + [anon_sym_LT_EQ2] = ACTIONS(2146), + [anon_sym_GT_EQ2] = ACTIONS(2146), + [anon_sym_EQ_TILDE2] = ACTIONS(2146), + [anon_sym_BANG_TILDE2] = ACTIONS(2146), + [anon_sym_like2] = ACTIONS(2146), + [anon_sym_not_DASHlike2] = ACTIONS(2146), + [anon_sym_STAR_STAR2] = ACTIONS(2146), + [anon_sym_PLUS_PLUS2] = ACTIONS(2146), + [anon_sym_SLASH2] = ACTIONS(2148), + [anon_sym_mod2] = ACTIONS(2146), + [anon_sym_SLASH_SLASH2] = ACTIONS(2146), + [anon_sym_PLUS2] = ACTIONS(2148), + [anon_sym_bit_DASHshl2] = ACTIONS(2146), + [anon_sym_bit_DASHshr2] = ACTIONS(2146), + [anon_sym_bit_DASHand2] = ACTIONS(2146), + [anon_sym_bit_DASHxor2] = ACTIONS(2146), + [anon_sym_bit_DASHor2] = ACTIONS(2146), + [anon_sym_DOT_DOT2] = ACTIONS(2150), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2152), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2152), + [anon_sym_err_GT] = ACTIONS(2148), + [anon_sym_out_GT] = ACTIONS(2148), + [anon_sym_e_GT] = ACTIONS(2148), + [anon_sym_o_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT] = ACTIONS(2148), + [anon_sym_err_GT_GT] = ACTIONS(2146), + [anon_sym_out_GT_GT] = ACTIONS(2146), + [anon_sym_e_GT_GT] = ACTIONS(2146), + [anon_sym_o_GT_GT] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2146), [anon_sym_POUND] = ACTIONS(3), }, [STATE(706)] = { + [sym__expr_parenthesized_immediate] = STATE(4971), [sym_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(2164), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ_GT] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), [anon_sym_POUND] = ACTIONS(3), }, [STATE(707)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4971), [sym_comment] = STATE(707), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2158), + [sym__newline] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_err_GT_PIPE] = ACTIONS(2158), + [anon_sym_out_GT_PIPE] = ACTIONS(2158), + [anon_sym_e_GT_PIPE] = ACTIONS(2158), + [anon_sym_o_GT_PIPE] = ACTIONS(2158), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2158), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2158), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2158), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2158), + [anon_sym_RPAREN] = ACTIONS(2158), + [anon_sym_GT2] = ACTIONS(2160), + [anon_sym_DASH2] = ACTIONS(2158), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_EQ_GT] = ACTIONS(2158), + [anon_sym_STAR2] = ACTIONS(2160), + [anon_sym_and2] = ACTIONS(2158), + [anon_sym_xor2] = ACTIONS(2158), + [anon_sym_or2] = ACTIONS(2158), + [anon_sym_not_DASHin2] = ACTIONS(2158), + [anon_sym_has2] = ACTIONS(2158), + [anon_sym_not_DASHhas2] = ACTIONS(2158), + [anon_sym_starts_DASHwith2] = ACTIONS(2158), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2158), + [anon_sym_ends_DASHwith2] = ACTIONS(2158), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2158), + [anon_sym_EQ_EQ2] = ACTIONS(2158), + [anon_sym_BANG_EQ2] = ACTIONS(2158), + [anon_sym_LT2] = ACTIONS(2160), + [anon_sym_LT_EQ2] = ACTIONS(2158), + [anon_sym_GT_EQ2] = ACTIONS(2158), + [anon_sym_EQ_TILDE2] = ACTIONS(2158), + [anon_sym_BANG_TILDE2] = ACTIONS(2158), + [anon_sym_like2] = ACTIONS(2158), + [anon_sym_not_DASHlike2] = ACTIONS(2158), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2158), + [anon_sym_PLUS_PLUS2] = ACTIONS(2158), + [anon_sym_SLASH2] = ACTIONS(2160), + [anon_sym_mod2] = ACTIONS(2158), + [anon_sym_SLASH_SLASH2] = ACTIONS(2158), + [anon_sym_PLUS2] = ACTIONS(2160), + [anon_sym_bit_DASHshl2] = ACTIONS(2158), + [anon_sym_bit_DASHshr2] = ACTIONS(2158), + [anon_sym_bit_DASHand2] = ACTIONS(2158), + [anon_sym_bit_DASHxor2] = ACTIONS(2158), + [anon_sym_bit_DASHor2] = ACTIONS(2158), + [anon_sym_err_GT] = ACTIONS(2160), + [anon_sym_out_GT] = ACTIONS(2160), + [anon_sym_e_GT] = ACTIONS(2160), + [anon_sym_o_GT] = ACTIONS(2160), + [anon_sym_err_PLUSout_GT] = ACTIONS(2160), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2160), + [anon_sym_o_PLUSe_GT] = ACTIONS(2160), + [anon_sym_e_PLUSo_GT] = ACTIONS(2160), + [anon_sym_err_GT_GT] = ACTIONS(2158), + [anon_sym_out_GT_GT] = ACTIONS(2158), + [anon_sym_e_GT_GT] = ACTIONS(2158), + [anon_sym_o_GT_GT] = ACTIONS(2158), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2158), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2158), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2158), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2158), [anon_sym_POUND] = ACTIONS(3), }, [STATE(708)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4971), [sym_comment] = STATE(708), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2162), + [sym__newline] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_err_GT_PIPE] = ACTIONS(2162), + [anon_sym_out_GT_PIPE] = ACTIONS(2162), + [anon_sym_e_GT_PIPE] = ACTIONS(2162), + [anon_sym_o_GT_PIPE] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2162), + [anon_sym_RPAREN] = ACTIONS(2162), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_EQ_GT] = ACTIONS(2162), + [anon_sym_STAR2] = ACTIONS(2164), + [anon_sym_and2] = ACTIONS(2162), + [anon_sym_xor2] = ACTIONS(2162), + [anon_sym_or2] = ACTIONS(2162), + [anon_sym_not_DASHin2] = ACTIONS(2162), + [anon_sym_has2] = ACTIONS(2162), + [anon_sym_not_DASHhas2] = ACTIONS(2162), + [anon_sym_starts_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), + [anon_sym_ends_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), + [anon_sym_EQ_EQ2] = ACTIONS(2162), + [anon_sym_BANG_EQ2] = ACTIONS(2162), + [anon_sym_LT2] = ACTIONS(2164), + [anon_sym_LT_EQ2] = ACTIONS(2162), + [anon_sym_GT_EQ2] = ACTIONS(2162), + [anon_sym_EQ_TILDE2] = ACTIONS(2162), + [anon_sym_BANG_TILDE2] = ACTIONS(2162), + [anon_sym_like2] = ACTIONS(2162), + [anon_sym_not_DASHlike2] = ACTIONS(2162), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2162), + [anon_sym_PLUS_PLUS2] = ACTIONS(2162), + [anon_sym_SLASH2] = ACTIONS(2164), + [anon_sym_mod2] = ACTIONS(2162), + [anon_sym_SLASH_SLASH2] = ACTIONS(2162), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_bit_DASHshl2] = ACTIONS(2162), + [anon_sym_bit_DASHshr2] = ACTIONS(2162), + [anon_sym_bit_DASHand2] = ACTIONS(2162), + [anon_sym_bit_DASHxor2] = ACTIONS(2162), + [anon_sym_bit_DASHor2] = ACTIONS(2162), + [anon_sym_err_GT] = ACTIONS(2164), + [anon_sym_out_GT] = ACTIONS(2164), + [anon_sym_e_GT] = ACTIONS(2164), + [anon_sym_o_GT] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT] = ACTIONS(2164), + [anon_sym_err_GT_GT] = ACTIONS(2162), + [anon_sym_out_GT_GT] = ACTIONS(2162), + [anon_sym_e_GT_GT] = ACTIONS(2162), + [anon_sym_o_GT_GT] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2162), [anon_sym_POUND] = ACTIONS(3), }, [STATE(709)] = { [sym_comment] = STATE(709), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2166), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2168), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2168), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1613), + [anon_sym_DASH2] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1613), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1613), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1706), + [anon_sym_SLASH2] = ACTIONS(1613), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1613), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_DOT_DOT2] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1613), + [anon_sym_out_GT] = ACTIONS(1613), + [anon_sym_e_GT] = ACTIONS(1613), + [anon_sym_o_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT] = ACTIONS(1613), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(710)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), [sym_comment] = STATE(710), - [anon_sym_in] = ACTIONS(2170), - [sym__newline] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_err_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_GT_PIPE] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2170), - [anon_sym_RPAREN] = ACTIONS(2170), - [anon_sym_GT2] = ACTIONS(2172), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2170), - [anon_sym_EQ_GT] = ACTIONS(2170), - [anon_sym_STAR2] = ACTIONS(2172), - [anon_sym_and2] = ACTIONS(2170), - [anon_sym_xor2] = ACTIONS(2170), - [anon_sym_or2] = ACTIONS(2170), - [anon_sym_not_DASHin2] = ACTIONS(2170), - [anon_sym_has2] = ACTIONS(2170), - [anon_sym_not_DASHhas2] = ACTIONS(2170), - [anon_sym_starts_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2170), - [anon_sym_ends_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2170), - [anon_sym_EQ_EQ2] = ACTIONS(2170), - [anon_sym_BANG_EQ2] = ACTIONS(2170), - [anon_sym_LT2] = ACTIONS(2172), - [anon_sym_LT_EQ2] = ACTIONS(2170), - [anon_sym_GT_EQ2] = ACTIONS(2170), - [anon_sym_EQ_TILDE2] = ACTIONS(2170), - [anon_sym_BANG_TILDE2] = ACTIONS(2170), - [anon_sym_like2] = ACTIONS(2170), - [anon_sym_not_DASHlike2] = ACTIONS(2170), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2170), - [anon_sym_PLUS_PLUS2] = ACTIONS(2170), - [anon_sym_SLASH2] = ACTIONS(2172), - [anon_sym_mod2] = ACTIONS(2170), - [anon_sym_SLASH_SLASH2] = ACTIONS(2170), - [anon_sym_PLUS2] = ACTIONS(2172), - [anon_sym_bit_DASHshl2] = ACTIONS(2170), - [anon_sym_bit_DASHshr2] = ACTIONS(2170), - [anon_sym_bit_DASHand2] = ACTIONS(2170), - [anon_sym_bit_DASHxor2] = ACTIONS(2170), - [anon_sym_bit_DASHor2] = ACTIONS(2170), - [anon_sym_err_GT] = ACTIONS(2172), - [anon_sym_out_GT] = ACTIONS(2172), - [anon_sym_e_GT] = ACTIONS(2172), - [anon_sym_o_GT] = ACTIONS(2172), - [anon_sym_err_PLUSout_GT] = ACTIONS(2172), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2172), - [anon_sym_o_PLUSe_GT] = ACTIONS(2172), - [anon_sym_e_PLUSo_GT] = ACTIONS(2172), - [anon_sym_err_GT_GT] = ACTIONS(2170), - [anon_sym_out_GT_GT] = ACTIONS(2170), - [anon_sym_e_GT_GT] = ACTIONS(2170), - [anon_sym_o_GT_GT] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2170), + [anon_sym_in] = ACTIONS(2166), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2168), + [anon_sym_DASH2] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_STAR2] = ACTIONS(2168), + [anon_sym_and2] = ACTIONS(2166), + [anon_sym_xor2] = ACTIONS(2166), + [anon_sym_or2] = ACTIONS(2166), + [anon_sym_not_DASHin2] = ACTIONS(2166), + [anon_sym_has2] = ACTIONS(2166), + [anon_sym_not_DASHhas2] = ACTIONS(2166), + [anon_sym_starts_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2166), + [anon_sym_ends_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2166), + [anon_sym_EQ_EQ2] = ACTIONS(2166), + [anon_sym_BANG_EQ2] = ACTIONS(2166), + [anon_sym_LT2] = ACTIONS(2168), + [anon_sym_LT_EQ2] = ACTIONS(2166), + [anon_sym_GT_EQ2] = ACTIONS(2166), + [anon_sym_EQ_TILDE2] = ACTIONS(2166), + [anon_sym_BANG_TILDE2] = ACTIONS(2166), + [anon_sym_like2] = ACTIONS(2166), + [anon_sym_not_DASHlike2] = ACTIONS(2166), + [anon_sym_STAR_STAR2] = ACTIONS(2166), + [anon_sym_PLUS_PLUS2] = ACTIONS(2166), + [anon_sym_SLASH2] = ACTIONS(2168), + [anon_sym_mod2] = ACTIONS(2166), + [anon_sym_SLASH_SLASH2] = ACTIONS(2166), + [anon_sym_PLUS2] = ACTIONS(2168), + [anon_sym_bit_DASHshl2] = ACTIONS(2166), + [anon_sym_bit_DASHshr2] = ACTIONS(2166), + [anon_sym_bit_DASHand2] = ACTIONS(2166), + [anon_sym_bit_DASHxor2] = ACTIONS(2166), + [anon_sym_bit_DASHor2] = ACTIONS(2166), + [anon_sym_DOT_DOT2] = ACTIONS(2170), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2172), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2168), + [anon_sym_out_GT] = ACTIONS(2168), + [anon_sym_e_GT] = ACTIONS(2168), + [anon_sym_o_GT] = ACTIONS(2168), + [anon_sym_err_PLUSout_GT] = ACTIONS(2168), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), + [anon_sym_o_PLUSe_GT] = ACTIONS(2168), + [anon_sym_e_PLUSo_GT] = ACTIONS(2168), + [anon_sym_err_GT_GT] = ACTIONS(2166), + [anon_sym_out_GT_GT] = ACTIONS(2166), + [anon_sym_e_GT_GT] = ACTIONS(2166), + [anon_sym_o_GT_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), [anon_sym_POUND] = ACTIONS(3), }, [STATE(711)] = { - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(711), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(712)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(712), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(713)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1276), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1016), - [sym__unquoted_with_expr] = STATE(1301), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(961), + [aux_sym__pipe_separator] = STATE(815), [sym_comment] = STATE(713), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_alias] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_mut] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [aux_sym_cmd_identifier_token1] = ACTIONS(2174), + [anon_sym_def] = ACTIONS(2176), + [anon_sym_use] = ACTIONS(2176), + [anon_sym_export_DASHenv] = ACTIONS(2176), + [anon_sym_extern] = ACTIONS(2176), + [anon_sym_module] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_loop] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_else] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [anon_sym_catch] = ACTIONS(2176), + [anon_sym_match] = ACTIONS(2176), + [anon_sym_in] = ACTIONS(2174), + [anon_sym_true] = ACTIONS(2176), + [anon_sym_false] = ACTIONS(2176), [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), + [sym__newline] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_err_GT_PIPE] = ACTIONS(2180), + [anon_sym_out_GT_PIPE] = ACTIONS(2180), + [anon_sym_e_GT_PIPE] = ACTIONS(2180), + [anon_sym_o_GT_PIPE] = ACTIONS(2180), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2180), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2180), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2180), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2180), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_DOT_DOT] = ACTIONS(2174), + [anon_sym_where] = ACTIONS(2176), + [aux_sym_expr_unary_token1] = ACTIONS(2176), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2176), + [anon_sym_DOT_DOT_LT] = ACTIONS(2176), + [aux_sym__val_number_decimal_token1] = ACTIONS(2174), + [aux_sym__val_number_decimal_token2] = ACTIONS(2176), + [aux_sym__val_number_decimal_token3] = ACTIONS(2176), + [aux_sym__val_number_decimal_token4] = ACTIONS(2176), + [aux_sym__val_number_token1] = ACTIONS(2176), + [aux_sym__val_number_token2] = ACTIONS(2176), + [aux_sym__val_number_token3] = ACTIONS(2176), + [anon_sym_0b] = ACTIONS(2174), + [anon_sym_0o] = ACTIONS(2174), + [anon_sym_0x] = ACTIONS(2174), + [sym_val_date] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2176), + [anon_sym_BQUOTE] = ACTIONS(2176), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2176), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2176), + [anon_sym_CARET] = ACTIONS(2176), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2176), }, [STATE(714)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(714), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_in] = ACTIONS(2182), + [sym__newline] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym_PIPE] = ACTIONS(2182), + [anon_sym_err_GT_PIPE] = ACTIONS(2182), + [anon_sym_out_GT_PIPE] = ACTIONS(2182), + [anon_sym_e_GT_PIPE] = ACTIONS(2182), + [anon_sym_o_GT_PIPE] = ACTIONS(2182), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2182), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2182), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2182), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2182), + [anon_sym_RPAREN] = ACTIONS(2182), + [anon_sym_GT2] = ACTIONS(2184), + [anon_sym_DASH2] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_EQ_GT] = ACTIONS(2182), + [anon_sym_STAR2] = ACTIONS(2184), + [anon_sym_and2] = ACTIONS(2182), + [anon_sym_xor2] = ACTIONS(2182), + [anon_sym_or2] = ACTIONS(2182), + [anon_sym_not_DASHin2] = ACTIONS(2182), + [anon_sym_has2] = ACTIONS(2182), + [anon_sym_not_DASHhas2] = ACTIONS(2182), + [anon_sym_starts_DASHwith2] = ACTIONS(2182), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2182), + [anon_sym_ends_DASHwith2] = ACTIONS(2182), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2182), + [anon_sym_EQ_EQ2] = ACTIONS(2182), + [anon_sym_BANG_EQ2] = ACTIONS(2182), + [anon_sym_LT2] = ACTIONS(2184), + [anon_sym_LT_EQ2] = ACTIONS(2182), + [anon_sym_GT_EQ2] = ACTIONS(2182), + [anon_sym_EQ_TILDE2] = ACTIONS(2182), + [anon_sym_BANG_TILDE2] = ACTIONS(2182), + [anon_sym_like2] = ACTIONS(2182), + [anon_sym_not_DASHlike2] = ACTIONS(2182), + [anon_sym_STAR_STAR2] = ACTIONS(2182), + [anon_sym_PLUS_PLUS2] = ACTIONS(2182), + [anon_sym_SLASH2] = ACTIONS(2184), + [anon_sym_mod2] = ACTIONS(2182), + [anon_sym_SLASH_SLASH2] = ACTIONS(2182), + [anon_sym_PLUS2] = ACTIONS(2184), + [anon_sym_bit_DASHshl2] = ACTIONS(2182), + [anon_sym_bit_DASHshr2] = ACTIONS(2182), + [anon_sym_bit_DASHand2] = ACTIONS(2182), + [anon_sym_bit_DASHxor2] = ACTIONS(2182), + [anon_sym_bit_DASHor2] = ACTIONS(2182), + [anon_sym_err_GT] = ACTIONS(2184), + [anon_sym_out_GT] = ACTIONS(2184), + [anon_sym_e_GT] = ACTIONS(2184), + [anon_sym_o_GT] = ACTIONS(2184), + [anon_sym_err_PLUSout_GT] = ACTIONS(2184), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2184), + [anon_sym_o_PLUSe_GT] = ACTIONS(2184), + [anon_sym_e_PLUSo_GT] = ACTIONS(2184), + [anon_sym_err_GT_GT] = ACTIONS(2182), + [anon_sym_out_GT_GT] = ACTIONS(2182), + [anon_sym_e_GT_GT] = ACTIONS(2182), + [anon_sym_o_GT_GT] = ACTIONS(2182), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2182), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2182), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2182), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2182), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(715)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2187), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), [sym_comment] = STATE(715), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2186), + [sym__newline] = ACTIONS(2186), + [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_RPAREN] = ACTIONS(2186), + [anon_sym_GT2] = ACTIONS(2188), + [anon_sym_DASH2] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2186), + [anon_sym_STAR2] = ACTIONS(2188), + [anon_sym_and2] = ACTIONS(2186), + [anon_sym_xor2] = ACTIONS(2186), + [anon_sym_or2] = ACTIONS(2186), + [anon_sym_not_DASHin2] = ACTIONS(2186), + [anon_sym_has2] = ACTIONS(2186), + [anon_sym_not_DASHhas2] = ACTIONS(2186), + [anon_sym_starts_DASHwith2] = ACTIONS(2186), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2186), + [anon_sym_ends_DASHwith2] = ACTIONS(2186), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2186), + [anon_sym_EQ_EQ2] = ACTIONS(2186), + [anon_sym_BANG_EQ2] = ACTIONS(2186), + [anon_sym_LT2] = ACTIONS(2188), + [anon_sym_LT_EQ2] = ACTIONS(2186), + [anon_sym_GT_EQ2] = ACTIONS(2186), + [anon_sym_EQ_TILDE2] = ACTIONS(2186), + [anon_sym_BANG_TILDE2] = ACTIONS(2186), + [anon_sym_like2] = ACTIONS(2186), + [anon_sym_not_DASHlike2] = ACTIONS(2186), + [anon_sym_STAR_STAR2] = ACTIONS(2186), + [anon_sym_PLUS_PLUS2] = ACTIONS(2186), + [anon_sym_SLASH2] = ACTIONS(2188), + [anon_sym_mod2] = ACTIONS(2186), + [anon_sym_SLASH_SLASH2] = ACTIONS(2186), + [anon_sym_PLUS2] = ACTIONS(2188), + [anon_sym_bit_DASHshl2] = ACTIONS(2186), + [anon_sym_bit_DASHshr2] = ACTIONS(2186), + [anon_sym_bit_DASHand2] = ACTIONS(2186), + [anon_sym_bit_DASHxor2] = ACTIONS(2186), + [anon_sym_bit_DASHor2] = ACTIONS(2186), + [anon_sym_DOT_DOT2] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(2188), + [anon_sym_out_GT] = ACTIONS(2188), + [anon_sym_e_GT] = ACTIONS(2188), + [anon_sym_o_GT] = ACTIONS(2188), + [anon_sym_err_PLUSout_GT] = ACTIONS(2188), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2188), + [anon_sym_o_PLUSe_GT] = ACTIONS(2188), + [anon_sym_e_PLUSo_GT] = ACTIONS(2188), + [anon_sym_err_GT_GT] = ACTIONS(2186), + [anon_sym_out_GT_GT] = ACTIONS(2186), + [anon_sym_e_GT_GT] = ACTIONS(2186), + [anon_sym_o_GT_GT] = ACTIONS(2186), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2186), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2186), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2186), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2186), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(716)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2188), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(980), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(716), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(717)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2189), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(1048), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(717), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(718)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2190), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(1049), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(718), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(719)] = { + [aux_sym__repeat_newline] = STATE(1050), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(719), - [anon_sym_if] = ACTIONS(2194), [anon_sym_in] = ACTIONS(2194), [sym__newline] = ACTIONS(2194), [anon_sym_SEMI] = ACTIONS(2194), @@ -101907,8 +101933,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(2196), [anon_sym_DASH2] = ACTIONS(2194), [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_EQ_GT] = ACTIONS(2194), [anon_sym_STAR2] = ACTIONS(2196), [anon_sym_and2] = ACTIONS(2194), [anon_sym_xor2] = ACTIONS(2194), @@ -101929,6 +101953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2194), [anon_sym_like2] = ACTIONS(2194), [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(1734), [anon_sym_STAR_STAR2] = ACTIONS(2194), [anon_sym_PLUS_PLUS2] = ACTIONS(2194), [anon_sym_SLASH2] = ACTIONS(2196), @@ -101959,53 +101984,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(720)] = { + [aux_sym__repeat_newline] = STATE(1051), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(720), - [anon_sym_if] = ACTIONS(2198), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_EQ_GT] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(721)] = { + [aux_sym__repeat_newline] = STATE(982), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(721), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(722)] = { + [sym_comment] = STATE(722), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_EQ_GT] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), [anon_sym_bit_DASHshr2] = ACTIONS(2198), [anon_sym_bit_DASHand2] = ACTIONS(2198), [anon_sym_bit_DASHxor2] = ACTIONS(2198), @@ -102028,218 +102193,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(721)] = { - [sym_comment] = STATE(721), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(722)] = { - [sym_comment] = STATE(722), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_EQ_GT] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(723)] = { [sym_comment] = STATE(723), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_EQ_GT] = ACTIONS(2120), - [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), - [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(724)] = { - [sym_comment] = STATE(724), [anon_sym_if] = ACTIONS(2202), [anon_sym_in] = ACTIONS(2202), [sym__newline] = ACTIONS(2202), @@ -102308,78 +102263,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(725)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1288), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(974), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(725), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [STATE(724)] = { + [aux_sym__repeat_newline] = STATE(986), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(724), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(726)] = { - [sym_comment] = STATE(726), + [STATE(725)] = { + [sym_comment] = STATE(725), [anon_sym_if] = ACTIONS(2206), [anon_sym_in] = ACTIONS(2206), [sym__newline] = ACTIONS(2206), @@ -102448,8 +102403,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2206), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(726)] = { + [aux_sym__repeat_newline] = STATE(990), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(726), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(727)] = { [sym_comment] = STATE(727), + [ts_builtin_sym_end] = ACTIONS(1532), + [anon_sym_in] = ACTIONS(1532), + [sym__newline] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_err_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_GT_PIPE] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1532), + [anon_sym_GT2] = ACTIONS(1530), + [anon_sym_DASH2] = ACTIONS(1532), + [anon_sym_STAR2] = ACTIONS(1530), + [anon_sym_and2] = ACTIONS(1532), + [anon_sym_xor2] = ACTIONS(1532), + [anon_sym_or2] = ACTIONS(1532), + [anon_sym_not_DASHin2] = ACTIONS(1532), + [anon_sym_has2] = ACTIONS(1532), + [anon_sym_not_DASHhas2] = ACTIONS(1532), + [anon_sym_starts_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1532), + [anon_sym_ends_DASHwith2] = ACTIONS(1532), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1532), + [anon_sym_EQ_EQ2] = ACTIONS(1532), + [anon_sym_BANG_EQ2] = ACTIONS(1532), + [anon_sym_LT2] = ACTIONS(1530), + [anon_sym_LT_EQ2] = ACTIONS(1532), + [anon_sym_GT_EQ2] = ACTIONS(1532), + [anon_sym_EQ_TILDE2] = ACTIONS(1532), + [anon_sym_BANG_TILDE2] = ACTIONS(1532), + [anon_sym_like2] = ACTIONS(1532), + [anon_sym_not_DASHlike2] = ACTIONS(1532), + [anon_sym_STAR_STAR2] = ACTIONS(1532), + [anon_sym_PLUS_PLUS2] = ACTIONS(1532), + [anon_sym_SLASH2] = ACTIONS(1530), + [anon_sym_mod2] = ACTIONS(1532), + [anon_sym_SLASH_SLASH2] = ACTIONS(1532), + [anon_sym_PLUS2] = ACTIONS(1530), + [anon_sym_bit_DASHshl2] = ACTIONS(1532), + [anon_sym_bit_DASHshr2] = ACTIONS(1532), + [anon_sym_bit_DASHand2] = ACTIONS(1532), + [anon_sym_bit_DASHxor2] = ACTIONS(1532), + [anon_sym_bit_DASHor2] = ACTIONS(1532), + [anon_sym_DOT_DOT2] = ACTIONS(1530), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1532), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1532), + [anon_sym_DOT2] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1530), + [anon_sym_out_GT] = ACTIONS(1530), + [anon_sym_e_GT] = ACTIONS(1530), + [anon_sym_o_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT] = ACTIONS(1530), + [anon_sym_err_GT_GT] = ACTIONS(1532), + [anon_sym_out_GT_GT] = ACTIONS(1532), + [anon_sym_e_GT_GT] = ACTIONS(1532), + [anon_sym_o_GT_GT] = ACTIONS(1532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(728)] = { + [aux_sym__repeat_newline] = STATE(992), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(728), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(729)] = { + [sym_comment] = STATE(729), [anon_sym_if] = ACTIONS(2210), [anon_sym_in] = ACTIONS(2210), [sym__newline] = ACTIONS(2210), @@ -102518,149 +102683,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2210), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(728)] = { - [sym_comment] = STATE(728), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_in] = ACTIONS(2214), - [sym__newline] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_RPAREN] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2216), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_EQ_GT] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2216), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_has2] = ACTIONS(2214), - [anon_sym_not_DASHhas2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2216), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_like2] = ACTIONS(2214), - [anon_sym_not_DASHlike2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2216), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2216), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_err_GT] = ACTIONS(2216), - [anon_sym_out_GT] = ACTIONS(2216), - [anon_sym_e_GT] = ACTIONS(2216), - [anon_sym_o_GT] = ACTIONS(2216), - [anon_sym_err_PLUSout_GT] = ACTIONS(2216), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2216), - [anon_sym_o_PLUSe_GT] = ACTIONS(2216), - [anon_sym_e_PLUSo_GT] = ACTIONS(2216), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), + [STATE(730)] = { + [sym_comment] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1762), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_has2] = ACTIONS(1760), + [anon_sym_not_DASHhas2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1762), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_like2] = ACTIONS(1760), + [anon_sym_not_DASHlike2] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1762), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1762), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(2214), + [aux_sym__immediate_decimal_token5] = ACTIONS(2216), + [anon_sym_err_GT] = ACTIONS(1762), + [anon_sym_out_GT] = ACTIONS(1762), + [anon_sym_e_GT] = ACTIONS(1762), + [anon_sym_o_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT] = ACTIONS(1762), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [sym__unquoted_pattern] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(729)] = { - [sym_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1537), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [STATE(731)] = { + [aux_sym__repeat_newline] = STATE(994), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(731), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(730)] = { - [sym_comment] = STATE(730), - [anon_sym_if] = ACTIONS(2218), + [STATE(732)] = { + [aux_sym__repeat_newline] = STATE(1053), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(732), [anon_sym_in] = ACTIONS(2218), [sym__newline] = ACTIONS(2218), [anon_sym_SEMI] = ACTIONS(2218), @@ -102677,8 +102843,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(2220), [anon_sym_DASH2] = ACTIONS(2218), [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(2218), [anon_sym_STAR2] = ACTIONS(2220), [anon_sym_and2] = ACTIONS(2218), [anon_sym_xor2] = ACTIONS(2218), @@ -102699,6 +102863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2218), [anon_sym_like2] = ACTIONS(2218), [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(1734), [anon_sym_STAR_STAR2] = ACTIONS(2218), [anon_sym_PLUS_PLUS2] = ACTIONS(2218), [anon_sym_SLASH2] = ACTIONS(2220), @@ -102728,288 +102893,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(731)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1267), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1012), - [sym__unquoted_with_expr] = STATE(1307), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(731), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(732)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1278), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1071), - [sym__unquoted_with_expr] = STATE(1302), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(732), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, [STATE(733)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1308), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1127), - [sym__unquoted_with_expr] = STATE(1321), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(1056), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(733), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(734)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1283), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(972), - [sym__unquoted_with_expr] = STATE(1281), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [aux_sym__repeat_newline] = STATE(996), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(734), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(735)] = { + [aux_sym__repeat_newline] = STATE(1058), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(735), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(736)] = { + [sym_comment] = STATE(736), [anon_sym_if] = ACTIONS(2222), [anon_sym_in] = ACTIONS(2222), [sym__newline] = ACTIONS(2222), @@ -103078,8 +103173,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(736)] = { - [sym_comment] = STATE(736), + [STATE(737)] = { + [aux_sym__repeat_newline] = STATE(1060), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(737), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(738)] = { + [aux_sym__repeat_newline] = STATE(1063), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(738), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(739)] = { + [sym_comment] = STATE(739), [anon_sym_if] = ACTIONS(2226), [anon_sym_in] = ACTIONS(2226), [sym__newline] = ACTIONS(2226), @@ -103148,8 +103383,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(737)] = { - [sym_comment] = STATE(737), + [STATE(740)] = { + [aux_sym__repeat_newline] = STATE(1065), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(740), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(741)] = { + [sym_comment] = STATE(741), [anon_sym_if] = ACTIONS(2230), [anon_sym_in] = ACTIONS(2230), [sym__newline] = ACTIONS(2230), @@ -103218,8 +103523,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2230), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(738)] = { - [sym_comment] = STATE(738), + [STATE(742)] = { + [aux_sym__repeat_newline] = STATE(1067), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(742), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(743)] = { + [sym_comment] = STATE(743), [anon_sym_if] = ACTIONS(2234), [anon_sym_in] = ACTIONS(2234), [sym__newline] = ACTIONS(2234), @@ -103288,8 +103663,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(739)] = { - [sym_comment] = STATE(739), + [STATE(744)] = { + [aux_sym__repeat_newline] = STATE(1070), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(744), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(745)] = { + [sym_comment] = STATE(745), + [anon_sym_in] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1762), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_has2] = ACTIONS(1760), + [anon_sym_not_DASHhas2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1762), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_like2] = ACTIONS(1760), + [anon_sym_not_DASHlike2] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1762), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1762), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [aux_sym__immediate_decimal_token5] = ACTIONS(2144), + [anon_sym_err_GT] = ACTIONS(1762), + [anon_sym_out_GT] = ACTIONS(1762), + [anon_sym_e_GT] = ACTIONS(1762), + [anon_sym_o_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT] = ACTIONS(1762), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [sym__unquoted_pattern] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(746)] = { + [aux_sym__repeat_newline] = STATE(1074), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(746), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(747)] = { + [sym_comment] = STATE(747), [anon_sym_if] = ACTIONS(2238), [anon_sym_in] = ACTIONS(2238), [sym__newline] = ACTIONS(2238), @@ -103358,8 +103943,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(740)] = { - [sym_comment] = STATE(740), + [STATE(748)] = { + [aux_sym__repeat_newline] = STATE(1076), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(748), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(749)] = { + [sym_comment] = STATE(749), [anon_sym_if] = ACTIONS(2242), [anon_sym_in] = ACTIONS(2242), [sym__newline] = ACTIONS(2242), @@ -103428,557 +104083,417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(741)] = { - [sym_comment] = STATE(741), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_in] = ACTIONS(2246), - [sym__newline] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2248), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_EQ_GT] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2248), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_has2] = ACTIONS(2246), - [anon_sym_not_DASHhas2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2248), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_like2] = ACTIONS(2246), - [anon_sym_not_DASHlike2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2248), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2248), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_err_GT] = ACTIONS(2248), - [anon_sym_out_GT] = ACTIONS(2248), - [anon_sym_e_GT] = ACTIONS(2248), - [anon_sym_o_GT] = ACTIONS(2248), - [anon_sym_err_PLUSout_GT] = ACTIONS(2248), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2248), - [anon_sym_o_PLUSe_GT] = ACTIONS(2248), - [anon_sym_e_PLUSo_GT] = ACTIONS(2248), - [anon_sym_err_GT_GT] = ACTIONS(2246), - [anon_sym_out_GT_GT] = ACTIONS(2246), - [anon_sym_e_GT_GT] = ACTIONS(2246), - [anon_sym_o_GT_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(742)] = { - [sym_comment] = STATE(742), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_in] = 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_RPAREN] = ACTIONS(2250), - [anon_sym_GT2] = ACTIONS(2252), - [anon_sym_DASH2] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_EQ_GT] = ACTIONS(2250), - [anon_sym_STAR2] = ACTIONS(2252), - [anon_sym_and2] = ACTIONS(2250), - [anon_sym_xor2] = ACTIONS(2250), - [anon_sym_or2] = ACTIONS(2250), - [anon_sym_not_DASHin2] = ACTIONS(2250), - [anon_sym_has2] = ACTIONS(2250), - [anon_sym_not_DASHhas2] = ACTIONS(2250), - [anon_sym_starts_DASHwith2] = ACTIONS(2250), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2250), - [anon_sym_ends_DASHwith2] = ACTIONS(2250), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2250), - [anon_sym_EQ_EQ2] = ACTIONS(2250), - [anon_sym_BANG_EQ2] = ACTIONS(2250), - [anon_sym_LT2] = ACTIONS(2252), - [anon_sym_LT_EQ2] = ACTIONS(2250), - [anon_sym_GT_EQ2] = ACTIONS(2250), - [anon_sym_EQ_TILDE2] = ACTIONS(2250), - [anon_sym_BANG_TILDE2] = ACTIONS(2250), - [anon_sym_like2] = ACTIONS(2250), - [anon_sym_not_DASHlike2] = ACTIONS(2250), - [anon_sym_STAR_STAR2] = ACTIONS(2250), - [anon_sym_PLUS_PLUS2] = ACTIONS(2250), - [anon_sym_SLASH2] = ACTIONS(2252), - [anon_sym_mod2] = ACTIONS(2250), - [anon_sym_SLASH_SLASH2] = ACTIONS(2250), - [anon_sym_PLUS2] = ACTIONS(2252), - [anon_sym_bit_DASHshl2] = ACTIONS(2250), - [anon_sym_bit_DASHshr2] = ACTIONS(2250), - [anon_sym_bit_DASHand2] = ACTIONS(2250), - [anon_sym_bit_DASHxor2] = ACTIONS(2250), - [anon_sym_bit_DASHor2] = ACTIONS(2250), - [anon_sym_err_GT] = ACTIONS(2252), - [anon_sym_out_GT] = ACTIONS(2252), - [anon_sym_e_GT] = ACTIONS(2252), - [anon_sym_o_GT] = ACTIONS(2252), - [anon_sym_err_PLUSout_GT] = ACTIONS(2252), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2252), - [anon_sym_o_PLUSe_GT] = ACTIONS(2252), - [anon_sym_e_PLUSo_GT] = ACTIONS(2252), - [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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(743)] = { - [sym_comment] = STATE(743), - [anon_sym_in] = ACTIONS(2254), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2256), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_EQ_GT] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2256), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_has2] = ACTIONS(2254), - [anon_sym_not_DASHhas2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2256), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_like2] = ACTIONS(2254), - [anon_sym_not_DASHlike2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2256), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2256), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_COLON2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2256), - [anon_sym_out_GT] = ACTIONS(2256), - [anon_sym_e_GT] = ACTIONS(2256), - [anon_sym_o_GT] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT] = ACTIONS(2256), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(744)] = { - [sym_comment] = STATE(744), - [anon_sym_in] = ACTIONS(2254), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2256), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_EQ_GT] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2256), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_has2] = ACTIONS(2254), - [anon_sym_not_DASHhas2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2256), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_like2] = ACTIONS(2254), - [anon_sym_not_DASHlike2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2256), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2256), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_COLON2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2256), - [anon_sym_out_GT] = ACTIONS(2256), - [anon_sym_e_GT] = ACTIONS(2256), - [anon_sym_o_GT] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT] = ACTIONS(2256), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(745)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1282), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1296), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(745), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [STATE(750)] = { + [aux_sym__repeat_newline] = STATE(1079), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(750), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(746)] = { - [sym_comment] = STATE(746), - [anon_sym_in] = ACTIONS(2258), - [sym__newline] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_err_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_GT_PIPE] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [anon_sym_GT2] = ACTIONS(2260), - [anon_sym_DASH2] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_EQ_GT] = ACTIONS(2258), - [anon_sym_STAR2] = ACTIONS(2260), - [anon_sym_and2] = ACTIONS(2258), - [anon_sym_xor2] = ACTIONS(2258), - [anon_sym_or2] = ACTIONS(2258), - [anon_sym_not_DASHin2] = ACTIONS(2258), - [anon_sym_has2] = ACTIONS(2258), - [anon_sym_not_DASHhas2] = ACTIONS(2258), - [anon_sym_starts_DASHwith2] = ACTIONS(2258), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2258), - [anon_sym_ends_DASHwith2] = ACTIONS(2258), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2258), - [anon_sym_EQ_EQ2] = ACTIONS(2258), - [anon_sym_BANG_EQ2] = ACTIONS(2258), - [anon_sym_LT2] = ACTIONS(2260), - [anon_sym_LT_EQ2] = ACTIONS(2258), - [anon_sym_GT_EQ2] = ACTIONS(2258), - [anon_sym_EQ_TILDE2] = ACTIONS(2258), - [anon_sym_BANG_TILDE2] = ACTIONS(2258), - [anon_sym_like2] = ACTIONS(2258), - [anon_sym_not_DASHlike2] = ACTIONS(2258), - [anon_sym_STAR_STAR2] = ACTIONS(2258), - [anon_sym_PLUS_PLUS2] = ACTIONS(2258), - [anon_sym_SLASH2] = ACTIONS(2260), - [anon_sym_mod2] = ACTIONS(2258), - [anon_sym_SLASH_SLASH2] = ACTIONS(2258), - [anon_sym_PLUS2] = ACTIONS(2260), - [anon_sym_bit_DASHshl2] = ACTIONS(2258), - [anon_sym_bit_DASHshr2] = ACTIONS(2258), - [anon_sym_bit_DASHand2] = ACTIONS(2258), - [anon_sym_bit_DASHxor2] = ACTIONS(2258), - [anon_sym_bit_DASHor2] = ACTIONS(2258), - [anon_sym_COLON2] = ACTIONS(2258), - [anon_sym_err_GT] = ACTIONS(2260), - [anon_sym_out_GT] = ACTIONS(2260), - [anon_sym_e_GT] = ACTIONS(2260), - [anon_sym_o_GT] = ACTIONS(2260), - [anon_sym_err_PLUSout_GT] = ACTIONS(2260), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2260), - [anon_sym_o_PLUSe_GT] = ACTIONS(2260), - [anon_sym_e_PLUSo_GT] = ACTIONS(2260), - [anon_sym_err_GT_GT] = ACTIONS(2258), - [anon_sym_out_GT_GT] = ACTIONS(2258), - [anon_sym_e_GT_GT] = ACTIONS(2258), - [anon_sym_o_GT_GT] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2258), + [STATE(751)] = { + [aux_sym__repeat_newline] = STATE(1081), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(751), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(747)] = { - [sym_comment] = STATE(747), - [anon_sym_in] = ACTIONS(2262), - [sym__newline] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_err_GT_PIPE] = ACTIONS(2262), - [anon_sym_out_GT_PIPE] = ACTIONS(2262), - [anon_sym_e_GT_PIPE] = ACTIONS(2262), - [anon_sym_o_GT_PIPE] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2262), - [anon_sym_RPAREN] = ACTIONS(2262), - [anon_sym_GT2] = ACTIONS(2264), - [anon_sym_DASH2] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(2262), - [anon_sym_STAR2] = ACTIONS(2264), - [anon_sym_and2] = ACTIONS(2262), - [anon_sym_xor2] = ACTIONS(2262), - [anon_sym_or2] = ACTIONS(2262), - [anon_sym_not_DASHin2] = ACTIONS(2262), - [anon_sym_has2] = ACTIONS(2262), - [anon_sym_not_DASHhas2] = ACTIONS(2262), - [anon_sym_starts_DASHwith2] = ACTIONS(2262), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2262), - [anon_sym_ends_DASHwith2] = ACTIONS(2262), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2262), - [anon_sym_EQ_EQ2] = ACTIONS(2262), - [anon_sym_BANG_EQ2] = ACTIONS(2262), - [anon_sym_LT2] = ACTIONS(2264), - [anon_sym_LT_EQ2] = ACTIONS(2262), - [anon_sym_GT_EQ2] = ACTIONS(2262), - [anon_sym_EQ_TILDE2] = ACTIONS(2262), - [anon_sym_BANG_TILDE2] = ACTIONS(2262), - [anon_sym_like2] = ACTIONS(2262), - [anon_sym_not_DASHlike2] = ACTIONS(2262), - [anon_sym_STAR_STAR2] = ACTIONS(2262), - [anon_sym_PLUS_PLUS2] = ACTIONS(2262), - [anon_sym_SLASH2] = ACTIONS(2264), - [anon_sym_mod2] = ACTIONS(2262), - [anon_sym_SLASH_SLASH2] = ACTIONS(2262), - [anon_sym_PLUS2] = ACTIONS(2264), - [anon_sym_bit_DASHshl2] = ACTIONS(2262), - [anon_sym_bit_DASHshr2] = ACTIONS(2262), - [anon_sym_bit_DASHand2] = ACTIONS(2262), - [anon_sym_bit_DASHxor2] = ACTIONS(2262), - [anon_sym_bit_DASHor2] = ACTIONS(2262), - [anon_sym_COLON2] = ACTIONS(2262), - [anon_sym_err_GT] = ACTIONS(2264), - [anon_sym_out_GT] = ACTIONS(2264), - [anon_sym_e_GT] = ACTIONS(2264), - [anon_sym_o_GT] = ACTIONS(2264), - [anon_sym_err_PLUSout_GT] = ACTIONS(2264), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2264), - [anon_sym_o_PLUSe_GT] = ACTIONS(2264), - [anon_sym_e_PLUSo_GT] = ACTIONS(2264), - [anon_sym_err_GT_GT] = ACTIONS(2262), - [anon_sym_out_GT_GT] = ACTIONS(2262), - [anon_sym_e_GT_GT] = ACTIONS(2262), - [anon_sym_o_GT_GT] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2262), + [STATE(752)] = { + [sym_comment] = STATE(752), + [anon_sym_if] = ACTIONS(2246), + [anon_sym_in] = ACTIONS(2246), + [sym__newline] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_err_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_GT_PIPE] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), + [anon_sym_RPAREN] = ACTIONS(2246), + [anon_sym_GT2] = ACTIONS(2248), + [anon_sym_DASH2] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_EQ_GT] = ACTIONS(2246), + [anon_sym_STAR2] = ACTIONS(2248), + [anon_sym_and2] = ACTIONS(2246), + [anon_sym_xor2] = ACTIONS(2246), + [anon_sym_or2] = ACTIONS(2246), + [anon_sym_not_DASHin2] = ACTIONS(2246), + [anon_sym_has2] = ACTIONS(2246), + [anon_sym_not_DASHhas2] = ACTIONS(2246), + [anon_sym_starts_DASHwith2] = ACTIONS(2246), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2246), + [anon_sym_ends_DASHwith2] = ACTIONS(2246), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2246), + [anon_sym_EQ_EQ2] = ACTIONS(2246), + [anon_sym_BANG_EQ2] = ACTIONS(2246), + [anon_sym_LT2] = ACTIONS(2248), + [anon_sym_LT_EQ2] = ACTIONS(2246), + [anon_sym_GT_EQ2] = ACTIONS(2246), + [anon_sym_EQ_TILDE2] = ACTIONS(2246), + [anon_sym_BANG_TILDE2] = ACTIONS(2246), + [anon_sym_like2] = ACTIONS(2246), + [anon_sym_not_DASHlike2] = ACTIONS(2246), + [anon_sym_STAR_STAR2] = ACTIONS(2246), + [anon_sym_PLUS_PLUS2] = ACTIONS(2246), + [anon_sym_SLASH2] = ACTIONS(2248), + [anon_sym_mod2] = ACTIONS(2246), + [anon_sym_SLASH_SLASH2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(2248), + [anon_sym_bit_DASHshl2] = ACTIONS(2246), + [anon_sym_bit_DASHshr2] = ACTIONS(2246), + [anon_sym_bit_DASHand2] = ACTIONS(2246), + [anon_sym_bit_DASHxor2] = ACTIONS(2246), + [anon_sym_bit_DASHor2] = ACTIONS(2246), + [anon_sym_err_GT] = ACTIONS(2248), + [anon_sym_out_GT] = ACTIONS(2248), + [anon_sym_e_GT] = ACTIONS(2248), + [anon_sym_o_GT] = ACTIONS(2248), + [anon_sym_err_PLUSout_GT] = ACTIONS(2248), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2248), + [anon_sym_o_PLUSe_GT] = ACTIONS(2248), + [anon_sym_e_PLUSo_GT] = ACTIONS(2248), + [anon_sym_err_GT_GT] = ACTIONS(2246), + [anon_sym_out_GT_GT] = ACTIONS(2246), + [anon_sym_e_GT_GT] = ACTIONS(2246), + [anon_sym_o_GT_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(748)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1247), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(748), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(753)] = { + [aux_sym__repeat_newline] = STATE(1083), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(753), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(754)] = { + [sym_comment] = STATE(754), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [aux_sym__immediate_decimal_token5] = ACTIONS(2250), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(755)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2205), + [sym_expr_parenthesized] = STATE(1947), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1985), + [sym_val_variable] = STATE(1953), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1755), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(712), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(755), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2256), + [aux_sym_cmd_identifier_token4] = ACTIONS(2256), + [aux_sym_cmd_identifier_token5] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [aux_sym_expr_unary_token1] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2270), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -103988,67 +104503,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(749)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1251), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(749), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(756)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2143), + [sym_expr_parenthesized] = STATE(1947), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1985), + [sym_val_variable] = STATE(1953), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1755), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(756), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2256), + [aux_sym_cmd_identifier_token4] = ACTIONS(2256), + [aux_sym_cmd_identifier_token5] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [aux_sym_expr_unary_token1] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2270), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -104058,67 +104573,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(750)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1254), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(750), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(757)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2146), + [sym_expr_parenthesized] = STATE(1947), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1985), + [sym_val_variable] = STATE(1953), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1755), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(686), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(757), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2256), + [aux_sym_cmd_identifier_token4] = ACTIONS(2256), + [aux_sym_cmd_identifier_token5] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [aux_sym_expr_unary_token1] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2270), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -104128,67 +104643,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(751)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1203), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(751), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(758)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2150), + [sym_expr_parenthesized] = STATE(1947), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1985), + [sym_val_variable] = STATE(1953), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1755), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(902), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(758), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2256), + [aux_sym_cmd_identifier_token4] = ACTIONS(2256), + [aux_sym_cmd_identifier_token5] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [aux_sym_expr_unary_token1] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2270), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -104198,67 +104713,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(752)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1133), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(752), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(759)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2151), + [sym_expr_parenthesized] = STATE(1947), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1985), + [sym_val_variable] = STATE(1953), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1755), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(928), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(759), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2256), + [aux_sym_cmd_identifier_token4] = ACTIONS(2256), + [aux_sym_cmd_identifier_token5] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [aux_sym_expr_unary_token1] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2270), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -104268,67 +104783,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(753)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1136), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(753), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(760)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2160), + [sym_expr_parenthesized] = STATE(1947), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1985), + [sym_val_variable] = STATE(1953), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1755), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(682), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(760), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2256), + [aux_sym_cmd_identifier_token4] = ACTIONS(2256), + [aux_sym_cmd_identifier_token5] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [aux_sym_expr_unary_token1] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2270), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -104338,67 +104853,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(754)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1138), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(754), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(761)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2162), + [sym_expr_parenthesized] = STATE(1947), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1985), + [sym_val_variable] = STATE(1953), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1755), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(675), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(761), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2256), + [aux_sym_cmd_identifier_token4] = ACTIONS(2256), + [aux_sym_cmd_identifier_token5] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [aux_sym_expr_unary_token1] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2270), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -104408,67 +104923,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(755)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1140), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [STATE(762)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2165), + [sym_expr_parenthesized] = STATE(1947), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1985), + [sym_val_variable] = STATE(1953), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1755), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(755), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [sym__unquoted_with_expr] = STATE(909), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(762), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2256), + [aux_sym_cmd_identifier_token4] = ACTIONS(2256), + [aux_sym_cmd_identifier_token5] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [aux_sym_expr_unary_token1] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2270), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -104478,67 +104993,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(756)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(756), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(763)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(924), + [sym_expr_parenthesized] = STATE(1947), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1985), + [sym_val_variable] = STATE(1953), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1755), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(689), + [sym__unquoted_with_expr] = STATE(911), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(763), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2256), + [aux_sym_cmd_identifier_token4] = ACTIONS(2256), + [aux_sym_cmd_identifier_token5] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [aux_sym_expr_unary_token1] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2270), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -104548,67 +105063,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(757)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1142), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(757), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(764)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2179), + [sym_expr_parenthesized] = STATE(1947), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1985), + [sym_val_variable] = STATE(1953), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1755), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(931), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(764), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2256), + [aux_sym_cmd_identifier_token4] = ACTIONS(2256), + [aux_sym_cmd_identifier_token5] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [aux_sym_expr_unary_token1] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2270), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -104618,67 +105133,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(758)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1144), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(758), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(765)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2185), + [sym_expr_parenthesized] = STATE(1947), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1985), + [sym_val_variable] = STATE(1953), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1755), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(702), + [sym__unquoted_with_expr] = STATE(918), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(765), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2256), + [aux_sym_cmd_identifier_token4] = ACTIONS(2256), + [aux_sym_cmd_identifier_token5] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [aux_sym_expr_unary_token1] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2270), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -104688,67 +105203,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(759)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1145), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(759), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(766)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2189), + [sym_expr_parenthesized] = STATE(1947), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1985), + [sym_val_variable] = STATE(1953), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1755), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(943), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(766), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2256), + [aux_sym_cmd_identifier_token4] = ACTIONS(2256), + [aux_sym_cmd_identifier_token5] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [aux_sym_expr_unary_token1] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2270), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -104758,67 +105273,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(760)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1147), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(760), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(767)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2192), + [sym_expr_parenthesized] = STATE(1947), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1985), + [sym_val_variable] = STATE(1953), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1755), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(953), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(767), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_null] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2256), + [aux_sym_cmd_identifier_token4] = ACTIONS(2256), + [aux_sym_cmd_identifier_token5] = ACTIONS(2256), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [aux_sym_expr_unary_token1] = ACTIONS(2260), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2262), + [anon_sym_DOT_DOT_LT] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2268), + [aux_sym__val_number_decimal_token4] = ACTIONS(2268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(2270), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -104828,1691 +105343,2181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(761)] = { - [sym_cell_path] = STATE(1279), - [sym_path] = STATE(783), - [sym_comment] = STATE(761), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1878), - [anon_sym_in] = 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_GT2] = ACTIONS(1880), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_STAR2] = ACTIONS(1880), - [anon_sym_and2] = ACTIONS(1878), - [anon_sym_xor2] = ACTIONS(1878), - [anon_sym_or2] = ACTIONS(1878), - [anon_sym_not_DASHin2] = ACTIONS(1878), - [anon_sym_has2] = ACTIONS(1878), - [anon_sym_not_DASHhas2] = ACTIONS(1878), - [anon_sym_starts_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1878), - [anon_sym_ends_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1878), - [anon_sym_EQ_EQ2] = ACTIONS(1878), - [anon_sym_BANG_EQ2] = ACTIONS(1878), - [anon_sym_LT2] = ACTIONS(1880), - [anon_sym_LT_EQ2] = ACTIONS(1878), - [anon_sym_GT_EQ2] = ACTIONS(1878), - [anon_sym_EQ_TILDE2] = ACTIONS(1878), - [anon_sym_BANG_TILDE2] = ACTIONS(1878), - [anon_sym_like2] = ACTIONS(1878), - [anon_sym_not_DASHlike2] = ACTIONS(1878), - [anon_sym_STAR_STAR2] = ACTIONS(1878), - [anon_sym_PLUS_PLUS2] = ACTIONS(1878), - [anon_sym_SLASH2] = ACTIONS(1880), - [anon_sym_mod2] = ACTIONS(1878), - [anon_sym_SLASH_SLASH2] = ACTIONS(1878), - [anon_sym_PLUS2] = ACTIONS(1880), - [anon_sym_bit_DASHshl2] = ACTIONS(1878), - [anon_sym_bit_DASHshr2] = ACTIONS(1878), - [anon_sym_bit_DASHand2] = ACTIONS(1878), - [anon_sym_bit_DASHxor2] = ACTIONS(1878), - [anon_sym_bit_DASHor2] = ACTIONS(1878), - [anon_sym_DOT2] = ACTIONS(2266), - [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(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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(762)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1315), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [STATE(768)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1289), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(975), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(474), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1033), - [sym__unquoted_with_expr] = STATE(1280), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(762), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1037), + [sym__unquoted_with_expr] = STATE(1290), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(768), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2274), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2278), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), + [anon_sym_DOT_DOT_LT] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2288), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(763)] = { - [sym_comment] = STATE(763), - [anon_sym_in] = ACTIONS(2268), - [sym__newline] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_err_GT_PIPE] = ACTIONS(2268), - [anon_sym_out_GT_PIPE] = ACTIONS(2268), - [anon_sym_e_GT_PIPE] = ACTIONS(2268), - [anon_sym_o_GT_PIPE] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_GT2] = ACTIONS(2270), - [anon_sym_DASH2] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_EQ_GT] = ACTIONS(2268), - [anon_sym_STAR2] = ACTIONS(2270), - [anon_sym_and2] = ACTIONS(2268), - [anon_sym_xor2] = ACTIONS(2268), - [anon_sym_or2] = ACTIONS(2268), - [anon_sym_not_DASHin2] = ACTIONS(2268), - [anon_sym_has2] = ACTIONS(2268), - [anon_sym_not_DASHhas2] = ACTIONS(2268), - [anon_sym_starts_DASHwith2] = ACTIONS(2268), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2268), - [anon_sym_ends_DASHwith2] = ACTIONS(2268), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2268), - [anon_sym_EQ_EQ2] = ACTIONS(2268), - [anon_sym_BANG_EQ2] = ACTIONS(2268), - [anon_sym_LT2] = ACTIONS(2270), - [anon_sym_LT_EQ2] = ACTIONS(2268), - [anon_sym_GT_EQ2] = ACTIONS(2268), - [anon_sym_EQ_TILDE2] = ACTIONS(2268), - [anon_sym_BANG_TILDE2] = ACTIONS(2268), - [anon_sym_like2] = ACTIONS(2268), - [anon_sym_not_DASHlike2] = ACTIONS(2268), - [anon_sym_STAR_STAR2] = ACTIONS(2268), - [anon_sym_PLUS_PLUS2] = ACTIONS(2268), - [anon_sym_SLASH2] = ACTIONS(2270), - [anon_sym_mod2] = ACTIONS(2268), - [anon_sym_SLASH_SLASH2] = ACTIONS(2268), - [anon_sym_PLUS2] = ACTIONS(2270), - [anon_sym_bit_DASHshl2] = ACTIONS(2268), - [anon_sym_bit_DASHshr2] = ACTIONS(2268), - [anon_sym_bit_DASHand2] = ACTIONS(2268), - [anon_sym_bit_DASHxor2] = ACTIONS(2268), - [anon_sym_bit_DASHor2] = ACTIONS(2268), - [anon_sym_COLON2] = ACTIONS(2268), - [anon_sym_err_GT] = ACTIONS(2270), - [anon_sym_out_GT] = ACTIONS(2270), - [anon_sym_e_GT] = ACTIONS(2270), - [anon_sym_o_GT] = ACTIONS(2270), - [anon_sym_err_PLUSout_GT] = ACTIONS(2270), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2270), - [anon_sym_o_PLUSe_GT] = ACTIONS(2270), - [anon_sym_e_PLUSo_GT] = ACTIONS(2270), - [anon_sym_err_GT_GT] = ACTIONS(2268), - [anon_sym_out_GT_GT] = ACTIONS(2268), - [anon_sym_e_GT_GT] = ACTIONS(2268), - [anon_sym_o_GT_GT] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2268), + [STATE(769)] = { + [sym_cmd_identifier] = STATE(4323), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4227), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_entry] = STATE(4581), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(769), + [aux_sym__match_pattern_record_body_repeat1] = STATE(770), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1780), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1784), + [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(764)] = { - [sym_comment] = STATE(764), - [anon_sym_in] = ACTIONS(2272), - [sym__newline] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2274), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_EQ_GT] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2274), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_has2] = ACTIONS(2272), - [anon_sym_not_DASHhas2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2274), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_like2] = ACTIONS(2272), - [anon_sym_not_DASHlike2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2274), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2274), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_COLON2] = ACTIONS(2272), - [anon_sym_err_GT] = ACTIONS(2274), - [anon_sym_out_GT] = ACTIONS(2274), - [anon_sym_e_GT] = ACTIONS(2274), - [anon_sym_o_GT] = ACTIONS(2274), - [anon_sym_err_PLUSout_GT] = ACTIONS(2274), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2274), - [anon_sym_o_PLUSe_GT] = ACTIONS(2274), - [anon_sym_e_PLUSo_GT] = ACTIONS(2274), - [anon_sym_err_GT_GT] = ACTIONS(2272), - [anon_sym_out_GT_GT] = ACTIONS(2272), - [anon_sym_e_GT_GT] = ACTIONS(2272), - [anon_sym_o_GT_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(3), + [STATE(770)] = { + [sym_cmd_identifier] = STATE(4323), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4588), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_entry] = STATE(4735), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(770), + [aux_sym__match_pattern_record_body_repeat1] = STATE(770), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_alias] = ACTIONS(2295), + [anon_sym_let] = ACTIONS(2295), + [anon_sym_mut] = ACTIONS(2295), + [anon_sym_const] = ACTIONS(2295), + [aux_sym_cmd_identifier_token1] = ACTIONS(2298), + [anon_sym_def] = ACTIONS(2295), + [anon_sym_use] = ACTIONS(2295), + [anon_sym_export_DASHenv] = ACTIONS(2295), + [anon_sym_extern] = ACTIONS(2295), + [anon_sym_module] = ACTIONS(2295), + [anon_sym_for] = ACTIONS(2295), + [anon_sym_loop] = ACTIONS(2295), + [anon_sym_while] = ACTIONS(2295), + [anon_sym_if] = ACTIONS(2295), + [anon_sym_else] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(2295), + [anon_sym_catch] = ACTIONS(2295), + [anon_sym_match] = ACTIONS(2295), + [anon_sym_in] = ACTIONS(2292), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), + [anon_sym_null] = ACTIONS(2301), + [aux_sym_cmd_identifier_token3] = ACTIONS(2304), + [aux_sym_cmd_identifier_token4] = ACTIONS(2304), + [aux_sym_cmd_identifier_token5] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_DOLLAR] = ACTIONS(2310), + [anon_sym_DASH2] = ACTIONS(2313), + [anon_sym_PLUS2] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2319), + [aux_sym__val_number_decimal_token1] = ACTIONS(2322), + [aux_sym__val_number_decimal_token2] = ACTIONS(2325), + [aux_sym__val_number_decimal_token3] = ACTIONS(2328), + [aux_sym__val_number_decimal_token4] = ACTIONS(2328), + [aux_sym__val_number_token1] = ACTIONS(2331), + [aux_sym__val_number_token2] = ACTIONS(2331), + [aux_sym__val_number_token3] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(2334), + [anon_sym_SQUOTE] = ACTIONS(2337), + [anon_sym_BQUOTE] = ACTIONS(2340), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2343), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2352), }, - [STATE(765)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1286), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [STATE(771)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1291), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(975), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(474), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1086), - [sym__unquoted_with_expr] = STATE(1345), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(765), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1054), + [sym__unquoted_with_expr] = STATE(1292), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(771), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2274), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2278), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), + [anon_sym_DOT_DOT_LT] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2288), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(766)] = { - [sym_comment] = STATE(766), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_err_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_GT_PIPE] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2278), - [anon_sym_out_GT] = ACTIONS(2278), - [anon_sym_e_GT] = ACTIONS(2278), - [anon_sym_o_GT] = ACTIONS(2278), - [anon_sym_err_PLUSout_GT] = ACTIONS(2278), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), - [anon_sym_o_PLUSe_GT] = ACTIONS(2278), - [anon_sym_e_PLUSo_GT] = ACTIONS(2278), - [anon_sym_err_GT_GT] = ACTIONS(2276), - [anon_sym_out_GT_GT] = ACTIONS(2276), - [anon_sym_e_GT_GT] = ACTIONS(2276), - [anon_sym_o_GT_GT] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(767)] = { - [aux_sym__repeat_newline] = STATE(980), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(767), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(768)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1314), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [STATE(772)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1293), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(975), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(474), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1128), - [sym__unquoted_with_expr] = STATE(1284), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(768), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(968), + [sym__unquoted_with_expr] = STATE(1294), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(772), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2274), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2278), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), + [anon_sym_DOT_DOT_LT] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2288), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(769)] = { - [aux_sym__repeat_newline] = STATE(983), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(769), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(770)] = { - [aux_sym__repeat_newline] = STATE(986), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(770), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(771)] = { - [aux_sym__repeat_newline] = STATE(990), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(771), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(772)] = { - [aux_sym__repeat_newline] = STATE(992), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(772), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(773)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1295), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(975), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(474), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1068), + [sym__unquoted_with_expr] = STATE(1297), + [sym__unquoted_anonymous_prefix] = STATE(4506), [sym_comment] = STATE(773), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_err_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_GT_PIPE] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2287), - [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [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(2287), - [anon_sym_out_GT_GT] = ACTIONS(2287), - [anon_sym_e_GT_GT] = ACTIONS(2287), - [anon_sym_o_GT_GT] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2274), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2278), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), + [anon_sym_DOT_DOT_LT] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(774)] = { - [aux_sym__repeat_newline] = STATE(994), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1298), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(975), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(474), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1077), + [sym__unquoted_with_expr] = STATE(1299), + [sym__unquoted_anonymous_prefix] = STATE(4506), [sym_comment] = STATE(774), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2274), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2278), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), + [anon_sym_DOT_DOT_LT] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(775)] = { - [aux_sym__repeat_newline] = STATE(996), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1087), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(775), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(776)] = { - [aux_sym__repeat_newline] = STATE(998), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(776), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_in] = 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_RPAREN] = ACTIONS(2359), + [anon_sym_GT2] = ACTIONS(2361), + [anon_sym_DASH2] = ACTIONS(2359), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_EQ_GT] = ACTIONS(2359), + [anon_sym_STAR2] = ACTIONS(2361), + [anon_sym_and2] = ACTIONS(2359), + [anon_sym_xor2] = ACTIONS(2359), + [anon_sym_or2] = ACTIONS(2359), + [anon_sym_not_DASHin2] = ACTIONS(2359), + [anon_sym_has2] = ACTIONS(2359), + [anon_sym_not_DASHhas2] = ACTIONS(2359), + [anon_sym_starts_DASHwith2] = ACTIONS(2359), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2359), + [anon_sym_ends_DASHwith2] = ACTIONS(2359), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2359), + [anon_sym_EQ_EQ2] = ACTIONS(2359), + [anon_sym_BANG_EQ2] = ACTIONS(2359), + [anon_sym_LT2] = ACTIONS(2361), + [anon_sym_LT_EQ2] = ACTIONS(2359), + [anon_sym_GT_EQ2] = ACTIONS(2359), + [anon_sym_EQ_TILDE2] = ACTIONS(2359), + [anon_sym_BANG_TILDE2] = ACTIONS(2359), + [anon_sym_like2] = ACTIONS(2359), + [anon_sym_not_DASHlike2] = ACTIONS(2359), + [anon_sym_STAR_STAR2] = ACTIONS(2359), + [anon_sym_PLUS_PLUS2] = ACTIONS(2359), + [anon_sym_SLASH2] = ACTIONS(2361), + [anon_sym_mod2] = ACTIONS(2359), + [anon_sym_SLASH_SLASH2] = ACTIONS(2359), + [anon_sym_PLUS2] = ACTIONS(2361), + [anon_sym_bit_DASHshl2] = ACTIONS(2359), + [anon_sym_bit_DASHshr2] = ACTIONS(2359), + [anon_sym_bit_DASHand2] = ACTIONS(2359), + [anon_sym_bit_DASHxor2] = ACTIONS(2359), + [anon_sym_bit_DASHor2] = ACTIONS(2359), + [anon_sym_err_GT] = ACTIONS(2361), + [anon_sym_out_GT] = ACTIONS(2361), + [anon_sym_e_GT] = ACTIONS(2361), + [anon_sym_o_GT] = ACTIONS(2361), + [anon_sym_err_PLUSout_GT] = ACTIONS(2361), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2361), + [anon_sym_o_PLUSe_GT] = ACTIONS(2361), + [anon_sym_e_PLUSo_GT] = ACTIONS(2361), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(777)] = { - [aux_sym__repeat_newline] = STATE(1002), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1088), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(777), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(778)] = { - [aux_sym__repeat_newline] = STATE(1004), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1089), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(778), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(779)] = { + [aux_sym__repeat_newline] = STATE(1090), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(779), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2291), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [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(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(780)] = { - [aux_sym__repeat_newline] = STATE(1007), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1091), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(780), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(781)] = { - [aux_sym__repeat_newline] = STATE(1009), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1092), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(781), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(782)] = { - [aux_sym__repeat_newline] = STATE(1011), - [sym__expr_parenthesized_immediate] = STATE(4746), + [aux_sym__repeat_newline] = STATE(1093), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(782), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(783)] = { + [aux_sym__repeat_newline] = STATE(1094), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(784)] = { + [aux_sym__repeat_newline] = STATE(1096), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(784), - [ts_builtin_sym_end] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1522), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(785)] = { - [sym_cell_path] = STATE(1272), - [sym_path] = STATE(783), [sym_comment] = STATE(785), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_in] = ACTIONS(2363), + [sym__newline] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(2363), + [anon_sym_err_GT_PIPE] = ACTIONS(2363), + [anon_sym_out_GT_PIPE] = ACTIONS(2363), + [anon_sym_e_GT_PIPE] = ACTIONS(2363), + [anon_sym_o_GT_PIPE] = ACTIONS(2363), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2363), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2363), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2363), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2363), + [anon_sym_RPAREN] = ACTIONS(2363), + [anon_sym_GT2] = ACTIONS(2365), + [anon_sym_DASH2] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_EQ_GT] = ACTIONS(2363), + [anon_sym_STAR2] = ACTIONS(2365), + [anon_sym_and2] = ACTIONS(2363), + [anon_sym_xor2] = ACTIONS(2363), + [anon_sym_or2] = ACTIONS(2363), + [anon_sym_not_DASHin2] = ACTIONS(2363), + [anon_sym_has2] = ACTIONS(2363), + [anon_sym_not_DASHhas2] = ACTIONS(2363), + [anon_sym_starts_DASHwith2] = ACTIONS(2363), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2363), + [anon_sym_ends_DASHwith2] = ACTIONS(2363), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2363), + [anon_sym_EQ_EQ2] = ACTIONS(2363), + [anon_sym_BANG_EQ2] = ACTIONS(2363), + [anon_sym_LT2] = ACTIONS(2365), + [anon_sym_LT_EQ2] = ACTIONS(2363), + [anon_sym_GT_EQ2] = ACTIONS(2363), + [anon_sym_EQ_TILDE2] = ACTIONS(2363), + [anon_sym_BANG_TILDE2] = ACTIONS(2363), + [anon_sym_like2] = ACTIONS(2363), + [anon_sym_not_DASHlike2] = ACTIONS(2363), + [anon_sym_STAR_STAR2] = ACTIONS(2363), + [anon_sym_PLUS_PLUS2] = ACTIONS(2363), + [anon_sym_SLASH2] = ACTIONS(2365), + [anon_sym_mod2] = ACTIONS(2363), + [anon_sym_SLASH_SLASH2] = ACTIONS(2363), + [anon_sym_PLUS2] = ACTIONS(2365), + [anon_sym_bit_DASHshl2] = ACTIONS(2363), + [anon_sym_bit_DASHshr2] = ACTIONS(2363), + [anon_sym_bit_DASHand2] = ACTIONS(2363), + [anon_sym_bit_DASHxor2] = ACTIONS(2363), + [anon_sym_bit_DASHor2] = ACTIONS(2363), + [anon_sym_err_GT] = ACTIONS(2365), + [anon_sym_out_GT] = ACTIONS(2365), + [anon_sym_e_GT] = ACTIONS(2365), + [anon_sym_o_GT] = ACTIONS(2365), + [anon_sym_err_PLUSout_GT] = ACTIONS(2365), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2365), + [anon_sym_o_PLUSe_GT] = ACTIONS(2365), + [anon_sym_e_PLUSo_GT] = ACTIONS(2365), + [anon_sym_err_GT_GT] = ACTIONS(2363), + [anon_sym_out_GT_GT] = ACTIONS(2363), + [anon_sym_e_GT_GT] = ACTIONS(2363), + [anon_sym_o_GT_GT] = ACTIONS(2363), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2363), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2363), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2363), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2363), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(786)] = { + [sym_comment] = STATE(786), + [anon_sym_in] = ACTIONS(2367), + [sym__newline] = ACTIONS(2367), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_PIPE] = ACTIONS(2367), + [anon_sym_err_GT_PIPE] = ACTIONS(2367), + [anon_sym_out_GT_PIPE] = ACTIONS(2367), + [anon_sym_e_GT_PIPE] = ACTIONS(2367), + [anon_sym_o_GT_PIPE] = ACTIONS(2367), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2367), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2367), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2367), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2367), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_GT2] = ACTIONS(2369), + [anon_sym_DASH2] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_EQ_GT] = ACTIONS(2367), + [anon_sym_STAR2] = ACTIONS(2369), + [anon_sym_and2] = ACTIONS(2367), + [anon_sym_xor2] = ACTIONS(2367), + [anon_sym_or2] = ACTIONS(2367), + [anon_sym_not_DASHin2] = ACTIONS(2367), + [anon_sym_has2] = ACTIONS(2367), + [anon_sym_not_DASHhas2] = ACTIONS(2367), + [anon_sym_starts_DASHwith2] = ACTIONS(2367), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2367), + [anon_sym_ends_DASHwith2] = ACTIONS(2367), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2367), + [anon_sym_EQ_EQ2] = ACTIONS(2367), + [anon_sym_BANG_EQ2] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LT_EQ2] = ACTIONS(2367), + [anon_sym_GT_EQ2] = ACTIONS(2367), + [anon_sym_EQ_TILDE2] = ACTIONS(2367), + [anon_sym_BANG_TILDE2] = ACTIONS(2367), + [anon_sym_like2] = ACTIONS(2367), + [anon_sym_not_DASHlike2] = ACTIONS(2367), + [anon_sym_STAR_STAR2] = ACTIONS(2367), + [anon_sym_PLUS_PLUS2] = ACTIONS(2367), + [anon_sym_SLASH2] = ACTIONS(2369), + [anon_sym_mod2] = ACTIONS(2367), + [anon_sym_SLASH_SLASH2] = ACTIONS(2367), + [anon_sym_PLUS2] = ACTIONS(2369), + [anon_sym_bit_DASHshl2] = ACTIONS(2367), + [anon_sym_bit_DASHshr2] = ACTIONS(2367), + [anon_sym_bit_DASHand2] = ACTIONS(2367), + [anon_sym_bit_DASHxor2] = ACTIONS(2367), + [anon_sym_bit_DASHor2] = ACTIONS(2367), + [anon_sym_COLON2] = ACTIONS(2367), + [anon_sym_err_GT] = ACTIONS(2369), + [anon_sym_out_GT] = ACTIONS(2369), + [anon_sym_e_GT] = ACTIONS(2369), + [anon_sym_o_GT] = ACTIONS(2369), + [anon_sym_err_PLUSout_GT] = ACTIONS(2369), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2369), + [anon_sym_o_PLUSe_GT] = ACTIONS(2369), + [anon_sym_e_PLUSo_GT] = ACTIONS(2369), + [anon_sym_err_GT_GT] = ACTIONS(2367), + [anon_sym_out_GT_GT] = ACTIONS(2367), + [anon_sym_e_GT_GT] = ACTIONS(2367), + [anon_sym_o_GT_GT] = ACTIONS(2367), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2367), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2367), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2367), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2367), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(787)] = { + [sym_comment] = STATE(787), + [anon_sym_in] = ACTIONS(2367), + [sym__newline] = ACTIONS(2367), + [anon_sym_SEMI] = ACTIONS(2367), + [anon_sym_PIPE] = ACTIONS(2367), + [anon_sym_err_GT_PIPE] = ACTIONS(2367), + [anon_sym_out_GT_PIPE] = ACTIONS(2367), + [anon_sym_e_GT_PIPE] = ACTIONS(2367), + [anon_sym_o_GT_PIPE] = ACTIONS(2367), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2367), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2367), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2367), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2367), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_GT2] = ACTIONS(2369), + [anon_sym_DASH2] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2367), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_EQ_GT] = ACTIONS(2367), + [anon_sym_STAR2] = ACTIONS(2369), + [anon_sym_and2] = ACTIONS(2367), + [anon_sym_xor2] = ACTIONS(2367), + [anon_sym_or2] = ACTIONS(2367), + [anon_sym_not_DASHin2] = ACTIONS(2367), + [anon_sym_has2] = ACTIONS(2367), + [anon_sym_not_DASHhas2] = ACTIONS(2367), + [anon_sym_starts_DASHwith2] = ACTIONS(2367), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2367), + [anon_sym_ends_DASHwith2] = ACTIONS(2367), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2367), + [anon_sym_EQ_EQ2] = ACTIONS(2367), + [anon_sym_BANG_EQ2] = ACTIONS(2367), + [anon_sym_LT2] = ACTIONS(2369), + [anon_sym_LT_EQ2] = ACTIONS(2367), + [anon_sym_GT_EQ2] = ACTIONS(2367), + [anon_sym_EQ_TILDE2] = ACTIONS(2367), + [anon_sym_BANG_TILDE2] = ACTIONS(2367), + [anon_sym_like2] = ACTIONS(2367), + [anon_sym_not_DASHlike2] = ACTIONS(2367), + [anon_sym_STAR_STAR2] = ACTIONS(2367), + [anon_sym_PLUS_PLUS2] = ACTIONS(2367), + [anon_sym_SLASH2] = ACTIONS(2369), + [anon_sym_mod2] = ACTIONS(2367), + [anon_sym_SLASH_SLASH2] = ACTIONS(2367), + [anon_sym_PLUS2] = ACTIONS(2369), + [anon_sym_bit_DASHshl2] = ACTIONS(2367), + [anon_sym_bit_DASHshr2] = ACTIONS(2367), + [anon_sym_bit_DASHand2] = ACTIONS(2367), + [anon_sym_bit_DASHxor2] = ACTIONS(2367), + [anon_sym_bit_DASHor2] = ACTIONS(2367), + [anon_sym_COLON2] = ACTIONS(2367), + [anon_sym_err_GT] = ACTIONS(2369), + [anon_sym_out_GT] = ACTIONS(2369), + [anon_sym_e_GT] = ACTIONS(2369), + [anon_sym_o_GT] = ACTIONS(2369), + [anon_sym_err_PLUSout_GT] = ACTIONS(2369), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2369), + [anon_sym_o_PLUSe_GT] = ACTIONS(2369), + [anon_sym_e_PLUSo_GT] = ACTIONS(2369), + [anon_sym_err_GT_GT] = ACTIONS(2367), + [anon_sym_out_GT_GT] = ACTIONS(2367), + [anon_sym_e_GT_GT] = ACTIONS(2367), + [anon_sym_o_GT_GT] = ACTIONS(2367), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2367), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2367), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2367), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2367), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(788)] = { + [sym_comment] = STATE(788), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2076), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_err_GT_PIPE] = ACTIONS(2076), + [anon_sym_out_GT_PIPE] = ACTIONS(2076), + [anon_sym_e_GT_PIPE] = ACTIONS(2076), + [anon_sym_o_GT_PIPE] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), + [anon_sym_GT2] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_STAR2] = ACTIONS(2078), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2078), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2078), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_DOT_DOT2] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1619), + [anon_sym_COLON2] = ACTIONS(1708), + [anon_sym_err_GT] = ACTIONS(2080), + [anon_sym_out_GT] = ACTIONS(2080), + [anon_sym_e_GT] = ACTIONS(2080), + [anon_sym_o_GT] = ACTIONS(2080), + [anon_sym_err_PLUSout_GT] = ACTIONS(2080), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2080), + [anon_sym_o_PLUSe_GT] = ACTIONS(2080), + [anon_sym_e_PLUSo_GT] = ACTIONS(2080), + [anon_sym_err_GT_GT] = ACTIONS(2076), + [anon_sym_out_GT_GT] = ACTIONS(2076), + [anon_sym_e_GT_GT] = ACTIONS(2076), + [anon_sym_o_GT_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(789)] = { + [aux_sym__repeat_newline] = STATE(998), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(789), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(790)] = { + [aux_sym__repeat_newline] = STATE(1002), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(790), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(791)] = { + [aux_sym__repeat_newline] = STATE(1004), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(791), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(792)] = { + [aux_sym__repeat_newline] = STATE(1006), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(792), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(793)] = { + [sym_comment] = STATE(793), + [anon_sym_in] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1762), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_has2] = ACTIONS(1760), + [anon_sym_not_DASHhas2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1762), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_like2] = ACTIONS(1760), + [anon_sym_not_DASHlike2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1762), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1762), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(2371), + [aux_sym__immediate_decimal_token5] = ACTIONS(1766), + [anon_sym_err_GT] = ACTIONS(1762), + [anon_sym_out_GT] = ACTIONS(1762), + [anon_sym_e_GT] = ACTIONS(1762), + [anon_sym_o_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT] = ACTIONS(1762), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(794)] = { + [sym_comment] = STATE(794), + [anon_sym_in] = ACTIONS(2373), + [sym__newline] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_err_GT_PIPE] = ACTIONS(2373), + [anon_sym_out_GT_PIPE] = ACTIONS(2373), + [anon_sym_e_GT_PIPE] = ACTIONS(2373), + [anon_sym_o_GT_PIPE] = ACTIONS(2373), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2373), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2373), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2373), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2373), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_GT2] = ACTIONS(2375), + [anon_sym_DASH2] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_EQ_GT] = ACTIONS(2373), + [anon_sym_STAR2] = ACTIONS(2375), + [anon_sym_and2] = ACTIONS(2373), + [anon_sym_xor2] = ACTIONS(2373), + [anon_sym_or2] = ACTIONS(2373), + [anon_sym_not_DASHin2] = ACTIONS(2373), + [anon_sym_has2] = ACTIONS(2373), + [anon_sym_not_DASHhas2] = ACTIONS(2373), + [anon_sym_starts_DASHwith2] = ACTIONS(2373), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2373), + [anon_sym_ends_DASHwith2] = ACTIONS(2373), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2373), + [anon_sym_EQ_EQ2] = ACTIONS(2373), + [anon_sym_BANG_EQ2] = ACTIONS(2373), + [anon_sym_LT2] = ACTIONS(2375), + [anon_sym_LT_EQ2] = ACTIONS(2373), + [anon_sym_GT_EQ2] = ACTIONS(2373), + [anon_sym_EQ_TILDE2] = ACTIONS(2373), + [anon_sym_BANG_TILDE2] = ACTIONS(2373), + [anon_sym_like2] = ACTIONS(2373), + [anon_sym_not_DASHlike2] = ACTIONS(2373), + [anon_sym_STAR_STAR2] = ACTIONS(2373), + [anon_sym_PLUS_PLUS2] = ACTIONS(2373), + [anon_sym_SLASH2] = ACTIONS(2375), + [anon_sym_mod2] = ACTIONS(2373), + [anon_sym_SLASH_SLASH2] = ACTIONS(2373), + [anon_sym_PLUS2] = ACTIONS(2375), + [anon_sym_bit_DASHshl2] = ACTIONS(2373), + [anon_sym_bit_DASHshr2] = ACTIONS(2373), + [anon_sym_bit_DASHand2] = ACTIONS(2373), + [anon_sym_bit_DASHxor2] = ACTIONS(2373), + [anon_sym_bit_DASHor2] = ACTIONS(2373), + [anon_sym_COLON2] = ACTIONS(2373), + [anon_sym_err_GT] = ACTIONS(2375), + [anon_sym_out_GT] = ACTIONS(2375), + [anon_sym_e_GT] = ACTIONS(2375), + [anon_sym_o_GT] = ACTIONS(2375), + [anon_sym_err_PLUSout_GT] = ACTIONS(2375), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2375), + [anon_sym_o_PLUSe_GT] = ACTIONS(2375), + [anon_sym_e_PLUSo_GT] = ACTIONS(2375), + [anon_sym_err_GT_GT] = ACTIONS(2373), + [anon_sym_out_GT_GT] = ACTIONS(2373), + [anon_sym_e_GT_GT] = ACTIONS(2373), + [anon_sym_o_GT_GT] = ACTIONS(2373), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2373), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2373), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2373), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(795)] = { + [aux_sym__repeat_newline] = STATE(1008), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(795), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(796)] = { + [aux_sym__repeat_newline] = STATE(1097), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(796), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(797)] = { + [sym_comment] = STATE(797), + [anon_sym_in] = ACTIONS(2377), + [sym__newline] = ACTIONS(2377), + [anon_sym_SEMI] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(2377), + [anon_sym_err_GT_PIPE] = ACTIONS(2377), + [anon_sym_out_GT_PIPE] = ACTIONS(2377), + [anon_sym_e_GT_PIPE] = ACTIONS(2377), + [anon_sym_o_GT_PIPE] = ACTIONS(2377), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2377), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2377), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2377), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(2377), + [anon_sym_GT2] = ACTIONS(2379), + [anon_sym_DASH2] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_EQ_GT] = ACTIONS(2377), + [anon_sym_STAR2] = ACTIONS(2379), + [anon_sym_and2] = ACTIONS(2377), + [anon_sym_xor2] = ACTIONS(2377), + [anon_sym_or2] = ACTIONS(2377), + [anon_sym_not_DASHin2] = ACTIONS(2377), + [anon_sym_has2] = ACTIONS(2377), + [anon_sym_not_DASHhas2] = ACTIONS(2377), + [anon_sym_starts_DASHwith2] = ACTIONS(2377), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2377), + [anon_sym_ends_DASHwith2] = ACTIONS(2377), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2377), + [anon_sym_EQ_EQ2] = ACTIONS(2377), + [anon_sym_BANG_EQ2] = ACTIONS(2377), + [anon_sym_LT2] = ACTIONS(2379), + [anon_sym_LT_EQ2] = ACTIONS(2377), + [anon_sym_GT_EQ2] = ACTIONS(2377), + [anon_sym_EQ_TILDE2] = ACTIONS(2377), + [anon_sym_BANG_TILDE2] = ACTIONS(2377), + [anon_sym_like2] = ACTIONS(2377), + [anon_sym_not_DASHlike2] = ACTIONS(2377), + [anon_sym_STAR_STAR2] = ACTIONS(2377), + [anon_sym_PLUS_PLUS2] = ACTIONS(2377), + [anon_sym_SLASH2] = ACTIONS(2379), + [anon_sym_mod2] = ACTIONS(2377), + [anon_sym_SLASH_SLASH2] = ACTIONS(2377), + [anon_sym_PLUS2] = ACTIONS(2379), + [anon_sym_bit_DASHshl2] = ACTIONS(2377), + [anon_sym_bit_DASHshr2] = ACTIONS(2377), + [anon_sym_bit_DASHand2] = ACTIONS(2377), + [anon_sym_bit_DASHxor2] = ACTIONS(2377), + [anon_sym_bit_DASHor2] = ACTIONS(2377), + [anon_sym_COLON2] = ACTIONS(2377), + [anon_sym_err_GT] = ACTIONS(2379), + [anon_sym_out_GT] = ACTIONS(2379), + [anon_sym_e_GT] = ACTIONS(2379), + [anon_sym_o_GT] = ACTIONS(2379), + [anon_sym_err_PLUSout_GT] = ACTIONS(2379), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2379), + [anon_sym_o_PLUSe_GT] = ACTIONS(2379), + [anon_sym_e_PLUSo_GT] = ACTIONS(2379), + [anon_sym_err_GT_GT] = ACTIONS(2377), + [anon_sym_out_GT_GT] = ACTIONS(2377), + [anon_sym_e_GT_GT] = ACTIONS(2377), + [anon_sym_o_GT_GT] = ACTIONS(2377), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2377), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2377), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2377), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(798)] = { + [aux_sym__repeat_newline] = STATE(1011), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(798), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(799)] = { + [sym_cell_path] = STATE(1331), + [sym_path] = STATE(842), + [sym_comment] = STATE(799), + [aux_sym__where_predicate_lhs_repeat1] = STATE(647), [ts_builtin_sym_end] = ACTIONS(1858), [anon_sym_in] = ACTIONS(1858), [sym__newline] = ACTIONS(1858), @@ -106559,7 +107564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1858), [anon_sym_bit_DASHxor2] = ACTIONS(1858), [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(2266), + [anon_sym_DOT2] = ACTIONS(2381), [anon_sym_err_GT] = ACTIONS(1860), [anon_sym_out_GT] = ACTIONS(1860), [anon_sym_e_GT] = ACTIONS(1860), @@ -106578,238 +107583,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(786)] = { - [sym_comment] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(2293), - [aux_sym__immediate_decimal_token5] = ACTIONS(2295), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(787)] = { - [sym_cell_path] = STATE(1273), - [sym_path] = STATE(783), - [sym_comment] = STATE(787), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1862), - [anon_sym_in] = 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_GT2] = ACTIONS(1864), - [anon_sym_DASH2] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1864), - [anon_sym_and2] = ACTIONS(1862), - [anon_sym_xor2] = ACTIONS(1862), - [anon_sym_or2] = ACTIONS(1862), - [anon_sym_not_DASHin2] = ACTIONS(1862), - [anon_sym_has2] = ACTIONS(1862), - [anon_sym_not_DASHhas2] = ACTIONS(1862), - [anon_sym_starts_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), - [anon_sym_ends_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), - [anon_sym_EQ_EQ2] = ACTIONS(1862), - [anon_sym_BANG_EQ2] = ACTIONS(1862), - [anon_sym_LT2] = ACTIONS(1864), - [anon_sym_LT_EQ2] = ACTIONS(1862), - [anon_sym_GT_EQ2] = ACTIONS(1862), - [anon_sym_EQ_TILDE2] = ACTIONS(1862), - [anon_sym_BANG_TILDE2] = ACTIONS(1862), - [anon_sym_like2] = ACTIONS(1862), - [anon_sym_not_DASHlike2] = ACTIONS(1862), - [anon_sym_STAR_STAR2] = ACTIONS(1862), - [anon_sym_PLUS_PLUS2] = ACTIONS(1862), - [anon_sym_SLASH2] = ACTIONS(1864), - [anon_sym_mod2] = ACTIONS(1862), - [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1864), - [anon_sym_bit_DASHshl2] = ACTIONS(1862), - [anon_sym_bit_DASHshr2] = ACTIONS(1862), - [anon_sym_bit_DASHand2] = ACTIONS(1862), - [anon_sym_bit_DASHxor2] = ACTIONS(1862), - [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(2266), - [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(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), + [STATE(800)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1248), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(712), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(800), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(788)] = { - [aux_sym__repeat_newline] = STATE(912), - [aux_sym__pipe_separator] = STATE(885), - [sym_comment] = STATE(788), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_alias] = ACTIONS(2299), - [anon_sym_let] = ACTIONS(2299), - [anon_sym_mut] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [aux_sym_cmd_identifier_token1] = ACTIONS(2297), - [anon_sym_def] = ACTIONS(2299), - [anon_sym_use] = ACTIONS(2299), - [anon_sym_export_DASHenv] = ACTIONS(2299), - [anon_sym_extern] = ACTIONS(2299), - [anon_sym_module] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_loop] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_else] = ACTIONS(2299), - [anon_sym_try] = ACTIONS(2299), - [anon_sym_catch] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2299), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2299), - [anon_sym_false] = ACTIONS(2299), - [anon_sym_null] = ACTIONS(2299), - [aux_sym_cmd_identifier_token3] = ACTIONS(2299), - [aux_sym_cmd_identifier_token4] = ACTIONS(2299), - [aux_sym_cmd_identifier_token5] = ACTIONS(2299), - [sym__newline] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_err_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_GT_PIPE] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2297), - [anon_sym_DASH2] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_DOT_DOT] = ACTIONS(2297), - [anon_sym_where] = ACTIONS(2299), - [aux_sym_expr_unary_token1] = ACTIONS(2299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2299), - [anon_sym_DOT_DOT_LT] = ACTIONS(2299), - [aux_sym__val_number_decimal_token1] = ACTIONS(2297), - [aux_sym__val_number_decimal_token2] = ACTIONS(2299), - [aux_sym__val_number_decimal_token3] = ACTIONS(2299), - [aux_sym__val_number_decimal_token4] = ACTIONS(2299), - [aux_sym__val_number_token1] = ACTIONS(2299), - [aux_sym__val_number_token2] = ACTIONS(2299), - [aux_sym__val_number_token3] = ACTIONS(2299), - [anon_sym_0b] = ACTIONS(2297), - [anon_sym_0o] = ACTIONS(2297), - [anon_sym_0x] = ACTIONS(2297), - [sym_val_date] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(2299), - [anon_sym_SQUOTE] = ACTIONS(2299), - [anon_sym_BQUOTE] = ACTIONS(2299), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2299), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2299), - [anon_sym_CARET] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2299), - }, - [STATE(789)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4300), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4588), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(789), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), + [STATE(801)] = { + [sym_cmd_identifier] = STATE(4323), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5075), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_entry] = STATE(4556), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(801), + [aux_sym_record_body_repeat1] = STATE(802), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -106858,461 +107723,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(790)] = { - [sym_cell_path] = STATE(1292), - [sym_path] = STATE(783), - [sym_comment] = STATE(790), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1850), - [anon_sym_in] = 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_GT2] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1850), - [anon_sym_STAR2] = ACTIONS(1853), - [anon_sym_and2] = ACTIONS(1850), - [anon_sym_xor2] = ACTIONS(1850), - [anon_sym_or2] = ACTIONS(1850), - [anon_sym_not_DASHin2] = ACTIONS(1850), - [anon_sym_has2] = ACTIONS(1850), - [anon_sym_not_DASHhas2] = ACTIONS(1850), - [anon_sym_starts_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1850), - [anon_sym_ends_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1850), - [anon_sym_EQ_EQ2] = ACTIONS(1850), - [anon_sym_BANG_EQ2] = ACTIONS(1850), - [anon_sym_LT2] = ACTIONS(1853), - [anon_sym_LT_EQ2] = ACTIONS(1850), - [anon_sym_GT_EQ2] = ACTIONS(1850), - [anon_sym_EQ_TILDE2] = ACTIONS(1850), - [anon_sym_BANG_TILDE2] = ACTIONS(1850), - [anon_sym_like2] = ACTIONS(1850), - [anon_sym_not_DASHlike2] = ACTIONS(1850), - [anon_sym_STAR_STAR2] = ACTIONS(1850), - [anon_sym_PLUS_PLUS2] = ACTIONS(1850), - [anon_sym_SLASH2] = ACTIONS(1853), - [anon_sym_mod2] = ACTIONS(1850), - [anon_sym_SLASH_SLASH2] = ACTIONS(1850), - [anon_sym_PLUS2] = ACTIONS(1853), - [anon_sym_bit_DASHshl2] = ACTIONS(1850), - [anon_sym_bit_DASHshr2] = ACTIONS(1850), - [anon_sym_bit_DASHand2] = ACTIONS(1850), - [anon_sym_bit_DASHxor2] = ACTIONS(1850), - [anon_sym_bit_DASHor2] = ACTIONS(1850), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1853), - [anon_sym_out_GT] = ACTIONS(1853), - [anon_sym_e_GT] = ACTIONS(1853), - [anon_sym_o_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT] = ACTIONS(1853), - [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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(791)] = { - [sym_comment] = STATE(791), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2305), - [aux_sym__immediate_decimal_token5] = ACTIONS(2307), - [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(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(792)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(792), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(793)] = { - [aux_sym__repeat_newline] = STATE(1035), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(793), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(794)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(794), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(795)] = { - [sym_comment] = STATE(795), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(2066), - [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(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), + [STATE(802)] = { + [sym_cmd_identifier] = STATE(4323), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5075), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_entry] = STATE(4686), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(802), + [aux_sym_record_body_repeat1] = STATE(802), + [anon_sym_export] = ACTIONS(2383), + [anon_sym_alias] = ACTIONS(2386), + [anon_sym_let] = ACTIONS(2386), + [anon_sym_mut] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [aux_sym_cmd_identifier_token1] = ACTIONS(2389), + [anon_sym_def] = ACTIONS(2386), + [anon_sym_use] = ACTIONS(2386), + [anon_sym_export_DASHenv] = ACTIONS(2386), + [anon_sym_extern] = ACTIONS(2386), + [anon_sym_module] = ACTIONS(2386), + [anon_sym_for] = ACTIONS(2386), + [anon_sym_loop] = ACTIONS(2386), + [anon_sym_while] = ACTIONS(2386), + [anon_sym_if] = ACTIONS(2386), + [anon_sym_else] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2386), + [anon_sym_catch] = ACTIONS(2386), + [anon_sym_match] = ACTIONS(2386), + [anon_sym_in] = ACTIONS(2383), + [anon_sym_true] = ACTIONS(2392), + [anon_sym_false] = ACTIONS(2392), + [anon_sym_null] = ACTIONS(2392), + [aux_sym_cmd_identifier_token3] = ACTIONS(2395), + [aux_sym_cmd_identifier_token4] = ACTIONS(2395), + [aux_sym_cmd_identifier_token5] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_DOLLAR] = ACTIONS(2401), + [anon_sym_DASH2] = ACTIONS(2404), + [anon_sym_PLUS2] = ACTIONS(2404), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2410), + [aux_sym__val_number_decimal_token1] = ACTIONS(2413), + [aux_sym__val_number_decimal_token2] = ACTIONS(2416), + [aux_sym__val_number_decimal_token3] = ACTIONS(2419), + [aux_sym__val_number_decimal_token4] = ACTIONS(2419), + [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(2425), + [anon_sym_SQUOTE] = ACTIONS(2428), + [anon_sym_BQUOTE] = ACTIONS(2431), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2434), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2440), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2443), }, - [STATE(796)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2186), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(796), + [STATE(803)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1138), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(803), [anon_sym_true] = ACTIONS(1916), [anon_sym_false] = ACTIONS(1916), [anon_sym_null] = ACTIONS(1918), @@ -107348,2937 +107863,3147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(797)] = { - [aux_sym__repeat_newline] = STATE(1037), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(797), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(798)] = { - [aux_sym__repeat_newline] = STATE(1038), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(798), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(799)] = { - [aux_sym__repeat_newline] = STATE(1039), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(799), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(800)] = { - [aux_sym__repeat_newline] = STATE(1040), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(800), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(801)] = { - [aux_sym__repeat_newline] = STATE(1041), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(801), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(802)] = { - [aux_sym__repeat_newline] = STATE(1130), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(802), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(803)] = { - [aux_sym__repeat_newline] = STATE(1044), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(803), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(804)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1151), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(686), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(804), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(805)] = { - [aux_sym__repeat_newline] = STATE(1052), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1160), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(902), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(805), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(806)] = { - [aux_sym__repeat_newline] = STATE(1053), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1164), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(928), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(806), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(807)] = { - [aux_sym__repeat_newline] = STATE(1055), - [sym__expr_parenthesized_immediate] = STATE(4746), + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1169), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(682), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(807), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(808)] = { - [sym_comment] = STATE(808), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(808)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1180), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(675), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(808), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(809)] = { - [aux_sym__repeat_newline] = STATE(1057), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(809), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2090), + [sym__newline] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_err_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_GT_PIPE] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2090), + [anon_sym_GT2] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_EQ_GT] = ACTIONS(2090), + [anon_sym_STAR2] = ACTIONS(2092), + [anon_sym_and2] = ACTIONS(2090), + [anon_sym_xor2] = ACTIONS(2090), + [anon_sym_or2] = ACTIONS(2090), + [anon_sym_not_DASHin2] = ACTIONS(2090), + [anon_sym_has2] = ACTIONS(2090), + [anon_sym_not_DASHhas2] = ACTIONS(2090), + [anon_sym_starts_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), + [anon_sym_ends_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), + [anon_sym_EQ_EQ2] = ACTIONS(2090), + [anon_sym_BANG_EQ2] = ACTIONS(2090), + [anon_sym_LT2] = ACTIONS(2092), + [anon_sym_LT_EQ2] = ACTIONS(2090), + [anon_sym_GT_EQ2] = ACTIONS(2090), + [anon_sym_EQ_TILDE2] = ACTIONS(2090), + [anon_sym_BANG_TILDE2] = ACTIONS(2090), + [anon_sym_like2] = ACTIONS(2090), + [anon_sym_not_DASHlike2] = ACTIONS(2090), + [anon_sym_STAR_STAR2] = ACTIONS(2090), + [anon_sym_PLUS_PLUS2] = ACTIONS(2090), + [anon_sym_SLASH2] = ACTIONS(2092), + [anon_sym_mod2] = ACTIONS(2090), + [anon_sym_SLASH_SLASH2] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2092), + [anon_sym_bit_DASHshl2] = ACTIONS(2090), + [anon_sym_bit_DASHshr2] = ACTIONS(2090), + [anon_sym_bit_DASHand2] = ACTIONS(2090), + [anon_sym_bit_DASHxor2] = ACTIONS(2090), + [anon_sym_bit_DASHor2] = ACTIONS(2090), + [anon_sym_err_GT] = ACTIONS(2092), + [anon_sym_out_GT] = ACTIONS(2092), + [anon_sym_e_GT] = ACTIONS(2092), + [anon_sym_o_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT] = ACTIONS(2092), + [anon_sym_err_GT_GT] = ACTIONS(2090), + [anon_sym_out_GT_GT] = ACTIONS(2090), + [anon_sym_e_GT_GT] = ACTIONS(2090), + [anon_sym_o_GT_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), [anon_sym_POUND] = ACTIONS(3), }, [STATE(810)] = { - [aux_sym__repeat_newline] = STATE(1060), - [sym__expr_parenthesized_immediate] = STATE(4746), [sym_comment] = STATE(810), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [ts_builtin_sym_end] = ACTIONS(1547), + [anon_sym_in] = ACTIONS(1547), + [sym__newline] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_err_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_GT_PIPE] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1547), + [anon_sym_GT2] = ACTIONS(1545), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_STAR2] = ACTIONS(1545), + [anon_sym_and2] = ACTIONS(1547), + [anon_sym_xor2] = ACTIONS(1547), + [anon_sym_or2] = ACTIONS(1547), + [anon_sym_not_DASHin2] = ACTIONS(1547), + [anon_sym_has2] = ACTIONS(1547), + [anon_sym_not_DASHhas2] = ACTIONS(1547), + [anon_sym_starts_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1547), + [anon_sym_ends_DASHwith2] = ACTIONS(1547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1547), + [anon_sym_EQ_EQ2] = ACTIONS(1547), + [anon_sym_BANG_EQ2] = ACTIONS(1547), + [anon_sym_LT2] = ACTIONS(1545), + [anon_sym_LT_EQ2] = ACTIONS(1547), + [anon_sym_GT_EQ2] = ACTIONS(1547), + [anon_sym_EQ_TILDE2] = ACTIONS(1547), + [anon_sym_BANG_TILDE2] = ACTIONS(1547), + [anon_sym_like2] = ACTIONS(1547), + [anon_sym_not_DASHlike2] = ACTIONS(1547), + [anon_sym_STAR_STAR2] = ACTIONS(1547), + [anon_sym_PLUS_PLUS2] = ACTIONS(1547), + [anon_sym_SLASH2] = ACTIONS(1545), + [anon_sym_mod2] = ACTIONS(1547), + [anon_sym_SLASH_SLASH2] = ACTIONS(1547), + [anon_sym_PLUS2] = ACTIONS(1545), + [anon_sym_bit_DASHshl2] = ACTIONS(1547), + [anon_sym_bit_DASHshr2] = ACTIONS(1547), + [anon_sym_bit_DASHand2] = ACTIONS(1547), + [anon_sym_bit_DASHxor2] = ACTIONS(1547), + [anon_sym_bit_DASHor2] = ACTIONS(1547), + [anon_sym_DOT_DOT2] = ACTIONS(1545), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1547), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1547), + [anon_sym_DOT2] = ACTIONS(1545), + [anon_sym_err_GT] = ACTIONS(1545), + [anon_sym_out_GT] = ACTIONS(1545), + [anon_sym_e_GT] = ACTIONS(1545), + [anon_sym_o_GT] = ACTIONS(1545), + [anon_sym_err_PLUSout_GT] = ACTIONS(1545), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1545), + [anon_sym_o_PLUSe_GT] = ACTIONS(1545), + [anon_sym_e_PLUSo_GT] = ACTIONS(1545), + [anon_sym_err_GT_GT] = ACTIONS(1547), + [anon_sym_out_GT_GT] = ACTIONS(1547), + [anon_sym_e_GT_GT] = ACTIONS(1547), + [anon_sym_o_GT_GT] = ACTIONS(1547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1547), [anon_sym_POUND] = ACTIONS(3), }, [STATE(811)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1681), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1121), - [sym__unquoted_with_expr] = STATE(1327), - [sym__unquoted_anonymous_prefix] = STATE(4499), + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1186), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(679), + [sym__unquoted_with_expr] = STATE(909), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(811), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(812)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(924), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(689), + [sym__unquoted_with_expr] = STATE(911), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(812), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(813)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1190), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(931), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(813), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(814)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1196), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(702), + [sym__unquoted_with_expr] = STATE(918), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(814), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(815)] = { + [aux_sym__repeat_newline] = STATE(3375), + [aux_sym__pipe_separator] = STATE(815), + [sym_comment] = STATE(815), + [anon_sym_export] = ACTIONS(2446), + [anon_sym_alias] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_mut] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [aux_sym_cmd_identifier_token1] = ACTIONS(2446), + [anon_sym_def] = ACTIONS(2448), + [anon_sym_use] = ACTIONS(2448), + [anon_sym_export_DASHenv] = ACTIONS(2448), + [anon_sym_extern] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_loop] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_catch] = ACTIONS(2448), + [anon_sym_match] = ACTIONS(2448), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2448), + [anon_sym_false] = ACTIONS(2448), + [anon_sym_null] = ACTIONS(2448), + [aux_sym_cmd_identifier_token3] = ACTIONS(2448), + [aux_sym_cmd_identifier_token4] = ACTIONS(2448), + [aux_sym_cmd_identifier_token5] = ACTIONS(2448), + [sym__newline] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_err_GT_PIPE] = ACTIONS(2453), + [anon_sym_out_GT_PIPE] = ACTIONS(2453), + [anon_sym_e_GT_PIPE] = ACTIONS(2453), + [anon_sym_o_GT_PIPE] = ACTIONS(2453), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2453), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2453), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2453), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2453), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_DOLLAR] = ACTIONS(2446), + [anon_sym_DASH2] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_DOT_DOT] = ACTIONS(2446), + [anon_sym_where] = ACTIONS(2448), + [aux_sym_expr_unary_token1] = ACTIONS(2448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2448), + [anon_sym_DOT_DOT_LT] = ACTIONS(2448), + [aux_sym__val_number_decimal_token1] = ACTIONS(2446), + [aux_sym__val_number_decimal_token2] = ACTIONS(2448), + [aux_sym__val_number_decimal_token3] = ACTIONS(2448), + [aux_sym__val_number_decimal_token4] = ACTIONS(2448), + [aux_sym__val_number_token1] = ACTIONS(2448), + [aux_sym__val_number_token2] = ACTIONS(2448), + [aux_sym__val_number_token3] = ACTIONS(2448), + [anon_sym_0b] = ACTIONS(2446), + [anon_sym_0o] = ACTIONS(2446), + [anon_sym_0x] = ACTIONS(2446), + [sym_val_date] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_BQUOTE] = ACTIONS(2448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2448), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2448), + }, + [STATE(816)] = { + [aux_sym__repeat_newline] = STATE(1098), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(816), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(817)] = { + [aux_sym__repeat_newline] = STATE(1099), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(817), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(818)] = { + [aux_sym__repeat_newline] = STATE(1100), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(818), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(819)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1131), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(943), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(819), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(820)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1215), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(912), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(447), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(953), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(820), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1918), + [aux_sym_cmd_identifier_token3] = ACTIONS(1920), + [aux_sym_cmd_identifier_token4] = ACTIONS(1920), + [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), + [anon_sym_DOT_DOT_LT] = ACTIONS(1924), + [aux_sym__val_number_decimal_token1] = ACTIONS(1926), + [aux_sym__val_number_decimal_token2] = ACTIONS(1928), + [aux_sym__val_number_decimal_token3] = ACTIONS(1930), + [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(821)] = { + [sym_comment] = STATE(821), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_in] = ACTIONS(2456), + [sym__newline] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_err_GT_PIPE] = ACTIONS(2456), + [anon_sym_out_GT_PIPE] = ACTIONS(2456), + [anon_sym_e_GT_PIPE] = ACTIONS(2456), + [anon_sym_o_GT_PIPE] = ACTIONS(2456), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2456), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2456), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2456), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2456), + [anon_sym_RPAREN] = ACTIONS(2456), + [anon_sym_GT2] = ACTIONS(2458), + [anon_sym_DASH2] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_EQ_GT] = ACTIONS(2456), + [anon_sym_STAR2] = ACTIONS(2458), + [anon_sym_and2] = ACTIONS(2456), + [anon_sym_xor2] = ACTIONS(2456), + [anon_sym_or2] = ACTIONS(2456), + [anon_sym_not_DASHin2] = ACTIONS(2456), + [anon_sym_has2] = ACTIONS(2456), + [anon_sym_not_DASHhas2] = ACTIONS(2456), + [anon_sym_starts_DASHwith2] = ACTIONS(2456), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2456), + [anon_sym_ends_DASHwith2] = ACTIONS(2456), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2456), + [anon_sym_EQ_EQ2] = ACTIONS(2456), + [anon_sym_BANG_EQ2] = ACTIONS(2456), + [anon_sym_LT2] = ACTIONS(2458), + [anon_sym_LT_EQ2] = ACTIONS(2456), + [anon_sym_GT_EQ2] = ACTIONS(2456), + [anon_sym_EQ_TILDE2] = ACTIONS(2456), + [anon_sym_BANG_TILDE2] = ACTIONS(2456), + [anon_sym_like2] = ACTIONS(2456), + [anon_sym_not_DASHlike2] = ACTIONS(2456), + [anon_sym_STAR_STAR2] = ACTIONS(2456), + [anon_sym_PLUS_PLUS2] = ACTIONS(2456), + [anon_sym_SLASH2] = ACTIONS(2458), + [anon_sym_mod2] = ACTIONS(2456), + [anon_sym_SLASH_SLASH2] = ACTIONS(2456), + [anon_sym_PLUS2] = ACTIONS(2458), + [anon_sym_bit_DASHshl2] = ACTIONS(2456), + [anon_sym_bit_DASHshr2] = ACTIONS(2456), + [anon_sym_bit_DASHand2] = ACTIONS(2456), + [anon_sym_bit_DASHxor2] = ACTIONS(2456), + [anon_sym_bit_DASHor2] = ACTIONS(2456), + [anon_sym_err_GT] = ACTIONS(2458), + [anon_sym_out_GT] = ACTIONS(2458), + [anon_sym_e_GT] = ACTIONS(2458), + [anon_sym_o_GT] = ACTIONS(2458), + [anon_sym_err_PLUSout_GT] = ACTIONS(2458), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2458), + [anon_sym_o_PLUSe_GT] = ACTIONS(2458), + [anon_sym_e_PLUSo_GT] = ACTIONS(2458), + [anon_sym_err_GT_GT] = ACTIONS(2456), + [anon_sym_out_GT_GT] = ACTIONS(2456), + [anon_sym_e_GT_GT] = ACTIONS(2456), + [anon_sym_o_GT_GT] = ACTIONS(2456), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2456), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2456), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2456), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2456), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(822)] = { + [sym_comment] = STATE(822), + [anon_sym_in] = ACTIONS(2186), + [sym__newline] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_err_GT_PIPE] = ACTIONS(2463), + [anon_sym_out_GT_PIPE] = ACTIONS(2463), + [anon_sym_e_GT_PIPE] = ACTIONS(2463), + [anon_sym_o_GT_PIPE] = ACTIONS(2463), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2463), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2463), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2463), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2463), + [anon_sym_RPAREN] = ACTIONS(2463), + [anon_sym_GT2] = ACTIONS(2188), + [anon_sym_DASH2] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_STAR2] = ACTIONS(2188), + [anon_sym_and2] = ACTIONS(2186), + [anon_sym_xor2] = ACTIONS(2186), + [anon_sym_or2] = ACTIONS(2186), + [anon_sym_not_DASHin2] = ACTIONS(2186), + [anon_sym_has2] = ACTIONS(2186), + [anon_sym_not_DASHhas2] = ACTIONS(2186), + [anon_sym_starts_DASHwith2] = ACTIONS(2186), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2186), + [anon_sym_ends_DASHwith2] = ACTIONS(2186), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2186), + [anon_sym_EQ_EQ2] = ACTIONS(2186), + [anon_sym_BANG_EQ2] = ACTIONS(2186), + [anon_sym_LT2] = ACTIONS(2188), + [anon_sym_LT_EQ2] = ACTIONS(2186), + [anon_sym_GT_EQ2] = ACTIONS(2186), + [anon_sym_EQ_TILDE2] = ACTIONS(2186), + [anon_sym_BANG_TILDE2] = ACTIONS(2186), + [anon_sym_like2] = ACTIONS(2186), + [anon_sym_not_DASHlike2] = ACTIONS(2186), + [anon_sym_STAR_STAR2] = ACTIONS(2186), + [anon_sym_PLUS_PLUS2] = ACTIONS(2186), + [anon_sym_SLASH2] = ACTIONS(2188), + [anon_sym_mod2] = ACTIONS(2186), + [anon_sym_SLASH_SLASH2] = ACTIONS(2186), + [anon_sym_PLUS2] = ACTIONS(2188), + [anon_sym_bit_DASHshl2] = ACTIONS(2186), + [anon_sym_bit_DASHshr2] = ACTIONS(2186), + [anon_sym_bit_DASHand2] = ACTIONS(2186), + [anon_sym_bit_DASHxor2] = ACTIONS(2186), + [anon_sym_bit_DASHor2] = ACTIONS(2186), + [anon_sym_DOT_DOT2] = ACTIONS(1617), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(2465), + [anon_sym_out_GT] = ACTIONS(2465), + [anon_sym_e_GT] = ACTIONS(2465), + [anon_sym_o_GT] = ACTIONS(2465), + [anon_sym_err_PLUSout_GT] = ACTIONS(2465), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2465), + [anon_sym_o_PLUSe_GT] = ACTIONS(2465), + [anon_sym_e_PLUSo_GT] = ACTIONS(2465), + [anon_sym_err_GT_GT] = ACTIONS(2463), + [anon_sym_out_GT_GT] = ACTIONS(2463), + [anon_sym_e_GT_GT] = ACTIONS(2463), + [anon_sym_o_GT_GT] = ACTIONS(2463), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2463), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2463), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2463), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2463), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(823)] = { + [sym_cmd_identifier] = STATE(4323), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4307), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_entry] = STATE(4592), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(823), + [aux_sym__match_pattern_record_body_repeat1] = STATE(770), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1780), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1784), + [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), + }, + [STATE(824)] = { + [aux_sym__repeat_newline] = STATE(3375), + [aux_sym__pipe_separator] = STATE(815), + [sym_comment] = STATE(824), + [anon_sym_export] = ACTIONS(2467), + [anon_sym_alias] = ACTIONS(2469), + [anon_sym_let] = ACTIONS(2469), + [anon_sym_mut] = ACTIONS(2469), + [anon_sym_const] = ACTIONS(2469), + [aux_sym_cmd_identifier_token1] = ACTIONS(2467), + [anon_sym_def] = ACTIONS(2469), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_export_DASHenv] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2469), + [anon_sym_module] = ACTIONS(2469), + [anon_sym_for] = ACTIONS(2469), + [anon_sym_loop] = ACTIONS(2469), + [anon_sym_while] = ACTIONS(2469), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_else] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2469), + [anon_sym_catch] = ACTIONS(2469), + [anon_sym_match] = ACTIONS(2469), + [anon_sym_in] = ACTIONS(2467), + [anon_sym_true] = ACTIONS(2469), + [anon_sym_false] = ACTIONS(2469), + [anon_sym_null] = ACTIONS(2469), + [aux_sym_cmd_identifier_token3] = ACTIONS(2469), + [aux_sym_cmd_identifier_token4] = ACTIONS(2469), + [aux_sym_cmd_identifier_token5] = ACTIONS(2469), + [sym__newline] = ACTIONS(2471), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_err_GT_PIPE] = ACTIONS(2180), + [anon_sym_out_GT_PIPE] = ACTIONS(2180), + [anon_sym_e_GT_PIPE] = ACTIONS(2180), + [anon_sym_o_GT_PIPE] = ACTIONS(2180), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2180), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2180), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2180), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2180), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_DOLLAR] = ACTIONS(2467), + [anon_sym_DASH2] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_DOT_DOT] = ACTIONS(2467), + [anon_sym_where] = ACTIONS(2469), + [aux_sym_expr_unary_token1] = ACTIONS(2469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2469), + [anon_sym_DOT_DOT_LT] = ACTIONS(2469), + [aux_sym__val_number_decimal_token1] = ACTIONS(2467), + [aux_sym__val_number_decimal_token2] = ACTIONS(2469), + [aux_sym__val_number_decimal_token3] = ACTIONS(2469), + [aux_sym__val_number_decimal_token4] = ACTIONS(2469), + [aux_sym__val_number_token1] = ACTIONS(2469), + [aux_sym__val_number_token2] = ACTIONS(2469), + [aux_sym__val_number_token3] = ACTIONS(2469), + [anon_sym_0b] = ACTIONS(2467), + [anon_sym_0o] = ACTIONS(2467), + [anon_sym_0x] = ACTIONS(2467), + [sym_val_date] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2469), + [anon_sym_BQUOTE] = ACTIONS(2469), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2469), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2469), + [anon_sym_CARET] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2469), + }, + [STATE(825)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1287), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(975), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(474), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1036), + [sym__unquoted_with_expr] = STATE(1288), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(825), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2274), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2278), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), + [anon_sym_DOT_DOT_LT] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2288), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(812)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1682), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [STATE(826)] = { + [aux_sym__repeat_newline] = STATE(1038), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(826), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(827)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1263), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(975), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(474), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1123), - [sym__unquoted_with_expr] = STATE(1334), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(812), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1084), + [sym__unquoted_with_expr] = STATE(1301), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(827), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2274), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2278), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), + [anon_sym_DOT_DOT_LT] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2288), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(813)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1683), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [STATE(828)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1302), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(975), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(474), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1126), - [sym__unquoted_with_expr] = STATE(1317), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(813), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1085), + [sym__unquoted_with_expr] = STATE(1303), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(828), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2274), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2278), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), + [anon_sym_DOT_DOT_LT] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2288), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(814)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1684), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [STATE(829)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1304), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(975), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(474), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(974), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(814), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1086), + [sym__unquoted_with_expr] = STATE(1305), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(829), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2274), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2278), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), + [anon_sym_DOT_DOT_LT] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2288), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(815)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1685), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [STATE(830)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1306), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(975), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(474), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1012), - [sym__unquoted_with_expr] = STATE(1307), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(815), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1102), + [sym__unquoted_with_expr] = STATE(1308), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(830), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2274), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2278), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), + [anon_sym_DOT_DOT_LT] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2288), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(816)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1686), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [STATE(831)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1309), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(975), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(474), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1071), - [sym__unquoted_with_expr] = STATE(1302), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(816), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1103), + [sym__unquoted_with_expr] = STATE(1310), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(831), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2274), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2278), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), + [anon_sym_DOT_DOT_LT] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2288), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(817)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1687), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [STATE(832)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1311), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(975), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(474), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1127), - [sym__unquoted_with_expr] = STATE(1321), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(817), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1104), + [sym__unquoted_with_expr] = STATE(1312), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(832), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2274), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2278), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), + [anon_sym_DOT_DOT_LT] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2288), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(818)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1689), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [STATE(833)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1313), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(975), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(474), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(972), - [sym__unquoted_with_expr] = STATE(1281), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(818), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1105), + [sym__unquoted_with_expr] = STATE(1314), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(833), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_null] = ACTIONS(2274), + [aux_sym_cmd_identifier_token3] = ACTIONS(2276), + [aux_sym_cmd_identifier_token4] = ACTIONS(2276), + [aux_sym_cmd_identifier_token5] = ACTIONS(2276), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2278), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2280), + [anon_sym_DOT_DOT_LT] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2282), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2288), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(819)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1282), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [STATE(834)] = { + [aux_sym__repeat_newline] = STATE(1039), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(834), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(835)] = { + [aux_sym__repeat_newline] = STATE(1040), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(835), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(836)] = { + [aux_sym__repeat_newline] = STATE(1041), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(836), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(837)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1689), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1296), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(819), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1036), + [sym__unquoted_with_expr] = STATE(1288), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(837), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2479), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2481), + [anon_sym_DOT_DOT_LT] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2483), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2489), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(820)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), + [STATE(838)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), [sym__expr_binary_expression] = STATE(1690), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1016), - [sym__unquoted_with_expr] = STATE(1301), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(820), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1037), + [sym__unquoted_with_expr] = STATE(1290), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(838), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2479), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2481), + [anon_sym_DOT_DOT_LT] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2483), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2489), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(821)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), + [STATE(839)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), [sym__expr_binary_expression] = STATE(1691), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1033), - [sym__unquoted_with_expr] = STATE(1280), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(821), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1054), + [sym__unquoted_with_expr] = STATE(1292), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(839), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2479), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2481), + [anon_sym_DOT_DOT_LT] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2483), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2489), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(822)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), + [STATE(840)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), [sym__expr_binary_expression] = STATE(1692), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1086), - [sym__unquoted_with_expr] = STATE(1345), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(822), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(968), + [sym__unquoted_with_expr] = STATE(1294), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(840), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2479), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2481), + [anon_sym_DOT_DOT_LT] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2483), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2489), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(823)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1693), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), + [STATE(841)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1695), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1128), - [sym__unquoted_with_expr] = STATE(1284), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(823), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1068), + [sym__unquoted_with_expr] = STATE(1297), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(841), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1032), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2479), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2481), + [anon_sym_DOT_DOT_LT] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2483), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2489), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(824)] = { - [aux_sym__repeat_newline] = STATE(1062), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(824), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(825)] = { - [aux_sym__repeat_newline] = STATE(1065), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(825), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(826)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4388), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(826), - [aux_sym_record_body_repeat1] = STATE(879), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(827)] = { - [aux_sym__repeat_newline] = STATE(1067), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(827), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(828)] = { - [aux_sym__repeat_newline] = STATE(1070), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(828), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(829)] = { - [aux_sym__repeat_newline] = STATE(1073), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(829), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(830)] = { - [sym_cell_path] = STATE(1320), - [sym_path] = STATE(783), - [sym_comment] = STATE(830), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1882), - [anon_sym_in] = 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_GT2] = ACTIONS(1884), - [anon_sym_DASH2] = ACTIONS(1882), - [anon_sym_STAR2] = ACTIONS(1884), - [anon_sym_and2] = ACTIONS(1882), - [anon_sym_xor2] = ACTIONS(1882), - [anon_sym_or2] = ACTIONS(1882), - [anon_sym_not_DASHin2] = ACTIONS(1882), - [anon_sym_has2] = ACTIONS(1882), - [anon_sym_not_DASHhas2] = ACTIONS(1882), - [anon_sym_starts_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), - [anon_sym_ends_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), - [anon_sym_EQ_EQ2] = ACTIONS(1882), - [anon_sym_BANG_EQ2] = ACTIONS(1882), - [anon_sym_LT2] = ACTIONS(1884), - [anon_sym_LT_EQ2] = ACTIONS(1882), - [anon_sym_GT_EQ2] = ACTIONS(1882), - [anon_sym_EQ_TILDE2] = ACTIONS(1882), - [anon_sym_BANG_TILDE2] = ACTIONS(1882), - [anon_sym_like2] = ACTIONS(1882), - [anon_sym_not_DASHlike2] = ACTIONS(1882), - [anon_sym_STAR_STAR2] = ACTIONS(1882), - [anon_sym_PLUS_PLUS2] = ACTIONS(1882), - [anon_sym_SLASH2] = ACTIONS(1884), - [anon_sym_mod2] = ACTIONS(1882), - [anon_sym_SLASH_SLASH2] = ACTIONS(1882), - [anon_sym_PLUS2] = ACTIONS(1884), - [anon_sym_bit_DASHshl2] = ACTIONS(1882), - [anon_sym_bit_DASHshr2] = ACTIONS(1882), - [anon_sym_bit_DASHand2] = ACTIONS(1882), - [anon_sym_bit_DASHxor2] = ACTIONS(1882), - [anon_sym_bit_DASHor2] = ACTIONS(1882), - [anon_sym_DOT2] = ACTIONS(2266), - [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(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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(831)] = { - [aux_sym__repeat_newline] = STATE(1078), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(831), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(842)] = { + [sym_comment] = STATE(842), + [ts_builtin_sym_end] = ACTIONS(1551), + [anon_sym_in] = ACTIONS(1551), + [sym__newline] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1551), + [anon_sym_err_GT_PIPE] = ACTIONS(1551), + [anon_sym_out_GT_PIPE] = ACTIONS(1551), + [anon_sym_e_GT_PIPE] = ACTIONS(1551), + [anon_sym_o_GT_PIPE] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1551), + [anon_sym_GT2] = ACTIONS(1549), + [anon_sym_DASH2] = ACTIONS(1551), + [anon_sym_STAR2] = ACTIONS(1549), + [anon_sym_and2] = ACTIONS(1551), + [anon_sym_xor2] = ACTIONS(1551), + [anon_sym_or2] = ACTIONS(1551), + [anon_sym_not_DASHin2] = ACTIONS(1551), + [anon_sym_has2] = ACTIONS(1551), + [anon_sym_not_DASHhas2] = ACTIONS(1551), + [anon_sym_starts_DASHwith2] = ACTIONS(1551), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1551), + [anon_sym_ends_DASHwith2] = ACTIONS(1551), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1551), + [anon_sym_EQ_EQ2] = ACTIONS(1551), + [anon_sym_BANG_EQ2] = ACTIONS(1551), + [anon_sym_LT2] = ACTIONS(1549), + [anon_sym_LT_EQ2] = ACTIONS(1551), + [anon_sym_GT_EQ2] = ACTIONS(1551), + [anon_sym_EQ_TILDE2] = ACTIONS(1551), + [anon_sym_BANG_TILDE2] = ACTIONS(1551), + [anon_sym_like2] = ACTIONS(1551), + [anon_sym_not_DASHlike2] = ACTIONS(1551), + [anon_sym_STAR_STAR2] = ACTIONS(1551), + [anon_sym_PLUS_PLUS2] = ACTIONS(1551), + [anon_sym_SLASH2] = ACTIONS(1549), + [anon_sym_mod2] = ACTIONS(1551), + [anon_sym_SLASH_SLASH2] = ACTIONS(1551), + [anon_sym_PLUS2] = ACTIONS(1549), + [anon_sym_bit_DASHshl2] = ACTIONS(1551), + [anon_sym_bit_DASHshr2] = ACTIONS(1551), + [anon_sym_bit_DASHand2] = ACTIONS(1551), + [anon_sym_bit_DASHxor2] = ACTIONS(1551), + [anon_sym_bit_DASHor2] = ACTIONS(1551), + [anon_sym_DOT_DOT2] = ACTIONS(1549), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1551), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1551), + [anon_sym_DOT2] = ACTIONS(1549), + [anon_sym_err_GT] = ACTIONS(1549), + [anon_sym_out_GT] = ACTIONS(1549), + [anon_sym_e_GT] = ACTIONS(1549), + [anon_sym_o_GT] = ACTIONS(1549), + [anon_sym_err_PLUSout_GT] = ACTIONS(1549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1549), + [anon_sym_o_PLUSe_GT] = ACTIONS(1549), + [anon_sym_e_PLUSo_GT] = ACTIONS(1549), + [anon_sym_err_GT_GT] = ACTIONS(1551), + [anon_sym_out_GT_GT] = ACTIONS(1551), + [anon_sym_e_GT_GT] = ACTIONS(1551), + [anon_sym_o_GT_GT] = ACTIONS(1551), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1551), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1551), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1551), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1551), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(832)] = { - [aux_sym__repeat_newline] = STATE(1080), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(832), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(843)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1696), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1077), + [sym__unquoted_with_expr] = STATE(1299), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(843), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2479), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2481), + [anon_sym_DOT_DOT_LT] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2483), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(833)] = { - [aux_sym__repeat_newline] = STATE(1082), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(833), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(844)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1680), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1084), + [sym__unquoted_with_expr] = STATE(1301), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(844), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2479), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2481), + [anon_sym_DOT_DOT_LT] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2483), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(834)] = { - [aux_sym__repeat_newline] = STATE(1085), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(834), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(845)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1697), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1085), + [sym__unquoted_with_expr] = STATE(1303), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(845), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2479), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2481), + [anon_sym_DOT_DOT_LT] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2483), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(835)] = { - [aux_sym__repeat_newline] = STATE(1088), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(835), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(846)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1304), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1086), + [sym__unquoted_with_expr] = STATE(1305), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(846), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2479), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2481), + [anon_sym_DOT_DOT_LT] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2483), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(836)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4235), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4578), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(836), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [STATE(847)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1643), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(712), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(847), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1914), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(837)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4581), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4758), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(837), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), - [anon_sym_export] = ACTIONS(2335), - [anon_sym_alias] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_mut] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [aux_sym_cmd_identifier_token1] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2338), - [anon_sym_use] = ACTIONS(2338), - [anon_sym_export_DASHenv] = ACTIONS(2338), - [anon_sym_extern] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_loop] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_catch] = ACTIONS(2338), - [anon_sym_match] = ACTIONS(2338), - [anon_sym_in] = ACTIONS(2335), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [anon_sym_null] = ACTIONS(2344), - [aux_sym_cmd_identifier_token3] = ACTIONS(2347), - [aux_sym_cmd_identifier_token4] = ACTIONS(2347), - [aux_sym_cmd_identifier_token5] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_DASH2] = ACTIONS(2356), - [anon_sym_PLUS2] = ACTIONS(2356), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2362), - [aux_sym__val_number_decimal_token1] = ACTIONS(2365), - [aux_sym__val_number_decimal_token2] = ACTIONS(2368), - [aux_sym__val_number_decimal_token3] = ACTIONS(2371), - [aux_sym__val_number_decimal_token4] = ACTIONS(2371), - [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(2377), - [anon_sym_SQUOTE] = ACTIONS(2380), - [anon_sym_BQUOTE] = ACTIONS(2383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2386), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2395), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(838)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2212), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(838), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(848)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1644), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(848), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110288,67 +111013,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(839)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2137), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(839), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(849)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1645), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(686), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(849), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110358,67 +111083,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(840)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2138), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), + [STATE(850)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1646), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(690), [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(840), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(850), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110428,67 +111153,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(841)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2139), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(841), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(851)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1647), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(928), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(851), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110498,67 +111223,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(842)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2140), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [STATE(852)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1648), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(842), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(852), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110568,67 +111293,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(843)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2141), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(843), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(853)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1649), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(675), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(853), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110638,67 +111363,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(844)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2142), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(844), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(854)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1650), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(679), + [sym__unquoted_with_expr] = STATE(909), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(854), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110708,67 +111433,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(845)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2143), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), + [STATE(855)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(924), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(689), [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(845), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(855), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110778,67 +111503,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(846)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(846), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(856)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1651), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(931), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(856), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110848,67 +111573,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(847)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2144), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(847), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(857)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1652), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(702), + [sym__unquoted_with_expr] = STATE(918), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(857), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110918,67 +111643,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(848)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2145), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(848), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(858)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1653), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(943), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(858), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110988,67 +111713,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(849)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2146), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(849), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [STATE(859)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(1654), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1478), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1409), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(953), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(859), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1962), + [aux_sym_cmd_identifier_token4] = ACTIONS(1962), + [aux_sym_cmd_identifier_token5] = ACTIONS(1962), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1966), + [anon_sym_DOT_DOT_LT] = ACTIONS(1966), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1972), + [aux_sym__val_number_decimal_token4] = ACTIONS(1972), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(1974), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -111058,1091 +111783,1231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(850)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2147), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(850), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [STATE(860)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1682), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1102), + [sym__unquoted_with_expr] = STATE(1308), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(860), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2479), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2481), + [anon_sym_DOT_DOT_LT] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2483), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(851)] = { - [aux_sym__repeat_newline] = STATE(1091), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(851), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(861)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1684), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1103), + [sym__unquoted_with_expr] = STATE(1310), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(861), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2479), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2481), + [anon_sym_DOT_DOT_LT] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2483), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(852)] = { - [aux_sym__repeat_newline] = STATE(1092), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(852), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(862)] = { + [sym_cell_path] = STATE(1339), + [sym_path] = STATE(842), + [sym_comment] = STATE(862), + [aux_sym__where_predicate_lhs_repeat1] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(1840), + [anon_sym_in] = ACTIONS(1840), + [sym__newline] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1840), + [anon_sym_err_GT_PIPE] = ACTIONS(1840), + [anon_sym_out_GT_PIPE] = ACTIONS(1840), + [anon_sym_e_GT_PIPE] = ACTIONS(1840), + [anon_sym_o_GT_PIPE] = ACTIONS(1840), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1840), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1840), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1840), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1840), + [anon_sym_GT2] = ACTIONS(1842), + [anon_sym_DASH2] = ACTIONS(1840), + [anon_sym_STAR2] = ACTIONS(1842), + [anon_sym_and2] = ACTIONS(1840), + [anon_sym_xor2] = ACTIONS(1840), + [anon_sym_or2] = ACTIONS(1840), + [anon_sym_not_DASHin2] = ACTIONS(1840), + [anon_sym_has2] = ACTIONS(1840), + [anon_sym_not_DASHhas2] = ACTIONS(1840), + [anon_sym_starts_DASHwith2] = ACTIONS(1840), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1840), + [anon_sym_ends_DASHwith2] = ACTIONS(1840), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1840), + [anon_sym_EQ_EQ2] = ACTIONS(1840), + [anon_sym_BANG_EQ2] = ACTIONS(1840), + [anon_sym_LT2] = ACTIONS(1842), + [anon_sym_LT_EQ2] = ACTIONS(1840), + [anon_sym_GT_EQ2] = ACTIONS(1840), + [anon_sym_EQ_TILDE2] = ACTIONS(1840), + [anon_sym_BANG_TILDE2] = ACTIONS(1840), + [anon_sym_like2] = ACTIONS(1840), + [anon_sym_not_DASHlike2] = ACTIONS(1840), + [anon_sym_STAR_STAR2] = ACTIONS(1840), + [anon_sym_PLUS_PLUS2] = ACTIONS(1840), + [anon_sym_SLASH2] = ACTIONS(1842), + [anon_sym_mod2] = ACTIONS(1840), + [anon_sym_SLASH_SLASH2] = ACTIONS(1840), + [anon_sym_PLUS2] = ACTIONS(1842), + [anon_sym_bit_DASHshl2] = ACTIONS(1840), + [anon_sym_bit_DASHshr2] = ACTIONS(1840), + [anon_sym_bit_DASHand2] = ACTIONS(1840), + [anon_sym_bit_DASHxor2] = ACTIONS(1840), + [anon_sym_bit_DASHor2] = ACTIONS(1840), + [anon_sym_DOT2] = ACTIONS(2381), + [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(1840), + [anon_sym_out_GT_GT] = ACTIONS(1840), + [anon_sym_e_GT_GT] = ACTIONS(1840), + [anon_sym_o_GT_GT] = ACTIONS(1840), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1840), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1840), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1840), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1840), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(853)] = { - [aux_sym__repeat_newline] = STATE(1093), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(853), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(863)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1685), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1104), + [sym__unquoted_with_expr] = STATE(1312), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(863), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2479), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2481), + [anon_sym_DOT_DOT_LT] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2483), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(854)] = { - [aux_sym__repeat_newline] = STATE(1094), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(854), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(864)] = { + [sym_expr_unary] = STATE(1286), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_binary] = STATE(1286), + [sym__expr_binary_expression] = STATE(1687), + [sym_expr_parenthesized] = STATE(934), + [sym_val_range] = STATE(1286), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(1286), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(1510), + [sym_val_variable] = STATE(914), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(1413), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(1105), + [sym__unquoted_with_expr] = STATE(1314), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(864), + [anon_sym_true] = ACTIONS(2473), + [anon_sym_false] = ACTIONS(2473), + [anon_sym_null] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2479), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2481), + [anon_sym_DOT_DOT_LT] = ACTIONS(2481), + [aux_sym__val_number_decimal_token1] = ACTIONS(2483), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(855)] = { - [aux_sym__repeat_newline] = STATE(1095), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(855), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(865)] = { + [sym_cell_path] = STATE(1324), + [sym_path] = STATE(842), + [sym_comment] = STATE(865), + [aux_sym__where_predicate_lhs_repeat1] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(1870), + [anon_sym_in] = 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_GT2] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1870), + [anon_sym_STAR2] = ACTIONS(1872), + [anon_sym_and2] = ACTIONS(1870), + [anon_sym_xor2] = ACTIONS(1870), + [anon_sym_or2] = ACTIONS(1870), + [anon_sym_not_DASHin2] = ACTIONS(1870), + [anon_sym_has2] = ACTIONS(1870), + [anon_sym_not_DASHhas2] = ACTIONS(1870), + [anon_sym_starts_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), + [anon_sym_ends_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), + [anon_sym_EQ_EQ2] = ACTIONS(1870), + [anon_sym_BANG_EQ2] = ACTIONS(1870), + [anon_sym_LT2] = ACTIONS(1872), + [anon_sym_LT_EQ2] = ACTIONS(1870), + [anon_sym_GT_EQ2] = ACTIONS(1870), + [anon_sym_EQ_TILDE2] = ACTIONS(1870), + [anon_sym_BANG_TILDE2] = ACTIONS(1870), + [anon_sym_like2] = ACTIONS(1870), + [anon_sym_not_DASHlike2] = ACTIONS(1870), + [anon_sym_STAR_STAR2] = ACTIONS(1870), + [anon_sym_PLUS_PLUS2] = ACTIONS(1870), + [anon_sym_SLASH2] = ACTIONS(1872), + [anon_sym_mod2] = ACTIONS(1870), + [anon_sym_SLASH_SLASH2] = ACTIONS(1870), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_bit_DASHshl2] = ACTIONS(1870), + [anon_sym_bit_DASHshr2] = ACTIONS(1870), + [anon_sym_bit_DASHand2] = ACTIONS(1870), + [anon_sym_bit_DASHxor2] = ACTIONS(1870), + [anon_sym_bit_DASHor2] = ACTIONS(1870), + [anon_sym_DOT2] = ACTIONS(2381), + [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(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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(856)] = { - [aux_sym__repeat_newline] = STATE(1096), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(856), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(866)] = { + [sym_cell_path] = STATE(1325), + [sym_path] = STATE(842), + [sym_comment] = STATE(866), + [aux_sym__where_predicate_lhs_repeat1] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(1878), + [anon_sym_in] = 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_GT2] = ACTIONS(1880), + [anon_sym_DASH2] = ACTIONS(1878), + [anon_sym_STAR2] = ACTIONS(1880), + [anon_sym_and2] = ACTIONS(1878), + [anon_sym_xor2] = ACTIONS(1878), + [anon_sym_or2] = ACTIONS(1878), + [anon_sym_not_DASHin2] = ACTIONS(1878), + [anon_sym_has2] = ACTIONS(1878), + [anon_sym_not_DASHhas2] = ACTIONS(1878), + [anon_sym_starts_DASHwith2] = ACTIONS(1878), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1878), + [anon_sym_ends_DASHwith2] = ACTIONS(1878), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1878), + [anon_sym_EQ_EQ2] = ACTIONS(1878), + [anon_sym_BANG_EQ2] = ACTIONS(1878), + [anon_sym_LT2] = ACTIONS(1880), + [anon_sym_LT_EQ2] = ACTIONS(1878), + [anon_sym_GT_EQ2] = ACTIONS(1878), + [anon_sym_EQ_TILDE2] = ACTIONS(1878), + [anon_sym_BANG_TILDE2] = ACTIONS(1878), + [anon_sym_like2] = ACTIONS(1878), + [anon_sym_not_DASHlike2] = ACTIONS(1878), + [anon_sym_STAR_STAR2] = ACTIONS(1878), + [anon_sym_PLUS_PLUS2] = ACTIONS(1878), + [anon_sym_SLASH2] = ACTIONS(1880), + [anon_sym_mod2] = ACTIONS(1878), + [anon_sym_SLASH_SLASH2] = ACTIONS(1878), + [anon_sym_PLUS2] = ACTIONS(1880), + [anon_sym_bit_DASHshl2] = ACTIONS(1878), + [anon_sym_bit_DASHshr2] = ACTIONS(1878), + [anon_sym_bit_DASHand2] = ACTIONS(1878), + [anon_sym_bit_DASHxor2] = ACTIONS(1878), + [anon_sym_bit_DASHor2] = ACTIONS(1878), + [anon_sym_DOT2] = ACTIONS(2381), + [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(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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(857)] = { - [aux_sym__repeat_newline] = STATE(1097), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(857), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(867)] = { + [sym_comment] = STATE(867), + [anon_sym_in] = ACTIONS(2491), + [sym__newline] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_err_GT_PIPE] = ACTIONS(2491), + [anon_sym_out_GT_PIPE] = ACTIONS(2491), + [anon_sym_e_GT_PIPE] = ACTIONS(2491), + [anon_sym_o_GT_PIPE] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2491), + [anon_sym_RPAREN] = ACTIONS(2491), + [anon_sym_GT2] = ACTIONS(2493), + [anon_sym_DASH2] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_STAR2] = ACTIONS(2493), + [anon_sym_and2] = ACTIONS(2491), + [anon_sym_xor2] = ACTIONS(2491), + [anon_sym_or2] = ACTIONS(2491), + [anon_sym_not_DASHin2] = ACTIONS(2491), + [anon_sym_has2] = ACTIONS(2491), + [anon_sym_not_DASHhas2] = ACTIONS(2491), + [anon_sym_starts_DASHwith2] = ACTIONS(2491), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2491), + [anon_sym_ends_DASHwith2] = ACTIONS(2491), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2491), + [anon_sym_EQ_EQ2] = ACTIONS(2491), + [anon_sym_BANG_EQ2] = ACTIONS(2491), + [anon_sym_LT2] = ACTIONS(2493), + [anon_sym_LT_EQ2] = ACTIONS(2491), + [anon_sym_GT_EQ2] = ACTIONS(2491), + [anon_sym_EQ_TILDE2] = ACTIONS(2491), + [anon_sym_BANG_TILDE2] = ACTIONS(2491), + [anon_sym_like2] = ACTIONS(2491), + [anon_sym_not_DASHlike2] = ACTIONS(2491), + [anon_sym_LPAREN2] = ACTIONS(2491), + [anon_sym_STAR_STAR2] = ACTIONS(2491), + [anon_sym_PLUS_PLUS2] = ACTIONS(2491), + [anon_sym_SLASH2] = ACTIONS(2493), + [anon_sym_mod2] = ACTIONS(2491), + [anon_sym_SLASH_SLASH2] = ACTIONS(2491), + [anon_sym_PLUS2] = ACTIONS(2493), + [anon_sym_bit_DASHshl2] = ACTIONS(2491), + [anon_sym_bit_DASHshr2] = ACTIONS(2491), + [anon_sym_bit_DASHand2] = ACTIONS(2491), + [anon_sym_bit_DASHxor2] = ACTIONS(2491), + [anon_sym_bit_DASHor2] = ACTIONS(2491), + [anon_sym_err_GT] = ACTIONS(2493), + [anon_sym_out_GT] = ACTIONS(2493), + [anon_sym_e_GT] = ACTIONS(2493), + [anon_sym_o_GT] = ACTIONS(2493), + [anon_sym_err_PLUSout_GT] = ACTIONS(2493), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2493), + [anon_sym_o_PLUSe_GT] = ACTIONS(2493), + [anon_sym_e_PLUSo_GT] = ACTIONS(2493), + [anon_sym_err_GT_GT] = ACTIONS(2491), + [anon_sym_out_GT_GT] = ACTIONS(2491), + [anon_sym_e_GT_GT] = ACTIONS(2491), + [anon_sym_o_GT_GT] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2491), + [sym__unquoted_pattern] = ACTIONS(2493), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(858)] = { - [aux_sym__repeat_newline] = STATE(1098), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(858), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(868)] = { + [sym_cell_path] = STATE(1266), + [sym_path] = STATE(842), + [sym_comment] = STATE(868), + [aux_sym__where_predicate_lhs_repeat1] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(1886), + [anon_sym_in] = 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_GT2] = ACTIONS(1888), + [anon_sym_DASH2] = ACTIONS(1886), + [anon_sym_STAR2] = ACTIONS(1888), + [anon_sym_and2] = ACTIONS(1886), + [anon_sym_xor2] = ACTIONS(1886), + [anon_sym_or2] = ACTIONS(1886), + [anon_sym_not_DASHin2] = ACTIONS(1886), + [anon_sym_has2] = ACTIONS(1886), + [anon_sym_not_DASHhas2] = ACTIONS(1886), + [anon_sym_starts_DASHwith2] = ACTIONS(1886), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1886), + [anon_sym_ends_DASHwith2] = ACTIONS(1886), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1886), + [anon_sym_EQ_EQ2] = ACTIONS(1886), + [anon_sym_BANG_EQ2] = ACTIONS(1886), + [anon_sym_LT2] = ACTIONS(1888), + [anon_sym_LT_EQ2] = ACTIONS(1886), + [anon_sym_GT_EQ2] = ACTIONS(1886), + [anon_sym_EQ_TILDE2] = ACTIONS(1886), + [anon_sym_BANG_TILDE2] = ACTIONS(1886), + [anon_sym_like2] = ACTIONS(1886), + [anon_sym_not_DASHlike2] = ACTIONS(1886), + [anon_sym_STAR_STAR2] = ACTIONS(1886), + [anon_sym_PLUS_PLUS2] = ACTIONS(1886), + [anon_sym_SLASH2] = ACTIONS(1888), + [anon_sym_mod2] = ACTIONS(1886), + [anon_sym_SLASH_SLASH2] = ACTIONS(1886), + [anon_sym_PLUS2] = ACTIONS(1888), + [anon_sym_bit_DASHshl2] = ACTIONS(1886), + [anon_sym_bit_DASHshr2] = ACTIONS(1886), + [anon_sym_bit_DASHand2] = ACTIONS(1886), + [anon_sym_bit_DASHxor2] = ACTIONS(1886), + [anon_sym_bit_DASHor2] = ACTIONS(1886), + [anon_sym_DOT2] = ACTIONS(2381), + [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(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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(859)] = { - [aux_sym__repeat_newline] = STATE(1100), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(859), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(869)] = { + [sym_comment] = STATE(869), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_in] = ACTIONS(2495), + [sym__newline] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_PIPE] = ACTIONS(2495), + [anon_sym_err_GT_PIPE] = ACTIONS(2495), + [anon_sym_out_GT_PIPE] = ACTIONS(2495), + [anon_sym_e_GT_PIPE] = ACTIONS(2495), + [anon_sym_o_GT_PIPE] = ACTIONS(2495), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2495), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2495), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2495), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2495), + [anon_sym_RPAREN] = ACTIONS(2495), + [anon_sym_GT2] = ACTIONS(2497), + [anon_sym_DASH2] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_EQ_GT] = ACTIONS(2495), + [anon_sym_STAR2] = ACTIONS(2497), + [anon_sym_and2] = ACTIONS(2495), + [anon_sym_xor2] = ACTIONS(2495), + [anon_sym_or2] = ACTIONS(2495), + [anon_sym_not_DASHin2] = ACTIONS(2495), + [anon_sym_has2] = ACTIONS(2495), + [anon_sym_not_DASHhas2] = ACTIONS(2495), + [anon_sym_starts_DASHwith2] = ACTIONS(2495), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2495), + [anon_sym_ends_DASHwith2] = ACTIONS(2495), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2495), + [anon_sym_EQ_EQ2] = ACTIONS(2495), + [anon_sym_BANG_EQ2] = ACTIONS(2495), + [anon_sym_LT2] = ACTIONS(2497), + [anon_sym_LT_EQ2] = ACTIONS(2495), + [anon_sym_GT_EQ2] = ACTIONS(2495), + [anon_sym_EQ_TILDE2] = ACTIONS(2495), + [anon_sym_BANG_TILDE2] = ACTIONS(2495), + [anon_sym_like2] = ACTIONS(2495), + [anon_sym_not_DASHlike2] = ACTIONS(2495), + [anon_sym_STAR_STAR2] = ACTIONS(2495), + [anon_sym_PLUS_PLUS2] = ACTIONS(2495), + [anon_sym_SLASH2] = ACTIONS(2497), + [anon_sym_mod2] = ACTIONS(2495), + [anon_sym_SLASH_SLASH2] = ACTIONS(2495), + [anon_sym_PLUS2] = ACTIONS(2497), + [anon_sym_bit_DASHshl2] = ACTIONS(2495), + [anon_sym_bit_DASHshr2] = ACTIONS(2495), + [anon_sym_bit_DASHand2] = ACTIONS(2495), + [anon_sym_bit_DASHxor2] = ACTIONS(2495), + [anon_sym_bit_DASHor2] = ACTIONS(2495), + [anon_sym_err_GT] = ACTIONS(2497), + [anon_sym_out_GT] = ACTIONS(2497), + [anon_sym_e_GT] = ACTIONS(2497), + [anon_sym_o_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT] = ACTIONS(2497), + [anon_sym_err_GT_GT] = ACTIONS(2495), + [anon_sym_out_GT_GT] = ACTIONS(2495), + [anon_sym_e_GT_GT] = ACTIONS(2495), + [anon_sym_o_GT_GT] = ACTIONS(2495), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2495), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2495), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2495), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2495), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(860)] = { - [aux_sym__repeat_newline] = STATE(1101), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(860), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(870)] = { + [sym_comment] = STATE(870), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_EQ_GT] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_COLON2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(861)] = { - [aux_sym__repeat_newline] = STATE(1102), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(861), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(871)] = { + [sym_comment] = STATE(871), + [anon_sym_in] = ACTIONS(2503), + [sym__newline] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_PIPE] = ACTIONS(2503), + [anon_sym_err_GT_PIPE] = ACTIONS(2503), + [anon_sym_out_GT_PIPE] = ACTIONS(2503), + [anon_sym_e_GT_PIPE] = ACTIONS(2503), + [anon_sym_o_GT_PIPE] = ACTIONS(2503), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2503), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2503), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2503), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2503), + [anon_sym_RPAREN] = ACTIONS(2503), + [anon_sym_GT2] = ACTIONS(2505), + [anon_sym_DASH2] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_EQ_GT] = ACTIONS(2503), + [anon_sym_STAR2] = ACTIONS(2505), + [anon_sym_and2] = ACTIONS(2503), + [anon_sym_xor2] = ACTIONS(2503), + [anon_sym_or2] = ACTIONS(2503), + [anon_sym_not_DASHin2] = ACTIONS(2503), + [anon_sym_has2] = ACTIONS(2503), + [anon_sym_not_DASHhas2] = ACTIONS(2503), + [anon_sym_starts_DASHwith2] = ACTIONS(2503), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), + [anon_sym_ends_DASHwith2] = ACTIONS(2503), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), + [anon_sym_EQ_EQ2] = ACTIONS(2503), + [anon_sym_BANG_EQ2] = ACTIONS(2503), + [anon_sym_LT2] = ACTIONS(2505), + [anon_sym_LT_EQ2] = ACTIONS(2503), + [anon_sym_GT_EQ2] = ACTIONS(2503), + [anon_sym_EQ_TILDE2] = ACTIONS(2503), + [anon_sym_BANG_TILDE2] = ACTIONS(2503), + [anon_sym_like2] = ACTIONS(2503), + [anon_sym_not_DASHlike2] = ACTIONS(2503), + [anon_sym_STAR_STAR2] = ACTIONS(2503), + [anon_sym_PLUS_PLUS2] = ACTIONS(2503), + [anon_sym_SLASH2] = ACTIONS(2505), + [anon_sym_mod2] = ACTIONS(2503), + [anon_sym_SLASH_SLASH2] = ACTIONS(2503), + [anon_sym_PLUS2] = ACTIONS(2505), + [anon_sym_bit_DASHshl2] = ACTIONS(2503), + [anon_sym_bit_DASHshr2] = ACTIONS(2503), + [anon_sym_bit_DASHand2] = ACTIONS(2503), + [anon_sym_bit_DASHxor2] = ACTIONS(2503), + [anon_sym_bit_DASHor2] = ACTIONS(2503), + [anon_sym_COLON2] = ACTIONS(2503), + [anon_sym_err_GT] = ACTIONS(2505), + [anon_sym_out_GT] = ACTIONS(2505), + [anon_sym_e_GT] = ACTIONS(2505), + [anon_sym_o_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT] = ACTIONS(2505), + [anon_sym_err_GT_GT] = ACTIONS(2503), + [anon_sym_out_GT_GT] = ACTIONS(2503), + [anon_sym_e_GT_GT] = ACTIONS(2503), + [anon_sym_o_GT_GT] = ACTIONS(2503), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2503), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2503), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2503), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2503), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(862)] = { - [aux_sym__repeat_newline] = STATE(1106), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(862), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(872)] = { + [sym_comment] = STATE(872), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_in] = ACTIONS(2146), + [sym__newline] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_err_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_GT_PIPE] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), + [anon_sym_RPAREN] = ACTIONS(2146), + [anon_sym_GT2] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2146), + [anon_sym_EQ_GT] = ACTIONS(2146), + [anon_sym_STAR2] = ACTIONS(2148), + [anon_sym_and2] = ACTIONS(2146), + [anon_sym_xor2] = ACTIONS(2146), + [anon_sym_or2] = ACTIONS(2146), + [anon_sym_not_DASHin2] = ACTIONS(2146), + [anon_sym_has2] = ACTIONS(2146), + [anon_sym_not_DASHhas2] = ACTIONS(2146), + [anon_sym_starts_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2146), + [anon_sym_ends_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2146), + [anon_sym_EQ_EQ2] = ACTIONS(2146), + [anon_sym_BANG_EQ2] = ACTIONS(2146), + [anon_sym_LT2] = ACTIONS(2148), + [anon_sym_LT_EQ2] = ACTIONS(2146), + [anon_sym_GT_EQ2] = ACTIONS(2146), + [anon_sym_EQ_TILDE2] = ACTIONS(2146), + [anon_sym_BANG_TILDE2] = ACTIONS(2146), + [anon_sym_like2] = ACTIONS(2146), + [anon_sym_not_DASHlike2] = ACTIONS(2146), + [anon_sym_STAR_STAR2] = ACTIONS(2146), + [anon_sym_PLUS_PLUS2] = ACTIONS(2146), + [anon_sym_SLASH2] = ACTIONS(2148), + [anon_sym_mod2] = ACTIONS(2146), + [anon_sym_SLASH_SLASH2] = ACTIONS(2146), + [anon_sym_PLUS2] = ACTIONS(2148), + [anon_sym_bit_DASHshl2] = ACTIONS(2146), + [anon_sym_bit_DASHshr2] = ACTIONS(2146), + [anon_sym_bit_DASHand2] = ACTIONS(2146), + [anon_sym_bit_DASHxor2] = ACTIONS(2146), + [anon_sym_bit_DASHor2] = ACTIONS(2146), + [anon_sym_err_GT] = ACTIONS(2148), + [anon_sym_out_GT] = ACTIONS(2148), + [anon_sym_e_GT] = ACTIONS(2148), + [anon_sym_o_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT] = ACTIONS(2148), + [anon_sym_err_GT_GT] = ACTIONS(2146), + [anon_sym_out_GT_GT] = ACTIONS(2146), + [anon_sym_e_GT_GT] = ACTIONS(2146), + [anon_sym_o_GT_GT] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2146), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(863)] = { - [aux_sym__repeat_newline] = STATE(1107), - [sym__expr_parenthesized_immediate] = STATE(4746), - [sym_comment] = STATE(863), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(873)] = { + [sym_comment] = STATE(873), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_in] = ACTIONS(2166), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2168), + [anon_sym_DASH2] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(2166), + [anon_sym_STAR2] = ACTIONS(2168), + [anon_sym_and2] = ACTIONS(2166), + [anon_sym_xor2] = ACTIONS(2166), + [anon_sym_or2] = ACTIONS(2166), + [anon_sym_not_DASHin2] = ACTIONS(2166), + [anon_sym_has2] = ACTIONS(2166), + [anon_sym_not_DASHhas2] = ACTIONS(2166), + [anon_sym_starts_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2166), + [anon_sym_ends_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2166), + [anon_sym_EQ_EQ2] = ACTIONS(2166), + [anon_sym_BANG_EQ2] = ACTIONS(2166), + [anon_sym_LT2] = ACTIONS(2168), + [anon_sym_LT_EQ2] = ACTIONS(2166), + [anon_sym_GT_EQ2] = ACTIONS(2166), + [anon_sym_EQ_TILDE2] = ACTIONS(2166), + [anon_sym_BANG_TILDE2] = ACTIONS(2166), + [anon_sym_like2] = ACTIONS(2166), + [anon_sym_not_DASHlike2] = ACTIONS(2166), + [anon_sym_STAR_STAR2] = ACTIONS(2166), + [anon_sym_PLUS_PLUS2] = ACTIONS(2166), + [anon_sym_SLASH2] = ACTIONS(2168), + [anon_sym_mod2] = ACTIONS(2166), + [anon_sym_SLASH_SLASH2] = ACTIONS(2166), + [anon_sym_PLUS2] = ACTIONS(2168), + [anon_sym_bit_DASHshl2] = ACTIONS(2166), + [anon_sym_bit_DASHshr2] = ACTIONS(2166), + [anon_sym_bit_DASHand2] = ACTIONS(2166), + [anon_sym_bit_DASHxor2] = ACTIONS(2166), + [anon_sym_bit_DASHor2] = ACTIONS(2166), + [anon_sym_err_GT] = ACTIONS(2168), + [anon_sym_out_GT] = ACTIONS(2168), + [anon_sym_e_GT] = ACTIONS(2168), + [anon_sym_o_GT] = ACTIONS(2168), + [anon_sym_err_PLUSout_GT] = ACTIONS(2168), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), + [anon_sym_o_PLUSe_GT] = ACTIONS(2168), + [anon_sym_e_PLUSo_GT] = ACTIONS(2168), + [anon_sym_err_GT_GT] = ACTIONS(2166), + [anon_sym_out_GT_GT] = ACTIONS(2166), + [anon_sym_e_GT_GT] = ACTIONS(2166), + [anon_sym_o_GT_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(864)] = { - [sym_cell_path] = STATE(1274), - [sym_path] = STATE(783), - [sym_comment] = STATE(864), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1866), - [anon_sym_in] = 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_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT2] = ACTIONS(2266), - [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(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), + [STATE(874)] = { + [sym_comment] = STATE(874), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_err_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_GT_PIPE] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_GT2] = ACTIONS(2120), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_EQ_GT] = ACTIONS(2118), + [anon_sym_STAR2] = ACTIONS(2120), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2120), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2120), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2120), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_err_GT] = ACTIONS(2120), + [anon_sym_out_GT] = ACTIONS(2120), + [anon_sym_e_GT] = ACTIONS(2120), + [anon_sym_o_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT] = ACTIONS(2120), + [anon_sym_err_GT_GT] = ACTIONS(2118), + [anon_sym_out_GT_GT] = ACTIONS(2118), + [anon_sym_e_GT_GT] = ACTIONS(2118), + [anon_sym_o_GT_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2118), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(865)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1665), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(865), + [STATE(875)] = { + [sym_comment] = STATE(875), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_in] = ACTIONS(1726), + [sym__newline] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_err_GT_PIPE] = ACTIONS(1726), + [anon_sym_out_GT_PIPE] = ACTIONS(1726), + [anon_sym_e_GT_PIPE] = ACTIONS(1726), + [anon_sym_o_GT_PIPE] = ACTIONS(1726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), + [anon_sym_GT2] = ACTIONS(1728), + [anon_sym_DASH2] = ACTIONS(1726), + [anon_sym_STAR2] = ACTIONS(1728), + [anon_sym_and2] = ACTIONS(1726), + [anon_sym_xor2] = ACTIONS(1726), + [anon_sym_or2] = ACTIONS(1726), + [anon_sym_not_DASHin2] = ACTIONS(1726), + [anon_sym_has2] = ACTIONS(1726), + [anon_sym_not_DASHhas2] = ACTIONS(1726), + [anon_sym_starts_DASHwith2] = ACTIONS(1726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), + [anon_sym_ends_DASHwith2] = ACTIONS(1726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), + [anon_sym_EQ_EQ2] = ACTIONS(1726), + [anon_sym_BANG_EQ2] = ACTIONS(1726), + [anon_sym_LT2] = ACTIONS(1728), + [anon_sym_LT_EQ2] = ACTIONS(1726), + [anon_sym_GT_EQ2] = ACTIONS(1726), + [anon_sym_EQ_TILDE2] = ACTIONS(1726), + [anon_sym_BANG_TILDE2] = ACTIONS(1726), + [anon_sym_like2] = ACTIONS(1726), + [anon_sym_not_DASHlike2] = ACTIONS(1726), + [anon_sym_LPAREN2] = ACTIONS(1726), + [anon_sym_STAR_STAR2] = ACTIONS(1726), + [anon_sym_PLUS_PLUS2] = ACTIONS(1726), + [anon_sym_SLASH2] = ACTIONS(1728), + [anon_sym_mod2] = ACTIONS(1726), + [anon_sym_SLASH_SLASH2] = ACTIONS(1726), + [anon_sym_PLUS2] = ACTIONS(1728), + [anon_sym_bit_DASHshl2] = ACTIONS(1726), + [anon_sym_bit_DASHshr2] = ACTIONS(1726), + [anon_sym_bit_DASHand2] = ACTIONS(1726), + [anon_sym_bit_DASHxor2] = ACTIONS(1726), + [anon_sym_bit_DASHor2] = ACTIONS(1726), + [aux_sym__immediate_decimal_token1] = ACTIONS(2507), + [aux_sym__immediate_decimal_token5] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(1728), + [anon_sym_out_GT] = ACTIONS(1728), + [anon_sym_e_GT] = ACTIONS(1728), + [anon_sym_o_GT] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT] = ACTIONS(1728), + [anon_sym_err_GT_GT] = ACTIONS(1726), + [anon_sym_out_GT_GT] = ACTIONS(1726), + [anon_sym_e_GT_GT] = ACTIONS(1726), + [anon_sym_o_GT_GT] = ACTIONS(1726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), + [sym__unquoted_pattern] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(876)] = { + [aux_sym__repeat_newline] = STATE(1042), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(876), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(877)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2213), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(712), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(877), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -112178,41 +113043,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(866)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1666), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(866), + [STATE(878)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2183), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(878), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -112248,41 +113113,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(867)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1667), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(867), + [STATE(879)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2186), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(686), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(879), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -112318,41 +113183,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(868)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1668), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(868), + [STATE(880)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2206), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(902), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(880), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -112388,41 +113253,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(869)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1669), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(869), + [STATE(881)] = { + [aux_sym__repeat_newline] = STATE(1043), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(881), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(882)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2209), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(928), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(882), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -112458,41 +113393,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(870)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1670), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(870), + [STATE(883)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2176), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(682), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(883), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -112528,41 +113463,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(871)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1671), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(871), + [STATE(884)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2164), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(675), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(884), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -112598,41 +113533,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(872)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1672), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [STATE(885)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2153), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(872), + [sym__unquoted_with_expr] = STATE(909), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(885), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -112668,41 +113603,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(873)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(873), + [STATE(886)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(924), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(689), + [sym__unquoted_with_expr] = STATE(911), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(886), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -112738,41 +113673,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(874)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1673), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(874), + [STATE(887)] = { + [aux_sym__repeat_newline] = STATE(1044), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(887), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(888)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2197), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(931), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(888), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -112808,41 +113813,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(875)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1674), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(875), + [STATE(889)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2139), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(702), + [sym__unquoted_with_expr] = STATE(918), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(889), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -112878,41 +113883,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(876)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1675), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(876), + [STATE(890)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2142), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(943), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(890), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -112948,41 +113953,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(877)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1676), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(877), + [STATE(891)] = { + [sym_expr_unary] = STATE(910), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(910), + [sym__expr_binary_expression] = STATE(2145), + [sym_expr_parenthesized] = STATE(697), + [sym_val_range] = STATE(910), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(910), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(1937), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1722), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(953), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(891), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), [anon_sym_null] = ACTIONS(1896), @@ -113018,28 +114023,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(878)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4551), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(878), - [aux_sym_record_body_repeat1] = STATE(879), + [STATE(892)] = { + [aux_sym__repeat_newline] = STATE(1045), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(892), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(893)] = { + [aux_sym__repeat_newline] = STATE(1047), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(893), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(894)] = { + [sym_cell_path] = STATE(1345), + [sym_path] = STATE(842), + [sym_comment] = STATE(894), + [aux_sym__where_predicate_lhs_repeat1] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(1846), + [anon_sym_in] = 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_GT2] = ACTIONS(1849), + [anon_sym_DASH2] = ACTIONS(1846), + [anon_sym_STAR2] = ACTIONS(1849), + [anon_sym_and2] = ACTIONS(1846), + [anon_sym_xor2] = ACTIONS(1846), + [anon_sym_or2] = ACTIONS(1846), + [anon_sym_not_DASHin2] = ACTIONS(1846), + [anon_sym_has2] = ACTIONS(1846), + [anon_sym_not_DASHhas2] = ACTIONS(1846), + [anon_sym_starts_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1846), + [anon_sym_ends_DASHwith2] = ACTIONS(1846), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1846), + [anon_sym_EQ_EQ2] = ACTIONS(1846), + [anon_sym_BANG_EQ2] = ACTIONS(1846), + [anon_sym_LT2] = ACTIONS(1849), + [anon_sym_LT_EQ2] = ACTIONS(1846), + [anon_sym_GT_EQ2] = ACTIONS(1846), + [anon_sym_EQ_TILDE2] = ACTIONS(1846), + [anon_sym_BANG_TILDE2] = ACTIONS(1846), + [anon_sym_like2] = ACTIONS(1846), + [anon_sym_not_DASHlike2] = ACTIONS(1846), + [anon_sym_STAR_STAR2] = ACTIONS(1846), + [anon_sym_PLUS_PLUS2] = ACTIONS(1846), + [anon_sym_SLASH2] = ACTIONS(1849), + [anon_sym_mod2] = ACTIONS(1846), + [anon_sym_SLASH_SLASH2] = ACTIONS(1846), + [anon_sym_PLUS2] = ACTIONS(1849), + [anon_sym_bit_DASHshl2] = ACTIONS(1846), + [anon_sym_bit_DASHshr2] = ACTIONS(1846), + [anon_sym_bit_DASHand2] = ACTIONS(1846), + [anon_sym_bit_DASHxor2] = ACTIONS(1846), + [anon_sym_bit_DASHor2] = ACTIONS(1846), + [anon_sym_DOT2] = ACTIONS(2381), + [anon_sym_err_GT] = ACTIONS(1849), + [anon_sym_out_GT] = ACTIONS(1849), + [anon_sym_e_GT] = ACTIONS(1849), + [anon_sym_o_GT] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT] = ACTIONS(1849), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(895)] = { + [sym_cmd_identifier] = STATE(4323), + [sym_expr_parenthesized] = STATE(5075), + [sym__spread_parenthesized] = STATE(4659), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5075), + [sym_val_number] = STATE(5075), + [sym__val_number_decimal] = STATE(1923), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5075), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(5075), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym__spread_record] = STATE(4659), + [sym_record_entry] = STATE(4392), + [sym__record_key] = STATE(5002), + [sym_comment] = STATE(895), + [aux_sym_record_body_repeat1] = STATE(802), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -113067,7 +114282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token4] = ACTIONS(1770), [aux_sym_cmd_identifier_token5] = ACTIONS(1770), [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1776), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), @@ -113088,1336 +114303,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(879)] = { - [sym_cmd_identifier] = STATE(4308), - [sym_expr_parenthesized] = STATE(4937), - [sym__spread_parenthesized] = STATE(4681), - [sym__spread_variable] = STATE(4684), - [sym_val_variable] = STATE(4937), - [sym_val_number] = STATE(4937), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(4937), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(4937), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4681), - [sym_record_entry] = STATE(4727), - [sym__record_key] = STATE(4971), - [sym_comment] = STATE(879), - [aux_sym_record_body_repeat1] = STATE(879), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_alias] = ACTIONS(2425), - [anon_sym_let] = ACTIONS(2425), - [anon_sym_mut] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [aux_sym_cmd_identifier_token1] = ACTIONS(2428), - [anon_sym_def] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_export_DASHenv] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2425), - [anon_sym_module] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_loop] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_catch] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_in] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [anon_sym_null] = ACTIONS(2431), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2440), - [anon_sym_DASH2] = ACTIONS(2443), - [anon_sym_PLUS2] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2446), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), - [aux_sym__val_number_decimal_token1] = ACTIONS(2452), - [aux_sym__val_number_decimal_token2] = ACTIONS(2455), - [aux_sym__val_number_decimal_token3] = ACTIONS(2458), - [aux_sym__val_number_decimal_token4] = ACTIONS(2458), - [aux_sym__val_number_token1] = ACTIONS(2461), - [aux_sym__val_number_token2] = ACTIONS(2461), - [aux_sym__val_number_token3] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2467), - [anon_sym_BQUOTE] = ACTIONS(2470), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2479), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2482), - }, - [STATE(880)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2185), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(880), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(881)] = { - [aux_sym__repeat_newline] = STATE(3365), - [aux_sym__pipe_separator] = STATE(885), - [sym_comment] = STATE(881), - [anon_sym_export] = ACTIONS(2485), - [anon_sym_alias] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_mut] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [aux_sym_cmd_identifier_token1] = ACTIONS(2485), - [anon_sym_def] = ACTIONS(2487), - [anon_sym_use] = ACTIONS(2487), - [anon_sym_export_DASHenv] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_loop] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_catch] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_in] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2487), - [anon_sym_false] = ACTIONS(2487), - [anon_sym_null] = ACTIONS(2487), - [aux_sym_cmd_identifier_token3] = ACTIONS(2487), - [aux_sym_cmd_identifier_token4] = ACTIONS(2487), - [aux_sym_cmd_identifier_token5] = ACTIONS(2487), - [sym__newline] = ACTIONS(2489), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_err_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_GT_PIPE] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_DOLLAR] = ACTIONS(2485), - [anon_sym_DASH2] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_where] = ACTIONS(2487), - [aux_sym_expr_unary_token1] = ACTIONS(2487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2487), - [anon_sym_DOT_DOT_LT] = 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_0b] = ACTIONS(2485), - [anon_sym_0o] = ACTIONS(2485), - [anon_sym_0x] = ACTIONS(2485), - [sym_val_date] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_BQUOTE] = ACTIONS(2487), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2487), - }, - [STATE(882)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1323), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1121), - [sym__unquoted_with_expr] = STATE(1327), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(882), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(883)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1330), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1123), - [sym__unquoted_with_expr] = STATE(1334), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(883), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(884)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1335), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1126), - [sym__unquoted_with_expr] = STATE(1317), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(884), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(885)] = { - [aux_sym__repeat_newline] = STATE(3365), - [aux_sym__pipe_separator] = STATE(885), - [sym_comment] = STATE(885), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [sym__newline] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_err_GT_PIPE] = ACTIONS(2498), - [anon_sym_out_GT_PIPE] = ACTIONS(2498), - [anon_sym_e_GT_PIPE] = ACTIONS(2498), - [anon_sym_o_GT_PIPE] = ACTIONS(2498), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2498), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2498), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2498), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2491), - [anon_sym_where] = ACTIONS(2493), - [aux_sym_expr_unary_token1] = ACTIONS(2493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2493), - [anon_sym_DOT_DOT_LT] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2491), - [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_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2491), - [anon_sym_0x] = ACTIONS(2491), - [sym_val_date] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_BQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2493), - [anon_sym_CARET] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2493), - }, - [STATE(886)] = { - [sym_comment] = STATE(886), - [anon_sym_in] = ACTIONS(2501), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_RPAREN] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2501), - [anon_sym_xor2] = ACTIONS(2501), - [anon_sym_or2] = ACTIONS(2501), - [anon_sym_not_DASHin2] = ACTIONS(2501), - [anon_sym_has2] = ACTIONS(2501), - [anon_sym_not_DASHhas2] = ACTIONS(2501), - [anon_sym_starts_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2501), - [anon_sym_ends_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2501), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2501), - [anon_sym_like2] = ACTIONS(2501), - [anon_sym_not_DASHlike2] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_STAR_STAR2] = ACTIONS(2501), - [anon_sym_PLUS_PLUS2] = ACTIONS(2501), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2501), - [anon_sym_SLASH_SLASH2] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2501), - [anon_sym_bit_DASHshr2] = ACTIONS(2501), - [anon_sym_bit_DASHand2] = ACTIONS(2501), - [anon_sym_bit_DASHxor2] = ACTIONS(2501), - [anon_sym_bit_DASHor2] = ACTIONS(2501), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [sym__unquoted_pattern] = ACTIONS(2503), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(887)] = { - [sym_comment] = STATE(887), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2505), - [sym__newline] = ACTIONS(2505), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_err_GT_PIPE] = ACTIONS(2505), - [anon_sym_out_GT_PIPE] = ACTIONS(2505), - [anon_sym_e_GT_PIPE] = ACTIONS(2505), - [anon_sym_o_GT_PIPE] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2505), - [anon_sym_RPAREN] = ACTIONS(2505), - [anon_sym_GT2] = ACTIONS(2507), - [anon_sym_DASH2] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_EQ_GT] = ACTIONS(2505), - [anon_sym_STAR2] = ACTIONS(2507), - [anon_sym_and2] = ACTIONS(2505), - [anon_sym_xor2] = ACTIONS(2505), - [anon_sym_or2] = ACTIONS(2505), - [anon_sym_not_DASHin2] = ACTIONS(2505), - [anon_sym_has2] = ACTIONS(2505), - [anon_sym_not_DASHhas2] = ACTIONS(2505), - [anon_sym_starts_DASHwith2] = ACTIONS(2505), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2505), - [anon_sym_ends_DASHwith2] = ACTIONS(2505), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2505), - [anon_sym_EQ_EQ2] = ACTIONS(2505), - [anon_sym_BANG_EQ2] = ACTIONS(2505), - [anon_sym_LT2] = ACTIONS(2507), - [anon_sym_LT_EQ2] = ACTIONS(2505), - [anon_sym_GT_EQ2] = ACTIONS(2505), - [anon_sym_EQ_TILDE2] = ACTIONS(2505), - [anon_sym_BANG_TILDE2] = ACTIONS(2505), - [anon_sym_like2] = ACTIONS(2505), - [anon_sym_not_DASHlike2] = ACTIONS(2505), - [anon_sym_STAR_STAR2] = ACTIONS(2505), - [anon_sym_PLUS_PLUS2] = ACTIONS(2505), - [anon_sym_SLASH2] = ACTIONS(2507), - [anon_sym_mod2] = ACTIONS(2505), - [anon_sym_SLASH_SLASH2] = ACTIONS(2505), - [anon_sym_PLUS2] = ACTIONS(2507), - [anon_sym_bit_DASHshl2] = ACTIONS(2505), - [anon_sym_bit_DASHshr2] = ACTIONS(2505), - [anon_sym_bit_DASHand2] = ACTIONS(2505), - [anon_sym_bit_DASHxor2] = ACTIONS(2505), - [anon_sym_bit_DASHor2] = ACTIONS(2505), - [anon_sym_err_GT] = ACTIONS(2507), - [anon_sym_out_GT] = ACTIONS(2507), - [anon_sym_e_GT] = ACTIONS(2507), - [anon_sym_o_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT] = ACTIONS(2507), - [anon_sym_err_GT_GT] = ACTIONS(2505), - [anon_sym_out_GT_GT] = ACTIONS(2505), - [anon_sym_e_GT_GT] = ACTIONS(2505), - [anon_sym_o_GT_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(888)] = { - [sym_comment] = STATE(888), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_EQ_GT] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(889)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2169), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(889), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(890)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2170), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(890), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(891)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2172), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(891), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(892)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2175), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(892), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(893)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2177), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(893), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(894)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2184), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(894), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(895)] = { - [sym_comment] = STATE(895), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(2509), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(896)] = { - [sym_comment] = STATE(896), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_EQ_GT] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), + [STATE(896)] = { + [sym_comment] = STATE(896), + [ts_builtin_sym_end] = ACTIONS(2166), + [anon_sym_in] = ACTIONS(2166), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2168), + [anon_sym_DASH2] = ACTIONS(2166), + [anon_sym_STAR2] = ACTIONS(2168), + [anon_sym_and2] = ACTIONS(2166), + [anon_sym_xor2] = ACTIONS(2166), + [anon_sym_or2] = ACTIONS(2166), + [anon_sym_not_DASHin2] = ACTIONS(2166), + [anon_sym_has2] = ACTIONS(2166), + [anon_sym_not_DASHhas2] = ACTIONS(2166), + [anon_sym_starts_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2166), + [anon_sym_ends_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2166), + [anon_sym_EQ_EQ2] = ACTIONS(2166), + [anon_sym_BANG_EQ2] = ACTIONS(2166), + [anon_sym_LT2] = ACTIONS(2168), + [anon_sym_LT_EQ2] = ACTIONS(2166), + [anon_sym_GT_EQ2] = ACTIONS(2166), + [anon_sym_EQ_TILDE2] = ACTIONS(2166), + [anon_sym_BANG_TILDE2] = ACTIONS(2166), + [anon_sym_like2] = ACTIONS(2166), + [anon_sym_not_DASHlike2] = ACTIONS(2166), + [anon_sym_STAR_STAR2] = ACTIONS(2166), + [anon_sym_PLUS_PLUS2] = ACTIONS(2166), + [anon_sym_SLASH2] = ACTIONS(2168), + [anon_sym_mod2] = ACTIONS(2166), + [anon_sym_SLASH_SLASH2] = ACTIONS(2166), + [anon_sym_PLUS2] = ACTIONS(2168), + [anon_sym_bit_DASHshl2] = ACTIONS(2166), + [anon_sym_bit_DASHshr2] = ACTIONS(2166), + [anon_sym_bit_DASHand2] = ACTIONS(2166), + [anon_sym_bit_DASHxor2] = ACTIONS(2166), + [anon_sym_bit_DASHor2] = ACTIONS(2166), + [anon_sym_DOT_DOT2] = ACTIONS(2511), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2513), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2513), + [anon_sym_err_GT] = ACTIONS(2168), + [anon_sym_out_GT] = ACTIONS(2168), + [anon_sym_e_GT] = ACTIONS(2168), + [anon_sym_o_GT] = ACTIONS(2168), + [anon_sym_err_PLUSout_GT] = ACTIONS(2168), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2168), + [anon_sym_o_PLUSe_GT] = ACTIONS(2168), + [anon_sym_e_PLUSo_GT] = ACTIONS(2168), + [anon_sym_err_GT_GT] = ACTIONS(2166), + [anon_sym_out_GT_GT] = ACTIONS(2166), + [anon_sym_e_GT_GT] = ACTIONS(2166), + [anon_sym_o_GT_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), [anon_sym_POUND] = ACTIONS(3), }, [STATE(897)] = { [sym_comment] = STATE(897), - [anon_sym_in] = ACTIONS(2511), - [sym__newline] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2511), - [anon_sym_err_GT_PIPE] = ACTIONS(2511), - [anon_sym_out_GT_PIPE] = ACTIONS(2511), - [anon_sym_e_GT_PIPE] = ACTIONS(2511), - [anon_sym_o_GT_PIPE] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2511), - [anon_sym_RPAREN] = ACTIONS(2511), - [anon_sym_GT2] = ACTIONS(2513), - [anon_sym_DASH2] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_EQ_GT] = ACTIONS(2511), - [anon_sym_STAR2] = ACTIONS(2513), - [anon_sym_and2] = ACTIONS(2511), - [anon_sym_xor2] = ACTIONS(2511), - [anon_sym_or2] = ACTIONS(2511), - [anon_sym_not_DASHin2] = ACTIONS(2511), - [anon_sym_has2] = ACTIONS(2511), - [anon_sym_not_DASHhas2] = ACTIONS(2511), - [anon_sym_starts_DASHwith2] = ACTIONS(2511), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2511), - [anon_sym_ends_DASHwith2] = ACTIONS(2511), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2511), - [anon_sym_EQ_EQ2] = ACTIONS(2511), - [anon_sym_BANG_EQ2] = ACTIONS(2511), - [anon_sym_LT2] = ACTIONS(2513), - [anon_sym_LT_EQ2] = ACTIONS(2511), - [anon_sym_GT_EQ2] = ACTIONS(2511), - [anon_sym_EQ_TILDE2] = ACTIONS(2511), - [anon_sym_BANG_TILDE2] = ACTIONS(2511), - [anon_sym_like2] = ACTIONS(2511), - [anon_sym_not_DASHlike2] = ACTIONS(2511), - [anon_sym_STAR_STAR2] = ACTIONS(2511), - [anon_sym_PLUS_PLUS2] = ACTIONS(2511), - [anon_sym_SLASH2] = ACTIONS(2513), - [anon_sym_mod2] = ACTIONS(2511), - [anon_sym_SLASH_SLASH2] = ACTIONS(2511), - [anon_sym_PLUS2] = ACTIONS(2513), - [anon_sym_bit_DASHshl2] = ACTIONS(2511), - [anon_sym_bit_DASHshr2] = ACTIONS(2511), - [anon_sym_bit_DASHand2] = ACTIONS(2511), - [anon_sym_bit_DASHxor2] = ACTIONS(2511), - [anon_sym_bit_DASHor2] = ACTIONS(2511), - [anon_sym_err_GT] = ACTIONS(2513), - [anon_sym_out_GT] = ACTIONS(2513), - [anon_sym_e_GT] = ACTIONS(2513), - [anon_sym_o_GT] = ACTIONS(2513), - [anon_sym_err_PLUSout_GT] = ACTIONS(2513), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2513), - [anon_sym_o_PLUSe_GT] = ACTIONS(2513), - [anon_sym_e_PLUSo_GT] = ACTIONS(2513), - [anon_sym_err_GT_GT] = ACTIONS(2511), - [anon_sym_out_GT_GT] = ACTIONS(2511), - [anon_sym_e_GT_GT] = ACTIONS(2511), - [anon_sym_o_GT_GT] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2511), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(898)] = { - [sym_comment] = STATE(898), [anon_sym_in] = ACTIONS(2515), [sym__newline] = ACTIONS(2515), [anon_sym_SEMI] = ACTIONS(2515), @@ -114485,353 +114441,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2515), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(899)] = { - [sym_comment] = STATE(899), - [anon_sym_in] = ACTIONS(2519), - [sym__newline] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_err_GT_PIPE] = ACTIONS(2519), - [anon_sym_out_GT_PIPE] = ACTIONS(2519), - [anon_sym_e_GT_PIPE] = ACTIONS(2519), - [anon_sym_o_GT_PIPE] = ACTIONS(2519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2519), - [anon_sym_RPAREN] = ACTIONS(2519), - [anon_sym_GT2] = ACTIONS(2521), - [anon_sym_DASH2] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_EQ_GT] = ACTIONS(2519), - [anon_sym_STAR2] = ACTIONS(2521), - [anon_sym_and2] = ACTIONS(2519), - [anon_sym_xor2] = ACTIONS(2519), - [anon_sym_or2] = ACTIONS(2519), - [anon_sym_not_DASHin2] = ACTIONS(2519), - [anon_sym_has2] = ACTIONS(2519), - [anon_sym_not_DASHhas2] = ACTIONS(2519), - [anon_sym_starts_DASHwith2] = ACTIONS(2519), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2519), - [anon_sym_ends_DASHwith2] = ACTIONS(2519), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2519), - [anon_sym_EQ_EQ2] = ACTIONS(2519), - [anon_sym_BANG_EQ2] = ACTIONS(2519), - [anon_sym_LT2] = ACTIONS(2521), - [anon_sym_LT_EQ2] = ACTIONS(2519), - [anon_sym_GT_EQ2] = ACTIONS(2519), - [anon_sym_EQ_TILDE2] = ACTIONS(2519), - [anon_sym_BANG_TILDE2] = ACTIONS(2519), - [anon_sym_like2] = ACTIONS(2519), - [anon_sym_not_DASHlike2] = ACTIONS(2519), - [anon_sym_STAR_STAR2] = ACTIONS(2519), - [anon_sym_PLUS_PLUS2] = ACTIONS(2519), - [anon_sym_SLASH2] = ACTIONS(2521), - [anon_sym_mod2] = ACTIONS(2519), - [anon_sym_SLASH_SLASH2] = ACTIONS(2519), - [anon_sym_PLUS2] = ACTIONS(2521), - [anon_sym_bit_DASHshl2] = ACTIONS(2519), - [anon_sym_bit_DASHshr2] = ACTIONS(2519), - [anon_sym_bit_DASHand2] = ACTIONS(2519), - [anon_sym_bit_DASHxor2] = ACTIONS(2519), - [anon_sym_bit_DASHor2] = ACTIONS(2519), - [anon_sym_err_GT] = ACTIONS(2521), - [anon_sym_out_GT] = ACTIONS(2521), - [anon_sym_e_GT] = ACTIONS(2521), - [anon_sym_o_GT] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT] = ACTIONS(2521), - [anon_sym_err_GT_GT] = ACTIONS(2519), - [anon_sym_out_GT_GT] = ACTIONS(2519), - [anon_sym_e_GT_GT] = ACTIONS(2519), - [anon_sym_o_GT_GT] = ACTIONS(2519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2519), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(900)] = { - [sym_comment] = STATE(900), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(901)] = { - [sym_comment] = STATE(901), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(902)] = { - [sym_comment] = STATE(902), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(903)] = { - [sym_comment] = STATE(903), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [STATE(898)] = { + [sym_comment] = STATE(898), + [ts_builtin_sym_end] = ACTIONS(2118), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_err_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_GT_PIPE] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2118), + [anon_sym_GT2] = ACTIONS(2120), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_STAR2] = ACTIONS(2120), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2120), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2120), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2120), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(2519), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2521), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2521), + [anon_sym_err_GT] = ACTIONS(2120), + [anon_sym_out_GT] = ACTIONS(2120), + [anon_sym_e_GT] = ACTIONS(2120), + [anon_sym_o_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT] = ACTIONS(2120), + [anon_sym_err_GT_GT] = ACTIONS(2118), + [anon_sym_out_GT_GT] = ACTIONS(2118), + [anon_sym_e_GT_GT] = ACTIONS(2118), + [anon_sym_o_GT_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2118), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(904)] = { - [sym_comment] = STATE(904), + [STATE(899)] = { + [sym_comment] = STATE(899), [anon_sym_in] = ACTIONS(2523), [sym__newline] = ACTIONS(2523), [anon_sym_SEMI] = ACTIONS(2523), @@ -114899,519 +114579,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(905)] = { - [sym_comment] = STATE(905), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(906)] = { - [sym_comment] = STATE(906), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(907)] = { - [sym_comment] = STATE(907), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(908)] = { - [sym_comment] = STATE(908), - [anon_sym_in] = 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_RPAREN] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [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(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), - [sym__unquoted_pattern] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(909)] = { - [sym_comment] = STATE(909), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(910)] = { - [sym_comment] = STATE(910), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(911)] = { - [sym_comment] = STATE(911), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [STATE(900)] = { + [sym_comment] = STATE(900), + [ts_builtin_sym_end] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(1936), + [sym__newline] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_err_GT_PIPE] = ACTIONS(1936), + [anon_sym_out_GT_PIPE] = ACTIONS(1936), + [anon_sym_e_GT_PIPE] = ACTIONS(1936), + [anon_sym_o_GT_PIPE] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1936), + [anon_sym_GT2] = ACTIONS(1938), + [anon_sym_DASH2] = ACTIONS(1936), + [anon_sym_STAR2] = ACTIONS(1938), + [anon_sym_and2] = ACTIONS(1936), + [anon_sym_xor2] = ACTIONS(1936), + [anon_sym_or2] = ACTIONS(1936), + [anon_sym_not_DASHin2] = ACTIONS(1936), + [anon_sym_has2] = ACTIONS(1936), + [anon_sym_not_DASHhas2] = ACTIONS(1936), + [anon_sym_starts_DASHwith2] = ACTIONS(1936), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1936), + [anon_sym_ends_DASHwith2] = ACTIONS(1936), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1936), + [anon_sym_EQ_EQ2] = ACTIONS(1936), + [anon_sym_BANG_EQ2] = ACTIONS(1936), + [anon_sym_LT2] = ACTIONS(1938), + [anon_sym_LT_EQ2] = ACTIONS(1936), + [anon_sym_GT_EQ2] = ACTIONS(1936), + [anon_sym_EQ_TILDE2] = ACTIONS(1936), + [anon_sym_BANG_TILDE2] = ACTIONS(1936), + [anon_sym_like2] = ACTIONS(1936), + [anon_sym_not_DASHlike2] = ACTIONS(1936), + [anon_sym_STAR_STAR2] = ACTIONS(1936), + [anon_sym_PLUS_PLUS2] = ACTIONS(1936), + [anon_sym_SLASH2] = ACTIONS(1938), + [anon_sym_mod2] = ACTIONS(1936), + [anon_sym_SLASH_SLASH2] = ACTIONS(1936), + [anon_sym_PLUS2] = ACTIONS(1938), + [anon_sym_bit_DASHshl2] = ACTIONS(1936), + [anon_sym_bit_DASHshr2] = ACTIONS(1936), + [anon_sym_bit_DASHand2] = ACTIONS(1936), + [anon_sym_bit_DASHxor2] = ACTIONS(1936), + [anon_sym_bit_DASHor2] = ACTIONS(1936), + [anon_sym_DOT_DOT2] = ACTIONS(2527), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2529), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2529), + [anon_sym_err_GT] = ACTIONS(1938), + [anon_sym_out_GT] = ACTIONS(1938), + [anon_sym_e_GT] = ACTIONS(1938), + [anon_sym_o_GT] = ACTIONS(1938), + [anon_sym_err_PLUSout_GT] = ACTIONS(1938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1938), + [anon_sym_o_PLUSe_GT] = ACTIONS(1938), + [anon_sym_e_PLUSo_GT] = ACTIONS(1938), + [anon_sym_err_GT_GT] = ACTIONS(1936), + [anon_sym_out_GT_GT] = ACTIONS(1936), + [anon_sym_e_GT_GT] = ACTIONS(1936), + [anon_sym_o_GT_GT] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(912)] = { - [aux_sym__repeat_newline] = STATE(964), - [sym_comment] = STATE(912), - [anon_sym_export] = ACTIONS(2527), - [anon_sym_alias] = ACTIONS(2529), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_mut] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [aux_sym_cmd_identifier_token1] = ACTIONS(2527), - [anon_sym_def] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_export_DASHenv] = ACTIONS(2529), - [anon_sym_extern] = ACTIONS(2529), - [anon_sym_module] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_loop] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_catch] = ACTIONS(2529), - [anon_sym_match] = ACTIONS(2529), - [anon_sym_in] = ACTIONS(2527), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [aux_sym_cmd_identifier_token3] = ACTIONS(2529), - [aux_sym_cmd_identifier_token4] = ACTIONS(2529), - [aux_sym_cmd_identifier_token5] = ACTIONS(2529), - [sym__newline] = ACTIONS(2301), + [STATE(901)] = { + [sym_comment] = STATE(901), + [anon_sym_in] = ACTIONS(2531), + [sym__newline] = ACTIONS(2531), + [anon_sym_SEMI] = ACTIONS(2531), [anon_sym_PIPE] = ACTIONS(2531), [anon_sym_err_GT_PIPE] = ACTIONS(2531), [anon_sym_out_GT_PIPE] = ACTIONS(2531), @@ -115421,728 +114662,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2531), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2531), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2531), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_DOLLAR] = ACTIONS(2527), - [anon_sym_DASH2] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(2527), - [anon_sym_where] = ACTIONS(2529), - [aux_sym_expr_unary_token1] = ACTIONS(2529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2529), - [anon_sym_DOT_DOT_LT] = ACTIONS(2529), - [aux_sym__val_number_decimal_token1] = ACTIONS(2527), - [aux_sym__val_number_decimal_token2] = ACTIONS(2529), - [aux_sym__val_number_decimal_token3] = ACTIONS(2529), - [aux_sym__val_number_decimal_token4] = ACTIONS(2529), - [aux_sym__val_number_token1] = ACTIONS(2529), - [aux_sym__val_number_token2] = ACTIONS(2529), - [aux_sym__val_number_token3] = ACTIONS(2529), - [anon_sym_0b] = ACTIONS(2527), - [anon_sym_0o] = ACTIONS(2527), - [anon_sym_0x] = ACTIONS(2527), - [sym_val_date] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2529), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_BQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2529), - [anon_sym_CARET] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2529), - }, - [STATE(913)] = { - [sym_comment] = STATE(913), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_EQ_GT] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2535), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2533), - [anon_sym_PLUS_PLUS2] = ACTIONS(2533), - [anon_sym_SLASH2] = ACTIONS(2535), - [anon_sym_mod2] = ACTIONS(2533), - [anon_sym_SLASH_SLASH2] = ACTIONS(2533), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(914)] = { - [sym_comment] = STATE(914), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(915)] = { - [sym_comment] = STATE(915), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(916)] = { - [sym_comment] = STATE(916), - [anon_sym_in] = ACTIONS(2537), - [sym__newline] = ACTIONS(2537), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_PIPE] = ACTIONS(2537), - [anon_sym_err_GT_PIPE] = ACTIONS(2537), - [anon_sym_out_GT_PIPE] = ACTIONS(2537), - [anon_sym_e_GT_PIPE] = ACTIONS(2537), - [anon_sym_o_GT_PIPE] = ACTIONS(2537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2537), - [anon_sym_RPAREN] = ACTIONS(2537), - [anon_sym_GT2] = ACTIONS(2539), - [anon_sym_DASH2] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_EQ_GT] = ACTIONS(2537), - [anon_sym_STAR2] = ACTIONS(2539), - [anon_sym_and2] = ACTIONS(2537), - [anon_sym_xor2] = ACTIONS(2537), - [anon_sym_or2] = ACTIONS(2537), - [anon_sym_not_DASHin2] = ACTIONS(2537), - [anon_sym_has2] = ACTIONS(2537), - [anon_sym_not_DASHhas2] = ACTIONS(2537), - [anon_sym_starts_DASHwith2] = ACTIONS(2537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2537), - [anon_sym_ends_DASHwith2] = ACTIONS(2537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2537), - [anon_sym_EQ_EQ2] = ACTIONS(2537), - [anon_sym_BANG_EQ2] = ACTIONS(2537), - [anon_sym_LT2] = ACTIONS(2539), - [anon_sym_LT_EQ2] = ACTIONS(2537), - [anon_sym_GT_EQ2] = ACTIONS(2537), - [anon_sym_EQ_TILDE2] = ACTIONS(2537), - [anon_sym_BANG_TILDE2] = ACTIONS(2537), - [anon_sym_like2] = ACTIONS(2537), - [anon_sym_not_DASHlike2] = ACTIONS(2537), - [anon_sym_STAR_STAR2] = ACTIONS(2537), - [anon_sym_PLUS_PLUS2] = ACTIONS(2537), - [anon_sym_SLASH2] = ACTIONS(2539), - [anon_sym_mod2] = ACTIONS(2537), - [anon_sym_SLASH_SLASH2] = ACTIONS(2537), - [anon_sym_PLUS2] = ACTIONS(2539), - [anon_sym_bit_DASHshl2] = ACTIONS(2537), - [anon_sym_bit_DASHshr2] = ACTIONS(2537), - [anon_sym_bit_DASHand2] = ACTIONS(2537), - [anon_sym_bit_DASHxor2] = ACTIONS(2537), - [anon_sym_bit_DASHor2] = ACTIONS(2537), - [anon_sym_err_GT] = ACTIONS(2539), - [anon_sym_out_GT] = ACTIONS(2539), - [anon_sym_e_GT] = ACTIONS(2539), - [anon_sym_o_GT] = ACTIONS(2539), - [anon_sym_err_PLUSout_GT] = ACTIONS(2539), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2539), - [anon_sym_o_PLUSe_GT] = ACTIONS(2539), - [anon_sym_e_PLUSo_GT] = ACTIONS(2539), - [anon_sym_err_GT_GT] = ACTIONS(2537), - [anon_sym_out_GT_GT] = ACTIONS(2537), - [anon_sym_e_GT_GT] = ACTIONS(2537), - [anon_sym_o_GT_GT] = ACTIONS(2537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2537), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(917)] = { - [sym_comment] = STATE(917), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(918)] = { - [sym_comment] = STATE(918), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_DOT_DOT2] = ACTIONS(2541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2543), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_RPAREN] = ACTIONS(2531), + [anon_sym_GT2] = ACTIONS(2533), + [anon_sym_DASH2] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_RBRACE] = ACTIONS(2531), + [anon_sym_EQ_GT] = ACTIONS(2531), + [anon_sym_STAR2] = ACTIONS(2533), + [anon_sym_and2] = ACTIONS(2531), + [anon_sym_xor2] = ACTIONS(2531), + [anon_sym_or2] = ACTIONS(2531), + [anon_sym_not_DASHin2] = ACTIONS(2531), + [anon_sym_has2] = ACTIONS(2531), + [anon_sym_not_DASHhas2] = ACTIONS(2531), + [anon_sym_starts_DASHwith2] = ACTIONS(2531), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2531), + [anon_sym_ends_DASHwith2] = ACTIONS(2531), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2531), + [anon_sym_EQ_EQ2] = ACTIONS(2531), + [anon_sym_BANG_EQ2] = ACTIONS(2531), + [anon_sym_LT2] = ACTIONS(2533), + [anon_sym_LT_EQ2] = ACTIONS(2531), + [anon_sym_GT_EQ2] = ACTIONS(2531), + [anon_sym_EQ_TILDE2] = ACTIONS(2531), + [anon_sym_BANG_TILDE2] = ACTIONS(2531), + [anon_sym_like2] = ACTIONS(2531), + [anon_sym_not_DASHlike2] = ACTIONS(2531), + [anon_sym_STAR_STAR2] = ACTIONS(2531), + [anon_sym_PLUS_PLUS2] = ACTIONS(2531), + [anon_sym_SLASH2] = ACTIONS(2533), + [anon_sym_mod2] = ACTIONS(2531), + [anon_sym_SLASH_SLASH2] = ACTIONS(2531), + [anon_sym_PLUS2] = ACTIONS(2533), + [anon_sym_bit_DASHshl2] = ACTIONS(2531), + [anon_sym_bit_DASHshr2] = ACTIONS(2531), + [anon_sym_bit_DASHand2] = ACTIONS(2531), + [anon_sym_bit_DASHxor2] = ACTIONS(2531), + [anon_sym_bit_DASHor2] = ACTIONS(2531), + [anon_sym_err_GT] = ACTIONS(2533), + [anon_sym_out_GT] = ACTIONS(2533), + [anon_sym_e_GT] = ACTIONS(2533), + [anon_sym_o_GT] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT] = ACTIONS(2533), + [anon_sym_err_GT_GT] = ACTIONS(2531), + [anon_sym_out_GT_GT] = ACTIONS(2531), + [anon_sym_e_GT_GT] = ACTIONS(2531), + [anon_sym_o_GT_GT] = ACTIONS(2531), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2531), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2531), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2531), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2531), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(919)] = { - [sym_comment] = STATE(919), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [STATE(902)] = { + [sym_comment] = STATE(902), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(920)] = { - [sym_comment] = STATE(920), - [ts_builtin_sym_end] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_DOT_DOT2] = ACTIONS(2545), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [STATE(903)] = { + [sym_comment] = STATE(903), + [anon_sym_in] = ACTIONS(2535), + [sym__newline] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_err_GT_PIPE] = ACTIONS(2535), + [anon_sym_out_GT_PIPE] = ACTIONS(2535), + [anon_sym_e_GT_PIPE] = ACTIONS(2535), + [anon_sym_o_GT_PIPE] = ACTIONS(2535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2535), + [anon_sym_GT2] = ACTIONS(2537), + [anon_sym_DASH2] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_EQ_GT] = ACTIONS(2535), + [anon_sym_STAR2] = ACTIONS(2537), + [anon_sym_and2] = ACTIONS(2535), + [anon_sym_xor2] = ACTIONS(2535), + [anon_sym_or2] = ACTIONS(2535), + [anon_sym_not_DASHin2] = ACTIONS(2535), + [anon_sym_has2] = ACTIONS(2535), + [anon_sym_not_DASHhas2] = ACTIONS(2535), + [anon_sym_starts_DASHwith2] = ACTIONS(2535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2535), + [anon_sym_ends_DASHwith2] = ACTIONS(2535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2535), + [anon_sym_EQ_EQ2] = ACTIONS(2535), + [anon_sym_BANG_EQ2] = ACTIONS(2535), + [anon_sym_LT2] = ACTIONS(2537), + [anon_sym_LT_EQ2] = ACTIONS(2535), + [anon_sym_GT_EQ2] = ACTIONS(2535), + [anon_sym_EQ_TILDE2] = ACTIONS(2535), + [anon_sym_BANG_TILDE2] = ACTIONS(2535), + [anon_sym_like2] = ACTIONS(2535), + [anon_sym_not_DASHlike2] = ACTIONS(2535), + [anon_sym_STAR_STAR2] = ACTIONS(2535), + [anon_sym_PLUS_PLUS2] = ACTIONS(2535), + [anon_sym_SLASH2] = ACTIONS(2537), + [anon_sym_mod2] = ACTIONS(2535), + [anon_sym_SLASH_SLASH2] = ACTIONS(2535), + [anon_sym_PLUS2] = ACTIONS(2537), + [anon_sym_bit_DASHshl2] = ACTIONS(2535), + [anon_sym_bit_DASHshr2] = ACTIONS(2535), + [anon_sym_bit_DASHand2] = ACTIONS(2535), + [anon_sym_bit_DASHxor2] = ACTIONS(2535), + [anon_sym_bit_DASHor2] = ACTIONS(2535), + [anon_sym_err_GT] = ACTIONS(2537), + [anon_sym_out_GT] = ACTIONS(2537), + [anon_sym_e_GT] = ACTIONS(2537), + [anon_sym_o_GT] = ACTIONS(2537), + [anon_sym_err_PLUSout_GT] = ACTIONS(2537), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2537), + [anon_sym_o_PLUSe_GT] = ACTIONS(2537), + [anon_sym_e_PLUSo_GT] = ACTIONS(2537), + [anon_sym_err_GT_GT] = ACTIONS(2535), + [anon_sym_out_GT_GT] = ACTIONS(2535), + [anon_sym_e_GT_GT] = ACTIONS(2535), + [anon_sym_o_GT_GT] = ACTIONS(2535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2535), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(921)] = { - [aux_sym__repeat_newline] = STATE(978), - [sym__expression_parenthesized] = STATE(4280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(921), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(922)] = { - [sym_comment] = STATE(922), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [STATE(904)] = { + [sym_comment] = STATE(904), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1854), + [anon_sym_GT2] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_STAR2] = ACTIONS(1856), + [anon_sym_and2] = ACTIONS(1854), + [anon_sym_xor2] = ACTIONS(1854), + [anon_sym_or2] = ACTIONS(1854), + [anon_sym_not_DASHin2] = ACTIONS(1854), + [anon_sym_has2] = ACTIONS(1854), + [anon_sym_not_DASHhas2] = ACTIONS(1854), + [anon_sym_starts_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), + [anon_sym_ends_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), + [anon_sym_EQ_EQ2] = ACTIONS(1854), + [anon_sym_BANG_EQ2] = ACTIONS(1854), + [anon_sym_LT2] = ACTIONS(1856), + [anon_sym_LT_EQ2] = ACTIONS(1854), + [anon_sym_GT_EQ2] = ACTIONS(1854), + [anon_sym_EQ_TILDE2] = ACTIONS(1854), + [anon_sym_BANG_TILDE2] = ACTIONS(1854), + [anon_sym_like2] = ACTIONS(1854), + [anon_sym_not_DASHlike2] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_STAR_STAR2] = ACTIONS(1854), + [anon_sym_PLUS_PLUS2] = ACTIONS(1854), + [anon_sym_SLASH2] = ACTIONS(1856), + [anon_sym_mod2] = ACTIONS(1854), + [anon_sym_SLASH_SLASH2] = ACTIONS(1854), + [anon_sym_PLUS2] = ACTIONS(1856), + [anon_sym_bit_DASHshl2] = ACTIONS(1854), + [anon_sym_bit_DASHshr2] = ACTIONS(1854), + [anon_sym_bit_DASHand2] = ACTIONS(1854), + [anon_sym_bit_DASHxor2] = ACTIONS(1854), + [anon_sym_bit_DASHor2] = ACTIONS(1854), + [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(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), + [sym__unquoted_pattern] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(923)] = { - [sym_comment] = STATE(923), + [STATE(905)] = { + [sym_comment] = STATE(905), + [ts_builtin_sym_end] = ACTIONS(1866), [anon_sym_in] = ACTIONS(1866), [sym__newline] = ACTIONS(1866), [anon_sym_SEMI] = ACTIONS(1866), @@ -116155,12 +114939,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_RPAREN] = ACTIONS(1866), [anon_sym_GT2] = ACTIONS(1868), [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_EQ_GT] = ACTIONS(1866), [anon_sym_STAR2] = ACTIONS(1868), [anon_sym_and2] = ACTIONS(1866), [anon_sym_xor2] = ACTIONS(1866), @@ -116192,6 +114972,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1866), [anon_sym_bit_DASHxor2] = ACTIONS(1866), [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), [anon_sym_err_GT] = ACTIONS(1868), [anon_sym_out_GT] = ACTIONS(1868), [anon_sym_e_GT] = ACTIONS(1868), @@ -116210,285 +114993,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(924)] = { - [sym_comment] = STATE(924), - [anon_sym_in] = ACTIONS(2563), - [sym__newline] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2563), - [anon_sym_err_GT_PIPE] = ACTIONS(2563), - [anon_sym_out_GT_PIPE] = ACTIONS(2563), - [anon_sym_e_GT_PIPE] = ACTIONS(2563), - [anon_sym_o_GT_PIPE] = ACTIONS(2563), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2563), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2563), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2563), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_GT2] = ACTIONS(2565), - [anon_sym_DASH2] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_EQ_GT] = ACTIONS(2563), - [anon_sym_STAR2] = ACTIONS(2565), - [anon_sym_and2] = ACTIONS(2563), - [anon_sym_xor2] = ACTIONS(2563), - [anon_sym_or2] = ACTIONS(2563), - [anon_sym_not_DASHin2] = ACTIONS(2563), - [anon_sym_has2] = ACTIONS(2563), - [anon_sym_not_DASHhas2] = ACTIONS(2563), - [anon_sym_starts_DASHwith2] = ACTIONS(2563), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2563), - [anon_sym_ends_DASHwith2] = ACTIONS(2563), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2563), - [anon_sym_EQ_EQ2] = ACTIONS(2563), - [anon_sym_BANG_EQ2] = ACTIONS(2563), - [anon_sym_LT2] = ACTIONS(2565), - [anon_sym_LT_EQ2] = ACTIONS(2563), - [anon_sym_GT_EQ2] = ACTIONS(2563), - [anon_sym_EQ_TILDE2] = ACTIONS(2563), - [anon_sym_BANG_TILDE2] = ACTIONS(2563), - [anon_sym_like2] = ACTIONS(2563), - [anon_sym_not_DASHlike2] = ACTIONS(2563), - [anon_sym_STAR_STAR2] = ACTIONS(2563), - [anon_sym_PLUS_PLUS2] = ACTIONS(2563), - [anon_sym_SLASH2] = ACTIONS(2565), - [anon_sym_mod2] = ACTIONS(2563), - [anon_sym_SLASH_SLASH2] = ACTIONS(2563), - [anon_sym_PLUS2] = ACTIONS(2565), - [anon_sym_bit_DASHshl2] = ACTIONS(2563), - [anon_sym_bit_DASHshr2] = ACTIONS(2563), - [anon_sym_bit_DASHand2] = ACTIONS(2563), - [anon_sym_bit_DASHxor2] = ACTIONS(2563), - [anon_sym_bit_DASHor2] = ACTIONS(2563), - [anon_sym_err_GT] = ACTIONS(2565), - [anon_sym_out_GT] = ACTIONS(2565), - [anon_sym_e_GT] = ACTIONS(2565), - [anon_sym_o_GT] = ACTIONS(2565), - [anon_sym_err_PLUSout_GT] = ACTIONS(2565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2565), - [anon_sym_o_PLUSe_GT] = ACTIONS(2565), - [anon_sym_e_PLUSo_GT] = ACTIONS(2565), - [anon_sym_err_GT_GT] = ACTIONS(2563), - [anon_sym_out_GT_GT] = ACTIONS(2563), - [anon_sym_e_GT_GT] = ACTIONS(2563), - [anon_sym_o_GT_GT] = ACTIONS(2563), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2563), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2563), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2563), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2563), + [STATE(906)] = { + [sym_comment] = STATE(906), + [anon_sym_in] = ACTIONS(2539), + [sym__newline] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_PIPE] = ACTIONS(2539), + [anon_sym_err_GT_PIPE] = ACTIONS(2539), + [anon_sym_out_GT_PIPE] = ACTIONS(2539), + [anon_sym_e_GT_PIPE] = ACTIONS(2539), + [anon_sym_o_GT_PIPE] = ACTIONS(2539), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2539), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2539), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2539), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2539), + [anon_sym_RPAREN] = ACTIONS(2539), + [anon_sym_GT2] = ACTIONS(2541), + [anon_sym_DASH2] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_EQ_GT] = ACTIONS(2539), + [anon_sym_STAR2] = ACTIONS(2541), + [anon_sym_and2] = ACTIONS(2539), + [anon_sym_xor2] = ACTIONS(2539), + [anon_sym_or2] = ACTIONS(2539), + [anon_sym_not_DASHin2] = ACTIONS(2539), + [anon_sym_has2] = ACTIONS(2539), + [anon_sym_not_DASHhas2] = ACTIONS(2539), + [anon_sym_starts_DASHwith2] = ACTIONS(2539), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2539), + [anon_sym_ends_DASHwith2] = ACTIONS(2539), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2539), + [anon_sym_EQ_EQ2] = ACTIONS(2539), + [anon_sym_BANG_EQ2] = ACTIONS(2539), + [anon_sym_LT2] = ACTIONS(2541), + [anon_sym_LT_EQ2] = ACTIONS(2539), + [anon_sym_GT_EQ2] = ACTIONS(2539), + [anon_sym_EQ_TILDE2] = ACTIONS(2539), + [anon_sym_BANG_TILDE2] = ACTIONS(2539), + [anon_sym_like2] = ACTIONS(2539), + [anon_sym_not_DASHlike2] = ACTIONS(2539), + [anon_sym_STAR_STAR2] = ACTIONS(2539), + [anon_sym_PLUS_PLUS2] = ACTIONS(2539), + [anon_sym_SLASH2] = ACTIONS(2541), + [anon_sym_mod2] = ACTIONS(2539), + [anon_sym_SLASH_SLASH2] = ACTIONS(2539), + [anon_sym_PLUS2] = ACTIONS(2541), + [anon_sym_bit_DASHshl2] = ACTIONS(2539), + [anon_sym_bit_DASHshr2] = ACTIONS(2539), + [anon_sym_bit_DASHand2] = ACTIONS(2539), + [anon_sym_bit_DASHxor2] = ACTIONS(2539), + [anon_sym_bit_DASHor2] = ACTIONS(2539), + [anon_sym_err_GT] = ACTIONS(2541), + [anon_sym_out_GT] = ACTIONS(2541), + [anon_sym_e_GT] = ACTIONS(2541), + [anon_sym_o_GT] = ACTIONS(2541), + [anon_sym_err_PLUSout_GT] = ACTIONS(2541), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2541), + [anon_sym_o_PLUSe_GT] = ACTIONS(2541), + [anon_sym_e_PLUSo_GT] = ACTIONS(2541), + [anon_sym_err_GT_GT] = ACTIONS(2539), + [anon_sym_out_GT_GT] = ACTIONS(2539), + [anon_sym_e_GT_GT] = ACTIONS(2539), + [anon_sym_o_GT_GT] = ACTIONS(2539), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2539), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2539), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2539), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2539), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(925)] = { - [sym_comment] = STATE(925), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_EQ_GT] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), + [STATE(907)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym__match_pattern_expression] = STATE(4141), + [sym__match_pattern_value] = STATE(4519), + [sym__match_pattern_list_body] = STATE(4778), + [sym__match_pattern_list_body_or_empty] = STATE(4517), + [sym__match_pattern_list] = STATE(4520), + [sym__match_pattern_rest] = STATE(4818), + [sym__match_pattern_record] = STATE(4521), + [sym_expr_parenthesized] = STATE(3757), + [sym_val_range] = STATE(4519), + [sym__val_range] = STATE(4822), + [sym_val_nothing] = STATE(4521), + [sym_val_bool] = STATE(4145), + [sym_val_variable] = STATE(3758), + [sym_val_number] = STATE(4521), + [sym__val_number_decimal] = STATE(3555), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4521), + [sym_val_filesize] = STATE(4521), + [sym_val_binary] = STATE(4521), + [sym_val_string] = STATE(4521), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_list] = STATE(4830), + [sym__table_head] = STATE(3666), + [sym_val_table] = STATE(4521), + [sym__unquoted_in_list] = STATE(4141), + [sym__unquoted_anonymous_prefix] = STATE(4822), + [sym_comment] = STATE(907), + [aux_sym__types_body_repeat1] = STATE(1400), + [aux_sym_parameter_repeat2] = STATE(3968), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), + [anon_sym_true] = ACTIONS(1370), + [anon_sym_false] = ACTIONS(1370), + [anon_sym_null] = ACTIONS(1372), + [aux_sym_cmd_identifier_token3] = ACTIONS(1374), + [aux_sym_cmd_identifier_token4] = ACTIONS(1374), + [aux_sym_cmd_identifier_token5] = ACTIONS(1374), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_RBRACK] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2553), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1392), + [anon_sym_DOT_DOT_LT] = ACTIONS(1392), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_decimal_token2] = ACTIONS(1396), + [aux_sym__val_number_decimal_token3] = ACTIONS(1398), + [aux_sym__val_number_decimal_token4] = ACTIONS(1398), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), + }, + [STATE(908)] = { + [sym_comment] = STATE(908), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(926)] = { - [sym_comment] = STATE(926), - [anon_sym_in] = ACTIONS(2571), - [sym__newline] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_PIPE] = ACTIONS(2571), - [anon_sym_err_GT_PIPE] = ACTIONS(2571), - [anon_sym_out_GT_PIPE] = ACTIONS(2571), - [anon_sym_e_GT_PIPE] = ACTIONS(2571), - [anon_sym_o_GT_PIPE] = ACTIONS(2571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2571), - [anon_sym_RPAREN] = ACTIONS(2571), - [anon_sym_GT2] = ACTIONS(2573), - [anon_sym_DASH2] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_EQ_GT] = ACTIONS(2571), - [anon_sym_STAR2] = ACTIONS(2573), - [anon_sym_and2] = ACTIONS(2571), - [anon_sym_xor2] = ACTIONS(2571), - [anon_sym_or2] = ACTIONS(2571), - [anon_sym_not_DASHin2] = ACTIONS(2571), - [anon_sym_has2] = ACTIONS(2571), - [anon_sym_not_DASHhas2] = ACTIONS(2571), - [anon_sym_starts_DASHwith2] = ACTIONS(2571), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2571), - [anon_sym_ends_DASHwith2] = ACTIONS(2571), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2571), - [anon_sym_EQ_EQ2] = ACTIONS(2571), - [anon_sym_BANG_EQ2] = ACTIONS(2571), - [anon_sym_LT2] = ACTIONS(2573), - [anon_sym_LT_EQ2] = ACTIONS(2571), - [anon_sym_GT_EQ2] = ACTIONS(2571), - [anon_sym_EQ_TILDE2] = ACTIONS(2571), - [anon_sym_BANG_TILDE2] = ACTIONS(2571), - [anon_sym_like2] = ACTIONS(2571), - [anon_sym_not_DASHlike2] = ACTIONS(2571), - [anon_sym_STAR_STAR2] = ACTIONS(2571), - [anon_sym_PLUS_PLUS2] = ACTIONS(2571), - [anon_sym_SLASH2] = ACTIONS(2573), - [anon_sym_mod2] = ACTIONS(2571), - [anon_sym_SLASH_SLASH2] = ACTIONS(2571), - [anon_sym_PLUS2] = ACTIONS(2573), - [anon_sym_bit_DASHshl2] = ACTIONS(2571), - [anon_sym_bit_DASHshr2] = ACTIONS(2571), - [anon_sym_bit_DASHand2] = ACTIONS(2571), - [anon_sym_bit_DASHxor2] = ACTIONS(2571), - [anon_sym_bit_DASHor2] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2571), - [anon_sym_out_GT_GT] = ACTIONS(2571), - [anon_sym_e_GT_GT] = ACTIONS(2571), - [anon_sym_o_GT_GT] = ACTIONS(2571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2571), + [STATE(909)] = { + [sym_comment] = STATE(909), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(927)] = { - [sym_comment] = STATE(927), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_EQ_GT] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), + [STATE(910)] = { + [sym_comment] = STATE(910), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_GT2] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_EQ_GT] = ACTIONS(2074), + [anon_sym_STAR2] = ACTIONS(2078), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2078), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2078), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_err_GT] = ACTIONS(2078), + [anon_sym_out_GT] = ACTIONS(2078), + [anon_sym_e_GT] = ACTIONS(2078), + [anon_sym_o_GT] = ACTIONS(2078), + [anon_sym_err_PLUSout_GT] = ACTIONS(2078), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), + [anon_sym_o_PLUSe_GT] = ACTIONS(2078), + [anon_sym_e_PLUSo_GT] = ACTIONS(2078), + [anon_sym_err_GT_GT] = ACTIONS(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(928)] = { - [sym_comment] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(1706), + [STATE(911)] = { + [sym_comment] = STATE(911), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(912)] = { + [sym_comment] = STATE(912), [anon_sym_in] = ACTIONS(1706), [sym__newline] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1706), @@ -116501,9 +115421,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1613), [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1613), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -116516,35 +115438,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1613), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), [anon_sym_BANG_TILDE2] = ACTIONS(1706), [anon_sym_like2] = ACTIONS(1706), [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_LPAREN2] = ACTIONS(2557), [anon_sym_STAR_STAR2] = ACTIONS(1706), [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_SLASH2] = ACTIONS(1613), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1613), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1613), + [anon_sym_out_GT] = ACTIONS(1613), + [anon_sym_e_GT] = ACTIONS(1613), + [anon_sym_o_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT] = ACTIONS(1613), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -116553,562 +115473,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [sym__unquoted_pattern] = ACTIONS(2559), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(929)] = { - [sym_comment] = STATE(929), - [ts_builtin_sym_end] = ACTIONS(2120), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), - [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2579), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2581), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(930)] = { - [sym_comment] = STATE(930), - [anon_sym_in] = 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_RPAREN] = ACTIONS(1858), - [anon_sym_GT2] = ACTIONS(1860), - [anon_sym_DASH2] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_EQ_GT] = ACTIONS(1858), - [anon_sym_STAR2] = ACTIONS(1860), - [anon_sym_and2] = ACTIONS(1858), - [anon_sym_xor2] = ACTIONS(1858), - [anon_sym_or2] = ACTIONS(1858), - [anon_sym_not_DASHin2] = ACTIONS(1858), - [anon_sym_has2] = ACTIONS(1858), - [anon_sym_not_DASHhas2] = ACTIONS(1858), - [anon_sym_starts_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), - [anon_sym_ends_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), - [anon_sym_EQ_EQ2] = ACTIONS(1858), - [anon_sym_BANG_EQ2] = ACTIONS(1858), - [anon_sym_LT2] = ACTIONS(1860), - [anon_sym_LT_EQ2] = ACTIONS(1858), - [anon_sym_GT_EQ2] = ACTIONS(1858), - [anon_sym_EQ_TILDE2] = ACTIONS(1858), - [anon_sym_BANG_TILDE2] = ACTIONS(1858), - [anon_sym_like2] = ACTIONS(1858), - [anon_sym_not_DASHlike2] = ACTIONS(1858), - [anon_sym_STAR_STAR2] = ACTIONS(1858), - [anon_sym_PLUS_PLUS2] = ACTIONS(1858), - [anon_sym_SLASH2] = ACTIONS(1860), - [anon_sym_mod2] = ACTIONS(1858), - [anon_sym_SLASH_SLASH2] = ACTIONS(1858), - [anon_sym_PLUS2] = ACTIONS(1860), - [anon_sym_bit_DASHshl2] = ACTIONS(1858), - [anon_sym_bit_DASHshr2] = ACTIONS(1858), - [anon_sym_bit_DASHand2] = ACTIONS(1858), - [anon_sym_bit_DASHxor2] = ACTIONS(1858), - [anon_sym_bit_DASHor2] = ACTIONS(1858), - [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(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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(931)] = { - [sym_comment] = STATE(931), - [anon_sym_in] = ACTIONS(1018), - [sym__newline] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_err_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_GT_PIPE] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1018), - [anon_sym_xor2] = ACTIONS(1018), - [anon_sym_or2] = ACTIONS(1018), - [anon_sym_not_DASHin2] = ACTIONS(1018), - [anon_sym_has2] = ACTIONS(1018), - [anon_sym_not_DASHhas2] = ACTIONS(1018), - [anon_sym_starts_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), - [anon_sym_ends_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), - [anon_sym_EQ_EQ2] = ACTIONS(1018), - [anon_sym_BANG_EQ2] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1018), - [anon_sym_GT_EQ2] = ACTIONS(1018), - [anon_sym_EQ_TILDE2] = ACTIONS(1018), - [anon_sym_BANG_TILDE2] = ACTIONS(1018), - [anon_sym_like2] = ACTIONS(1018), - [anon_sym_not_DASHlike2] = ACTIONS(1018), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(1018), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1018), - [anon_sym_SLASH_SLASH2] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1018), - [anon_sym_bit_DASHshr2] = ACTIONS(1018), - [anon_sym_bit_DASHand2] = ACTIONS(1018), - [anon_sym_bit_DASHxor2] = ACTIONS(1018), - [anon_sym_bit_DASHor2] = ACTIONS(1018), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1018), - [anon_sym_out_GT_GT] = ACTIONS(1018), - [anon_sym_e_GT_GT] = ACTIONS(1018), - [anon_sym_o_GT_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), - [sym__unquoted_pattern] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(932)] = { - [sym_comment] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(933)] = { - [sym_comment] = STATE(933), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1558), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(934)] = { - [sym_comment] = STATE(934), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2589), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(935)] = { - [sym_comment] = STATE(935), - [ts_builtin_sym_end] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_err_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_GT_PIPE] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), - [anon_sym_GT2] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1822), - [anon_sym_STAR2] = ACTIONS(1824), - [anon_sym_and2] = ACTIONS(1822), - [anon_sym_xor2] = ACTIONS(1822), - [anon_sym_or2] = ACTIONS(1822), - [anon_sym_not_DASHin2] = ACTIONS(1822), - [anon_sym_has2] = ACTIONS(1822), - [anon_sym_not_DASHhas2] = ACTIONS(1822), - [anon_sym_starts_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1822), - [anon_sym_ends_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1822), - [anon_sym_EQ_EQ2] = ACTIONS(1822), - [anon_sym_BANG_EQ2] = ACTIONS(1822), - [anon_sym_LT2] = ACTIONS(1824), - [anon_sym_LT_EQ2] = ACTIONS(1822), - [anon_sym_GT_EQ2] = ACTIONS(1822), - [anon_sym_EQ_TILDE2] = ACTIONS(1822), - [anon_sym_BANG_TILDE2] = ACTIONS(1822), - [anon_sym_like2] = ACTIONS(1822), - [anon_sym_not_DASHlike2] = ACTIONS(1822), - [anon_sym_STAR_STAR2] = ACTIONS(1822), - [anon_sym_PLUS_PLUS2] = ACTIONS(1822), - [anon_sym_SLASH2] = ACTIONS(1824), - [anon_sym_mod2] = ACTIONS(1822), - [anon_sym_SLASH_SLASH2] = ACTIONS(1822), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_bit_DASHshl2] = ACTIONS(1822), - [anon_sym_bit_DASHshr2] = ACTIONS(1822), - [anon_sym_bit_DASHand2] = ACTIONS(1822), - [anon_sym_bit_DASHxor2] = ACTIONS(1822), - [anon_sym_bit_DASHor2] = ACTIONS(1822), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(936)] = { - [sym_comment] = STATE(936), - [anon_sym_in] = ACTIONS(2591), - [sym__newline] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_PIPE] = ACTIONS(2591), - [anon_sym_err_GT_PIPE] = ACTIONS(2591), - [anon_sym_out_GT_PIPE] = ACTIONS(2591), - [anon_sym_e_GT_PIPE] = ACTIONS(2591), - [anon_sym_o_GT_PIPE] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2591), - [anon_sym_GT2] = ACTIONS(2593), - [anon_sym_DASH2] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_RBRACE] = ACTIONS(2591), - [anon_sym_EQ_GT] = ACTIONS(2591), - [anon_sym_STAR2] = ACTIONS(2593), - [anon_sym_and2] = ACTIONS(2591), - [anon_sym_xor2] = ACTIONS(2591), - [anon_sym_or2] = ACTIONS(2591), - [anon_sym_not_DASHin2] = ACTIONS(2591), - [anon_sym_has2] = ACTIONS(2591), - [anon_sym_not_DASHhas2] = ACTIONS(2591), - [anon_sym_starts_DASHwith2] = ACTIONS(2591), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2591), - [anon_sym_ends_DASHwith2] = ACTIONS(2591), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2591), - [anon_sym_EQ_EQ2] = ACTIONS(2591), - [anon_sym_BANG_EQ2] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2593), - [anon_sym_LT_EQ2] = ACTIONS(2591), - [anon_sym_GT_EQ2] = ACTIONS(2591), - [anon_sym_EQ_TILDE2] = ACTIONS(2591), - [anon_sym_BANG_TILDE2] = ACTIONS(2591), - [anon_sym_like2] = ACTIONS(2591), - [anon_sym_not_DASHlike2] = ACTIONS(2591), - [anon_sym_STAR_STAR2] = ACTIONS(2591), - [anon_sym_PLUS_PLUS2] = ACTIONS(2591), - [anon_sym_SLASH2] = ACTIONS(2593), - [anon_sym_mod2] = ACTIONS(2591), - [anon_sym_SLASH_SLASH2] = ACTIONS(2591), - [anon_sym_PLUS2] = ACTIONS(2593), - [anon_sym_bit_DASHshl2] = ACTIONS(2591), - [anon_sym_bit_DASHshr2] = ACTIONS(2591), - [anon_sym_bit_DASHand2] = ACTIONS(2591), - [anon_sym_bit_DASHxor2] = ACTIONS(2591), - [anon_sym_bit_DASHor2] = ACTIONS(2591), - [anon_sym_err_GT] = ACTIONS(2593), - [anon_sym_out_GT] = ACTIONS(2593), - [anon_sym_e_GT] = ACTIONS(2593), - [anon_sym_o_GT] = ACTIONS(2593), - [anon_sym_err_PLUSout_GT] = ACTIONS(2593), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), - [anon_sym_o_PLUSe_GT] = ACTIONS(2593), - [anon_sym_e_PLUSo_GT] = ACTIONS(2593), - [anon_sym_err_GT_GT] = ACTIONS(2591), - [anon_sym_out_GT_GT] = ACTIONS(2591), - [anon_sym_e_GT_GT] = ACTIONS(2591), - [anon_sym_o_GT_GT] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), + [STATE(913)] = { + [sym_comment] = STATE(913), + [ts_builtin_sym_end] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1762), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_has2] = ACTIONS(1760), + [anon_sym_not_DASHhas2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1762), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_like2] = ACTIONS(1760), + [anon_sym_not_DASHlike2] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1762), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1762), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [aux_sym__immediate_decimal_token5] = ACTIONS(2216), + [anon_sym_err_GT] = ACTIONS(1762), + [anon_sym_out_GT] = ACTIONS(1762), + [anon_sym_e_GT] = ACTIONS(1762), + [anon_sym_o_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT] = ACTIONS(1762), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [sym__unquoted_pattern] = ACTIONS(1762), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(937)] = { - [sym_comment] = STATE(937), + [STATE(914)] = { + [sym_comment] = STATE(914), + [ts_builtin_sym_end] = ACTIONS(1706), [anon_sym_in] = ACTIONS(1706), [sym__newline] = ACTIONS(1706), [anon_sym_SEMI] = ACTIONS(1706), @@ -117121,11 +115560,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), + [anon_sym_GT2] = ACTIONS(1613), [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), + [anon_sym_STAR2] = ACTIONS(1613), [anon_sym_and2] = ACTIONS(1706), [anon_sym_xor2] = ACTIONS(1706), [anon_sym_or2] = ACTIONS(1706), @@ -117138,33 +115575,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), [anon_sym_EQ_EQ2] = ACTIONS(1706), [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), + [anon_sym_LT2] = ACTIONS(1613), [anon_sym_LT_EQ2] = ACTIONS(1706), [anon_sym_GT_EQ2] = ACTIONS(1706), [anon_sym_EQ_TILDE2] = ACTIONS(1706), [anon_sym_BANG_TILDE2] = ACTIONS(1706), [anon_sym_like2] = ACTIONS(1706), [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(2595), [anon_sym_STAR_STAR2] = ACTIONS(1706), [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), + [anon_sym_SLASH2] = ACTIONS(1613), [anon_sym_mod2] = ACTIONS(1706), [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), + [anon_sym_PLUS2] = ACTIONS(1613), [anon_sym_bit_DASHshl2] = ACTIONS(1706), [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_DOT_DOT2] = ACTIONS(1750), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1752), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1752), + [anon_sym_err_GT] = ACTIONS(1613), + [anon_sym_out_GT] = ACTIONS(1613), + [anon_sym_e_GT] = ACTIONS(1613), + [anon_sym_o_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT] = ACTIONS(1613), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -117173,11 +115612,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [sym__unquoted_pattern] = ACTIONS(2597), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(938)] = { - [sym_comment] = STATE(938), + [STATE(915)] = { + [sym_comment] = STATE(915), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(916)] = { + [sym_comment] = STATE(916), + [anon_sym_in] = ACTIONS(2561), + [sym__newline] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_PIPE] = ACTIONS(2561), + [anon_sym_err_GT_PIPE] = ACTIONS(2561), + [anon_sym_out_GT_PIPE] = ACTIONS(2561), + [anon_sym_e_GT_PIPE] = ACTIONS(2561), + [anon_sym_o_GT_PIPE] = ACTIONS(2561), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2561), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2561), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2561), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2561), + [anon_sym_RPAREN] = ACTIONS(2561), + [anon_sym_GT2] = ACTIONS(2563), + [anon_sym_DASH2] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_EQ_GT] = ACTIONS(2561), + [anon_sym_STAR2] = ACTIONS(2563), + [anon_sym_and2] = ACTIONS(2561), + [anon_sym_xor2] = ACTIONS(2561), + [anon_sym_or2] = ACTIONS(2561), + [anon_sym_not_DASHin2] = ACTIONS(2561), + [anon_sym_has2] = ACTIONS(2561), + [anon_sym_not_DASHhas2] = ACTIONS(2561), + [anon_sym_starts_DASHwith2] = ACTIONS(2561), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2561), + [anon_sym_ends_DASHwith2] = ACTIONS(2561), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2561), + [anon_sym_EQ_EQ2] = ACTIONS(2561), + [anon_sym_BANG_EQ2] = ACTIONS(2561), + [anon_sym_LT2] = ACTIONS(2563), + [anon_sym_LT_EQ2] = ACTIONS(2561), + [anon_sym_GT_EQ2] = ACTIONS(2561), + [anon_sym_EQ_TILDE2] = ACTIONS(2561), + [anon_sym_BANG_TILDE2] = ACTIONS(2561), + [anon_sym_like2] = ACTIONS(2561), + [anon_sym_not_DASHlike2] = ACTIONS(2561), + [anon_sym_STAR_STAR2] = ACTIONS(2561), + [anon_sym_PLUS_PLUS2] = ACTIONS(2561), + [anon_sym_SLASH2] = ACTIONS(2563), + [anon_sym_mod2] = ACTIONS(2561), + [anon_sym_SLASH_SLASH2] = ACTIONS(2561), + [anon_sym_PLUS2] = ACTIONS(2563), + [anon_sym_bit_DASHshl2] = ACTIONS(2561), + [anon_sym_bit_DASHshr2] = ACTIONS(2561), + [anon_sym_bit_DASHand2] = ACTIONS(2561), + [anon_sym_bit_DASHxor2] = ACTIONS(2561), + [anon_sym_bit_DASHor2] = ACTIONS(2561), + [anon_sym_err_GT] = ACTIONS(2563), + [anon_sym_out_GT] = ACTIONS(2563), + [anon_sym_e_GT] = ACTIONS(2563), + [anon_sym_o_GT] = ACTIONS(2563), + [anon_sym_err_PLUSout_GT] = ACTIONS(2563), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2563), + [anon_sym_o_PLUSe_GT] = ACTIONS(2563), + [anon_sym_e_PLUSo_GT] = ACTIONS(2563), + [anon_sym_err_GT_GT] = ACTIONS(2561), + [anon_sym_out_GT_GT] = ACTIONS(2561), + [anon_sym_e_GT_GT] = ACTIONS(2561), + [anon_sym_o_GT_GT] = ACTIONS(2561), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2561), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2561), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2561), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2561), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(917)] = { + [sym_comment] = STATE(917), + [ts_builtin_sym_end] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1816), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1816), + [anon_sym_err_GT] = ACTIONS(1818), + [anon_sym_out_GT] = ACTIONS(1818), + [anon_sym_e_GT] = ACTIONS(1818), + [anon_sym_o_GT] = ACTIONS(1818), + [anon_sym_err_PLUSout_GT] = ACTIONS(1818), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1818), + [anon_sym_o_PLUSe_GT] = ACTIONS(1818), + [anon_sym_e_PLUSo_GT] = ACTIONS(1818), + [anon_sym_err_GT_GT] = ACTIONS(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(918)] = { + [sym_comment] = STATE(918), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(919)] = { + [sym_comment] = STATE(919), + [anon_sym_in] = ACTIONS(1936), + [sym__newline] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_err_GT_PIPE] = ACTIONS(1936), + [anon_sym_out_GT_PIPE] = ACTIONS(1936), + [anon_sym_e_GT_PIPE] = ACTIONS(1936), + [anon_sym_o_GT_PIPE] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1936), + [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_GT2] = ACTIONS(1938), + [anon_sym_DASH2] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_STAR2] = ACTIONS(1938), + [anon_sym_and2] = ACTIONS(1936), + [anon_sym_xor2] = ACTIONS(1936), + [anon_sym_or2] = ACTIONS(1936), + [anon_sym_not_DASHin2] = ACTIONS(1936), + [anon_sym_has2] = ACTIONS(1936), + [anon_sym_not_DASHhas2] = ACTIONS(1936), + [anon_sym_starts_DASHwith2] = ACTIONS(1936), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1936), + [anon_sym_ends_DASHwith2] = ACTIONS(1936), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1936), + [anon_sym_EQ_EQ2] = ACTIONS(1936), + [anon_sym_BANG_EQ2] = ACTIONS(1936), + [anon_sym_LT2] = ACTIONS(1938), + [anon_sym_LT_EQ2] = ACTIONS(1936), + [anon_sym_GT_EQ2] = ACTIONS(1936), + [anon_sym_EQ_TILDE2] = ACTIONS(1936), + [anon_sym_BANG_TILDE2] = ACTIONS(1936), + [anon_sym_like2] = ACTIONS(1936), + [anon_sym_not_DASHlike2] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1940), + [anon_sym_STAR_STAR2] = ACTIONS(1936), + [anon_sym_PLUS_PLUS2] = ACTIONS(1936), + [anon_sym_SLASH2] = ACTIONS(1938), + [anon_sym_mod2] = ACTIONS(1936), + [anon_sym_SLASH_SLASH2] = ACTIONS(1936), + [anon_sym_PLUS2] = ACTIONS(1938), + [anon_sym_bit_DASHshl2] = ACTIONS(1936), + [anon_sym_bit_DASHshr2] = ACTIONS(1936), + [anon_sym_bit_DASHand2] = ACTIONS(1936), + [anon_sym_bit_DASHxor2] = ACTIONS(1936), + [anon_sym_bit_DASHor2] = ACTIONS(1936), + [anon_sym_err_GT] = ACTIONS(1938), + [anon_sym_out_GT] = ACTIONS(1938), + [anon_sym_e_GT] = ACTIONS(1938), + [anon_sym_o_GT] = ACTIONS(1938), + [anon_sym_err_PLUSout_GT] = ACTIONS(1938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1938), + [anon_sym_o_PLUSe_GT] = ACTIONS(1938), + [anon_sym_e_PLUSo_GT] = ACTIONS(1938), + [anon_sym_err_GT_GT] = ACTIONS(1936), + [anon_sym_out_GT_GT] = ACTIONS(1936), + [anon_sym_e_GT_GT] = ACTIONS(1936), + [anon_sym_o_GT_GT] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1936), + [sym__unquoted_pattern] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(920)] = { + [sym_comment] = STATE(920), [ts_builtin_sym_end] = ACTIONS(1874), [anon_sym_in] = ACTIONS(1874), [sym__newline] = ACTIONS(1874), @@ -117245,341 +116028,1238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(939)] = { - [sym_comment] = STATE(939), - [ts_builtin_sym_end] = ACTIONS(2136), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [STATE(921)] = { + [aux_sym__repeat_newline] = STATE(921), + [sym_comment] = STATE(921), + [anon_sym_export] = ACTIONS(2062), + [anon_sym_alias] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_mut] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [aux_sym_cmd_identifier_token1] = ACTIONS(2062), + [anon_sym_def] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_export_DASHenv] = ACTIONS(2057), + [anon_sym_extern] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_loop] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_catch] = ACTIONS(2057), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2062), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [aux_sym_cmd_identifier_token3] = ACTIONS(2057), + [aux_sym_cmd_identifier_token4] = ACTIONS(2057), + [aux_sym_cmd_identifier_token5] = ACTIONS(2057), + [sym__newline] = ACTIONS(2565), + [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(2062), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_where] = ACTIONS(2057), + [aux_sym_expr_unary_token1] = ACTIONS(2057), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2057), + [anon_sym_DOT_DOT_LT] = ACTIONS(2057), + [aux_sym__val_number_decimal_token1] = ACTIONS(2062), + [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(2062), + [anon_sym_0o] = ACTIONS(2062), + [anon_sym_0x] = ACTIONS(2062), + [sym_val_date] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_BQUOTE] = ACTIONS(2057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2057), + }, + [STATE(922)] = { + [sym_comment] = STATE(922), + [anon_sym_in] = ACTIONS(2568), + [sym__newline] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_err_GT_PIPE] = ACTIONS(2568), + [anon_sym_out_GT_PIPE] = ACTIONS(2568), + [anon_sym_e_GT_PIPE] = ACTIONS(2568), + [anon_sym_o_GT_PIPE] = ACTIONS(2568), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2568), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2568), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2568), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2568), + [anon_sym_RPAREN] = ACTIONS(2568), + [anon_sym_GT2] = ACTIONS(2570), + [anon_sym_DASH2] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_RBRACE] = ACTIONS(2568), + [anon_sym_EQ_GT] = ACTIONS(2568), + [anon_sym_STAR2] = ACTIONS(2570), + [anon_sym_and2] = ACTIONS(2568), + [anon_sym_xor2] = ACTIONS(2568), + [anon_sym_or2] = ACTIONS(2568), + [anon_sym_not_DASHin2] = ACTIONS(2568), + [anon_sym_has2] = ACTIONS(2568), + [anon_sym_not_DASHhas2] = ACTIONS(2568), + [anon_sym_starts_DASHwith2] = ACTIONS(2568), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2568), + [anon_sym_ends_DASHwith2] = ACTIONS(2568), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2568), + [anon_sym_EQ_EQ2] = ACTIONS(2568), + [anon_sym_BANG_EQ2] = ACTIONS(2568), + [anon_sym_LT2] = ACTIONS(2570), + [anon_sym_LT_EQ2] = ACTIONS(2568), + [anon_sym_GT_EQ2] = ACTIONS(2568), + [anon_sym_EQ_TILDE2] = ACTIONS(2568), + [anon_sym_BANG_TILDE2] = ACTIONS(2568), + [anon_sym_like2] = ACTIONS(2568), + [anon_sym_not_DASHlike2] = ACTIONS(2568), + [anon_sym_STAR_STAR2] = ACTIONS(2568), + [anon_sym_PLUS_PLUS2] = ACTIONS(2568), + [anon_sym_SLASH2] = ACTIONS(2570), + [anon_sym_mod2] = ACTIONS(2568), + [anon_sym_SLASH_SLASH2] = ACTIONS(2568), + [anon_sym_PLUS2] = ACTIONS(2570), + [anon_sym_bit_DASHshl2] = ACTIONS(2568), + [anon_sym_bit_DASHshr2] = ACTIONS(2568), + [anon_sym_bit_DASHand2] = ACTIONS(2568), + [anon_sym_bit_DASHxor2] = ACTIONS(2568), + [anon_sym_bit_DASHor2] = ACTIONS(2568), + [anon_sym_err_GT] = ACTIONS(2570), + [anon_sym_out_GT] = ACTIONS(2570), + [anon_sym_e_GT] = ACTIONS(2570), + [anon_sym_o_GT] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT] = ACTIONS(2570), + [anon_sym_err_GT_GT] = ACTIONS(2568), + [anon_sym_out_GT_GT] = ACTIONS(2568), + [anon_sym_e_GT_GT] = ACTIONS(2568), + [anon_sym_o_GT_GT] = ACTIONS(2568), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2568), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2568), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2568), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2568), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(940)] = { - [sym_comment] = STATE(940), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(2307), - [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(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [STATE(923)] = { + [sym_comment] = STATE(923), + [anon_sym_in] = ACTIONS(2572), + [sym__newline] = ACTIONS(2572), + [anon_sym_SEMI] = ACTIONS(2572), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_err_GT_PIPE] = ACTIONS(2572), + [anon_sym_out_GT_PIPE] = ACTIONS(2572), + [anon_sym_e_GT_PIPE] = ACTIONS(2572), + [anon_sym_o_GT_PIPE] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2572), + [anon_sym_RPAREN] = ACTIONS(2572), + [anon_sym_GT2] = ACTIONS(2574), + [anon_sym_DASH2] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_RBRACE] = ACTIONS(2572), + [anon_sym_EQ_GT] = ACTIONS(2572), + [anon_sym_STAR2] = ACTIONS(2574), + [anon_sym_and2] = ACTIONS(2572), + [anon_sym_xor2] = ACTIONS(2572), + [anon_sym_or2] = ACTIONS(2572), + [anon_sym_not_DASHin2] = ACTIONS(2572), + [anon_sym_has2] = ACTIONS(2572), + [anon_sym_not_DASHhas2] = ACTIONS(2572), + [anon_sym_starts_DASHwith2] = ACTIONS(2572), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2572), + [anon_sym_ends_DASHwith2] = ACTIONS(2572), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2572), + [anon_sym_EQ_EQ2] = ACTIONS(2572), + [anon_sym_BANG_EQ2] = ACTIONS(2572), + [anon_sym_LT2] = ACTIONS(2574), + [anon_sym_LT_EQ2] = ACTIONS(2572), + [anon_sym_GT_EQ2] = ACTIONS(2572), + [anon_sym_EQ_TILDE2] = ACTIONS(2572), + [anon_sym_BANG_TILDE2] = ACTIONS(2572), + [anon_sym_like2] = ACTIONS(2572), + [anon_sym_not_DASHlike2] = ACTIONS(2572), + [anon_sym_STAR_STAR2] = ACTIONS(2572), + [anon_sym_PLUS_PLUS2] = ACTIONS(2572), + [anon_sym_SLASH2] = ACTIONS(2574), + [anon_sym_mod2] = ACTIONS(2572), + [anon_sym_SLASH_SLASH2] = ACTIONS(2572), + [anon_sym_PLUS2] = ACTIONS(2574), + [anon_sym_bit_DASHshl2] = ACTIONS(2572), + [anon_sym_bit_DASHshr2] = ACTIONS(2572), + [anon_sym_bit_DASHand2] = ACTIONS(2572), + [anon_sym_bit_DASHxor2] = ACTIONS(2572), + [anon_sym_bit_DASHor2] = ACTIONS(2572), + [anon_sym_err_GT] = ACTIONS(2574), + [anon_sym_out_GT] = ACTIONS(2574), + [anon_sym_e_GT] = ACTIONS(2574), + [anon_sym_o_GT] = ACTIONS(2574), + [anon_sym_err_PLUSout_GT] = ACTIONS(2574), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2574), + [anon_sym_o_PLUSe_GT] = ACTIONS(2574), + [anon_sym_e_PLUSo_GT] = ACTIONS(2574), + [anon_sym_err_GT_GT] = ACTIONS(2572), + [anon_sym_out_GT_GT] = ACTIONS(2572), + [anon_sym_e_GT_GT] = ACTIONS(2572), + [anon_sym_o_GT_GT] = ACTIONS(2572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2572), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(941)] = { - [sym_comment] = STATE(941), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), + [STATE(924)] = { + [sym_comment] = STATE(924), + [anon_sym_in] = ACTIONS(2576), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2578), + [anon_sym_DASH2] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2576), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_EQ_GT] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2578), + [anon_sym_and2] = ACTIONS(2576), + [anon_sym_xor2] = ACTIONS(2576), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2576), + [anon_sym_has2] = ACTIONS(2576), + [anon_sym_not_DASHhas2] = ACTIONS(2576), + [anon_sym_starts_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2576), + [anon_sym_ends_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2576), + [anon_sym_EQ_EQ2] = ACTIONS(2576), + [anon_sym_BANG_EQ2] = ACTIONS(2576), + [anon_sym_LT2] = ACTIONS(2578), + [anon_sym_LT_EQ2] = ACTIONS(2576), + [anon_sym_GT_EQ2] = ACTIONS(2576), + [anon_sym_EQ_TILDE2] = ACTIONS(2576), + [anon_sym_BANG_TILDE2] = ACTIONS(2576), + [anon_sym_like2] = ACTIONS(2576), + [anon_sym_not_DASHlike2] = ACTIONS(2576), + [anon_sym_STAR_STAR2] = ACTIONS(2576), + [anon_sym_PLUS_PLUS2] = ACTIONS(2576), + [anon_sym_SLASH2] = ACTIONS(2578), + [anon_sym_mod2] = ACTIONS(2576), + [anon_sym_SLASH_SLASH2] = ACTIONS(2576), + [anon_sym_PLUS2] = ACTIONS(2578), + [anon_sym_bit_DASHshl2] = ACTIONS(2576), + [anon_sym_bit_DASHshr2] = ACTIONS(2576), + [anon_sym_bit_DASHand2] = ACTIONS(2576), + [anon_sym_bit_DASHxor2] = ACTIONS(2576), + [anon_sym_bit_DASHor2] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(942)] = { - [sym_comment] = STATE(942), - [ts_builtin_sym_end] = ACTIONS(1886), - [anon_sym_in] = 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_GT2] = ACTIONS(1888), - [anon_sym_DASH2] = ACTIONS(1886), - [anon_sym_STAR2] = ACTIONS(1888), - [anon_sym_and2] = ACTIONS(1886), - [anon_sym_xor2] = ACTIONS(1886), - [anon_sym_or2] = ACTIONS(1886), - [anon_sym_not_DASHin2] = ACTIONS(1886), - [anon_sym_has2] = ACTIONS(1886), - [anon_sym_not_DASHhas2] = ACTIONS(1886), - [anon_sym_starts_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1886), - [anon_sym_ends_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1886), - [anon_sym_EQ_EQ2] = ACTIONS(1886), - [anon_sym_BANG_EQ2] = ACTIONS(1886), - [anon_sym_LT2] = ACTIONS(1888), - [anon_sym_LT_EQ2] = ACTIONS(1886), - [anon_sym_GT_EQ2] = ACTIONS(1886), - [anon_sym_EQ_TILDE2] = ACTIONS(1886), - [anon_sym_BANG_TILDE2] = ACTIONS(1886), - [anon_sym_like2] = ACTIONS(1886), - [anon_sym_not_DASHlike2] = ACTIONS(1886), - [anon_sym_STAR_STAR2] = ACTIONS(1886), - [anon_sym_PLUS_PLUS2] = ACTIONS(1886), - [anon_sym_SLASH2] = ACTIONS(1888), - [anon_sym_mod2] = ACTIONS(1886), - [anon_sym_SLASH_SLASH2] = ACTIONS(1886), - [anon_sym_PLUS2] = ACTIONS(1888), - [anon_sym_bit_DASHshl2] = ACTIONS(1886), - [anon_sym_bit_DASHshr2] = ACTIONS(1886), - [anon_sym_bit_DASHand2] = ACTIONS(1886), - [anon_sym_bit_DASHxor2] = ACTIONS(1886), - [anon_sym_bit_DASHor2] = ACTIONS(1886), - [anon_sym_DOT_DOT2] = ACTIONS(1888), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1886), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1886), - [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(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), + [STATE(925)] = { + [sym_comment] = STATE(925), + [anon_sym_in] = ACTIONS(1936), + [sym__newline] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_err_GT_PIPE] = ACTIONS(1936), + [anon_sym_out_GT_PIPE] = ACTIONS(1936), + [anon_sym_e_GT_PIPE] = ACTIONS(1936), + [anon_sym_o_GT_PIPE] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1936), + [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_GT2] = ACTIONS(1938), + [anon_sym_DASH2] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_EQ_GT] = ACTIONS(1936), + [anon_sym_STAR2] = ACTIONS(1938), + [anon_sym_and2] = ACTIONS(1936), + [anon_sym_xor2] = ACTIONS(1936), + [anon_sym_or2] = ACTIONS(1936), + [anon_sym_not_DASHin2] = ACTIONS(1936), + [anon_sym_has2] = ACTIONS(1936), + [anon_sym_not_DASHhas2] = ACTIONS(1936), + [anon_sym_starts_DASHwith2] = ACTIONS(1936), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1936), + [anon_sym_ends_DASHwith2] = ACTIONS(1936), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1936), + [anon_sym_EQ_EQ2] = ACTIONS(1936), + [anon_sym_BANG_EQ2] = ACTIONS(1936), + [anon_sym_LT2] = ACTIONS(1938), + [anon_sym_LT_EQ2] = ACTIONS(1936), + [anon_sym_GT_EQ2] = ACTIONS(1936), + [anon_sym_EQ_TILDE2] = ACTIONS(1936), + [anon_sym_BANG_TILDE2] = ACTIONS(1936), + [anon_sym_like2] = ACTIONS(1936), + [anon_sym_not_DASHlike2] = ACTIONS(1936), + [anon_sym_STAR_STAR2] = ACTIONS(1936), + [anon_sym_PLUS_PLUS2] = ACTIONS(1936), + [anon_sym_SLASH2] = ACTIONS(1938), + [anon_sym_mod2] = ACTIONS(1936), + [anon_sym_SLASH_SLASH2] = ACTIONS(1936), + [anon_sym_PLUS2] = ACTIONS(1938), + [anon_sym_bit_DASHshl2] = ACTIONS(1936), + [anon_sym_bit_DASHshr2] = ACTIONS(1936), + [anon_sym_bit_DASHand2] = ACTIONS(1936), + [anon_sym_bit_DASHxor2] = ACTIONS(1936), + [anon_sym_bit_DASHor2] = ACTIONS(1936), + [anon_sym_err_GT] = ACTIONS(1938), + [anon_sym_out_GT] = ACTIONS(1938), + [anon_sym_e_GT] = ACTIONS(1938), + [anon_sym_o_GT] = ACTIONS(1938), + [anon_sym_err_PLUSout_GT] = ACTIONS(1938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1938), + [anon_sym_o_PLUSe_GT] = ACTIONS(1938), + [anon_sym_e_PLUSo_GT] = ACTIONS(1938), + [anon_sym_err_GT_GT] = ACTIONS(1936), + [anon_sym_out_GT_GT] = ACTIONS(1936), + [anon_sym_e_GT_GT] = ACTIONS(1936), + [anon_sym_o_GT_GT] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1936), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(943)] = { - [sym_comment] = STATE(943), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_EQ_GT] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [STATE(926)] = { + [sym_comment] = STATE(926), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(927)] = { + [sym_comment] = STATE(927), + [anon_sym_in] = ACTIONS(2568), + [sym__newline] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_err_GT_PIPE] = ACTIONS(2568), + [anon_sym_out_GT_PIPE] = ACTIONS(2568), + [anon_sym_e_GT_PIPE] = ACTIONS(2568), + [anon_sym_o_GT_PIPE] = ACTIONS(2568), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2568), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2568), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2568), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2568), + [anon_sym_RPAREN] = ACTIONS(2568), + [anon_sym_GT2] = ACTIONS(2570), + [anon_sym_DASH2] = ACTIONS(2568), + [anon_sym_RBRACE] = ACTIONS(2568), + [anon_sym_STAR2] = ACTIONS(2570), + [anon_sym_and2] = ACTIONS(2568), + [anon_sym_xor2] = ACTIONS(2568), + [anon_sym_or2] = ACTIONS(2568), + [anon_sym_not_DASHin2] = ACTIONS(2568), + [anon_sym_has2] = ACTIONS(2568), + [anon_sym_not_DASHhas2] = ACTIONS(2568), + [anon_sym_starts_DASHwith2] = ACTIONS(2568), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2568), + [anon_sym_ends_DASHwith2] = ACTIONS(2568), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2568), + [anon_sym_EQ_EQ2] = ACTIONS(2568), + [anon_sym_BANG_EQ2] = ACTIONS(2568), + [anon_sym_LT2] = ACTIONS(2570), + [anon_sym_LT_EQ2] = ACTIONS(2568), + [anon_sym_GT_EQ2] = ACTIONS(2568), + [anon_sym_EQ_TILDE2] = ACTIONS(2568), + [anon_sym_BANG_TILDE2] = ACTIONS(2568), + [anon_sym_like2] = ACTIONS(2568), + [anon_sym_not_DASHlike2] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_STAR_STAR2] = ACTIONS(2568), + [anon_sym_PLUS_PLUS2] = ACTIONS(2568), + [anon_sym_SLASH2] = ACTIONS(2570), + [anon_sym_mod2] = ACTIONS(2568), + [anon_sym_SLASH_SLASH2] = ACTIONS(2568), + [anon_sym_PLUS2] = ACTIONS(2570), + [anon_sym_bit_DASHshl2] = ACTIONS(2568), + [anon_sym_bit_DASHshr2] = ACTIONS(2568), + [anon_sym_bit_DASHand2] = ACTIONS(2568), + [anon_sym_bit_DASHxor2] = ACTIONS(2568), + [anon_sym_bit_DASHor2] = ACTIONS(2568), + [anon_sym_err_GT] = ACTIONS(2570), + [anon_sym_out_GT] = ACTIONS(2570), + [anon_sym_e_GT] = ACTIONS(2570), + [anon_sym_o_GT] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT] = ACTIONS(2570), + [anon_sym_err_GT_GT] = ACTIONS(2568), + [anon_sym_out_GT_GT] = ACTIONS(2568), + [anon_sym_e_GT_GT] = ACTIONS(2568), + [anon_sym_o_GT_GT] = ACTIONS(2568), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2568), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2568), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2568), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2568), + [sym__unquoted_pattern] = ACTIONS(1956), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(928)] = { + [sym_comment] = STATE(928), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(929)] = { + [sym_comment] = STATE(929), + [ts_builtin_sym_end] = ACTIONS(2076), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2076), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_err_GT_PIPE] = ACTIONS(2076), + [anon_sym_out_GT_PIPE] = ACTIONS(2076), + [anon_sym_e_GT_PIPE] = ACTIONS(2076), + [anon_sym_o_GT_PIPE] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), + [anon_sym_GT2] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_STAR2] = ACTIONS(2078), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2078), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2078), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_DOT_DOT2] = ACTIONS(1750), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1752), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1752), + [anon_sym_err_GT] = ACTIONS(2080), + [anon_sym_out_GT] = ACTIONS(2080), + [anon_sym_e_GT] = ACTIONS(2080), + [anon_sym_o_GT] = ACTIONS(2080), + [anon_sym_err_PLUSout_GT] = ACTIONS(2080), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2080), + [anon_sym_o_PLUSe_GT] = ACTIONS(2080), + [anon_sym_e_PLUSo_GT] = ACTIONS(2080), + [anon_sym_err_GT_GT] = ACTIONS(2076), + [anon_sym_out_GT_GT] = ACTIONS(2076), + [anon_sym_e_GT_GT] = ACTIONS(2076), + [anon_sym_o_GT_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(930)] = { + [sym_comment] = STATE(930), + [ts_builtin_sym_end] = ACTIONS(1570), + [anon_sym_in] = 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_GT2] = ACTIONS(1568), + [anon_sym_DASH2] = ACTIONS(1570), + [anon_sym_STAR2] = ACTIONS(1568), + [anon_sym_and2] = ACTIONS(1570), + [anon_sym_xor2] = ACTIONS(1570), + [anon_sym_or2] = ACTIONS(1570), + [anon_sym_not_DASHin2] = ACTIONS(1570), + [anon_sym_has2] = ACTIONS(1570), + [anon_sym_not_DASHhas2] = ACTIONS(1570), + [anon_sym_starts_DASHwith2] = ACTIONS(1570), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1570), + [anon_sym_ends_DASHwith2] = ACTIONS(1570), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1570), + [anon_sym_EQ_EQ2] = ACTIONS(1570), + [anon_sym_BANG_EQ2] = ACTIONS(1570), + [anon_sym_LT2] = ACTIONS(1568), + [anon_sym_LT_EQ2] = ACTIONS(1570), + [anon_sym_GT_EQ2] = ACTIONS(1570), + [anon_sym_EQ_TILDE2] = ACTIONS(1570), + [anon_sym_BANG_TILDE2] = ACTIONS(1570), + [anon_sym_like2] = ACTIONS(1570), + [anon_sym_not_DASHlike2] = ACTIONS(1570), + [anon_sym_STAR_STAR2] = ACTIONS(1570), + [anon_sym_PLUS_PLUS2] = ACTIONS(1570), + [anon_sym_SLASH2] = ACTIONS(1568), + [anon_sym_mod2] = ACTIONS(1570), + [anon_sym_SLASH_SLASH2] = ACTIONS(1570), + [anon_sym_PLUS2] = ACTIONS(1568), + [anon_sym_bit_DASHshl2] = ACTIONS(1570), + [anon_sym_bit_DASHshr2] = ACTIONS(1570), + [anon_sym_bit_DASHand2] = ACTIONS(1570), + [anon_sym_bit_DASHxor2] = ACTIONS(1570), + [anon_sym_bit_DASHor2] = ACTIONS(1570), + [anon_sym_DOT_DOT2] = ACTIONS(1568), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1570), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1570), + [anon_sym_err_GT] = ACTIONS(1568), + [anon_sym_out_GT] = ACTIONS(1568), + [anon_sym_e_GT] = ACTIONS(1568), + [anon_sym_o_GT] = ACTIONS(1568), + [anon_sym_err_PLUSout_GT] = ACTIONS(1568), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1568), + [anon_sym_o_PLUSe_GT] = ACTIONS(1568), + [anon_sym_e_PLUSo_GT] = ACTIONS(1568), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(931)] = { + [sym_comment] = STATE(931), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(932)] = { + [sym_comment] = STATE(932), + [anon_sym_in] = ACTIONS(2580), + [sym__newline] = ACTIONS(2580), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_err_GT_PIPE] = ACTIONS(2580), + [anon_sym_out_GT_PIPE] = ACTIONS(2580), + [anon_sym_e_GT_PIPE] = ACTIONS(2580), + [anon_sym_o_GT_PIPE] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2580), + [anon_sym_RPAREN] = ACTIONS(2580), + [anon_sym_GT2] = ACTIONS(2582), + [anon_sym_DASH2] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2580), + [anon_sym_EQ_GT] = ACTIONS(2580), + [anon_sym_STAR2] = ACTIONS(2582), + [anon_sym_and2] = ACTIONS(2580), + [anon_sym_xor2] = ACTIONS(2580), + [anon_sym_or2] = ACTIONS(2580), + [anon_sym_not_DASHin2] = ACTIONS(2580), + [anon_sym_has2] = ACTIONS(2580), + [anon_sym_not_DASHhas2] = ACTIONS(2580), + [anon_sym_starts_DASHwith2] = ACTIONS(2580), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2580), + [anon_sym_ends_DASHwith2] = ACTIONS(2580), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2580), + [anon_sym_EQ_EQ2] = ACTIONS(2580), + [anon_sym_BANG_EQ2] = ACTIONS(2580), + [anon_sym_LT2] = ACTIONS(2582), + [anon_sym_LT_EQ2] = ACTIONS(2580), + [anon_sym_GT_EQ2] = ACTIONS(2580), + [anon_sym_EQ_TILDE2] = ACTIONS(2580), + [anon_sym_BANG_TILDE2] = ACTIONS(2580), + [anon_sym_like2] = ACTIONS(2580), + [anon_sym_not_DASHlike2] = ACTIONS(2580), + [anon_sym_STAR_STAR2] = ACTIONS(2580), + [anon_sym_PLUS_PLUS2] = ACTIONS(2580), + [anon_sym_SLASH2] = ACTIONS(2582), + [anon_sym_mod2] = ACTIONS(2580), + [anon_sym_SLASH_SLASH2] = ACTIONS(2580), + [anon_sym_PLUS2] = ACTIONS(2582), + [anon_sym_bit_DASHshl2] = ACTIONS(2580), + [anon_sym_bit_DASHshr2] = ACTIONS(2580), + [anon_sym_bit_DASHand2] = ACTIONS(2580), + [anon_sym_bit_DASHxor2] = ACTIONS(2580), + [anon_sym_bit_DASHor2] = ACTIONS(2580), + [anon_sym_err_GT] = ACTIONS(2582), + [anon_sym_out_GT] = ACTIONS(2582), + [anon_sym_e_GT] = ACTIONS(2582), + [anon_sym_o_GT] = ACTIONS(2582), + [anon_sym_err_PLUSout_GT] = ACTIONS(2582), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2582), + [anon_sym_o_PLUSe_GT] = ACTIONS(2582), + [anon_sym_e_PLUSo_GT] = ACTIONS(2582), + [anon_sym_err_GT_GT] = ACTIONS(2580), + [anon_sym_out_GT_GT] = ACTIONS(2580), + [anon_sym_e_GT_GT] = ACTIONS(2580), + [anon_sym_o_GT_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2580), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(933)] = { + [sym_comment] = STATE(933), + [anon_sym_in] = ACTIONS(2584), + [sym__newline] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_err_GT_PIPE] = ACTIONS(2584), + [anon_sym_out_GT_PIPE] = ACTIONS(2584), + [anon_sym_e_GT_PIPE] = ACTIONS(2584), + [anon_sym_o_GT_PIPE] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2584), + [anon_sym_RPAREN] = ACTIONS(2584), + [anon_sym_GT2] = ACTIONS(2586), + [anon_sym_DASH2] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_EQ_GT] = ACTIONS(2584), + [anon_sym_STAR2] = ACTIONS(2586), + [anon_sym_and2] = ACTIONS(2584), + [anon_sym_xor2] = ACTIONS(2584), + [anon_sym_or2] = ACTIONS(2584), + [anon_sym_not_DASHin2] = ACTIONS(2584), + [anon_sym_has2] = ACTIONS(2584), + [anon_sym_not_DASHhas2] = ACTIONS(2584), + [anon_sym_starts_DASHwith2] = ACTIONS(2584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2584), + [anon_sym_ends_DASHwith2] = ACTIONS(2584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2584), + [anon_sym_EQ_EQ2] = ACTIONS(2584), + [anon_sym_BANG_EQ2] = ACTIONS(2584), + [anon_sym_LT2] = ACTIONS(2586), + [anon_sym_LT_EQ2] = ACTIONS(2584), + [anon_sym_GT_EQ2] = ACTIONS(2584), + [anon_sym_EQ_TILDE2] = ACTIONS(2584), + [anon_sym_BANG_TILDE2] = ACTIONS(2584), + [anon_sym_like2] = ACTIONS(2584), + [anon_sym_not_DASHlike2] = ACTIONS(2584), + [anon_sym_STAR_STAR2] = ACTIONS(2584), + [anon_sym_PLUS_PLUS2] = ACTIONS(2584), + [anon_sym_SLASH2] = ACTIONS(2586), + [anon_sym_mod2] = ACTIONS(2584), + [anon_sym_SLASH_SLASH2] = ACTIONS(2584), + [anon_sym_PLUS2] = ACTIONS(2586), + [anon_sym_bit_DASHshl2] = ACTIONS(2584), + [anon_sym_bit_DASHshr2] = ACTIONS(2584), + [anon_sym_bit_DASHand2] = ACTIONS(2584), + [anon_sym_bit_DASHxor2] = ACTIONS(2584), + [anon_sym_bit_DASHor2] = ACTIONS(2584), + [anon_sym_err_GT] = ACTIONS(2586), + [anon_sym_out_GT] = ACTIONS(2586), + [anon_sym_e_GT] = ACTIONS(2586), + [anon_sym_o_GT] = ACTIONS(2586), + [anon_sym_err_PLUSout_GT] = ACTIONS(2586), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2586), + [anon_sym_o_PLUSe_GT] = ACTIONS(2586), + [anon_sym_e_PLUSo_GT] = ACTIONS(2586), + [anon_sym_err_GT_GT] = ACTIONS(2584), + [anon_sym_out_GT_GT] = ACTIONS(2584), + [anon_sym_e_GT_GT] = ACTIONS(2584), + [anon_sym_o_GT_GT] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2584), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(934)] = { + [sym_comment] = STATE(934), + [ts_builtin_sym_end] = ACTIONS(2074), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_GT2] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_STAR2] = ACTIONS(2078), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2078), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2078), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_DOT_DOT2] = ACTIONS(1750), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1752), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1752), + [anon_sym_err_GT] = ACTIONS(2078), + [anon_sym_out_GT] = ACTIONS(2078), + [anon_sym_e_GT] = ACTIONS(2078), + [anon_sym_o_GT] = ACTIONS(2078), + [anon_sym_err_PLUSout_GT] = ACTIONS(2078), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), + [anon_sym_o_PLUSe_GT] = ACTIONS(2078), + [anon_sym_e_PLUSo_GT] = ACTIONS(2078), + [anon_sym_err_GT_GT] = ACTIONS(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(935)] = { + [sym_comment] = STATE(935), + [ts_builtin_sym_end] = ACTIONS(2146), + [anon_sym_in] = ACTIONS(2146), + [sym__newline] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_err_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_GT_PIPE] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), + [anon_sym_GT2] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_STAR2] = ACTIONS(2148), + [anon_sym_and2] = ACTIONS(2146), + [anon_sym_xor2] = ACTIONS(2146), + [anon_sym_or2] = ACTIONS(2146), + [anon_sym_not_DASHin2] = ACTIONS(2146), + [anon_sym_has2] = ACTIONS(2146), + [anon_sym_not_DASHhas2] = ACTIONS(2146), + [anon_sym_starts_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2146), + [anon_sym_ends_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2146), + [anon_sym_EQ_EQ2] = ACTIONS(2146), + [anon_sym_BANG_EQ2] = ACTIONS(2146), + [anon_sym_LT2] = ACTIONS(2148), + [anon_sym_LT_EQ2] = ACTIONS(2146), + [anon_sym_GT_EQ2] = ACTIONS(2146), + [anon_sym_EQ_TILDE2] = ACTIONS(2146), + [anon_sym_BANG_TILDE2] = ACTIONS(2146), + [anon_sym_like2] = ACTIONS(2146), + [anon_sym_not_DASHlike2] = ACTIONS(2146), + [anon_sym_STAR_STAR2] = ACTIONS(2146), + [anon_sym_PLUS_PLUS2] = ACTIONS(2146), + [anon_sym_SLASH2] = ACTIONS(2148), + [anon_sym_mod2] = ACTIONS(2146), + [anon_sym_SLASH_SLASH2] = ACTIONS(2146), + [anon_sym_PLUS2] = ACTIONS(2148), + [anon_sym_bit_DASHshl2] = ACTIONS(2146), + [anon_sym_bit_DASHshr2] = ACTIONS(2146), + [anon_sym_bit_DASHand2] = ACTIONS(2146), + [anon_sym_bit_DASHxor2] = ACTIONS(2146), + [anon_sym_bit_DASHor2] = ACTIONS(2146), + [anon_sym_DOT_DOT2] = ACTIONS(2588), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2590), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2590), + [anon_sym_err_GT] = ACTIONS(2148), + [anon_sym_out_GT] = ACTIONS(2148), + [anon_sym_e_GT] = ACTIONS(2148), + [anon_sym_o_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT] = ACTIONS(2148), + [anon_sym_err_GT_GT] = ACTIONS(2146), + [anon_sym_out_GT_GT] = ACTIONS(2146), + [anon_sym_e_GT_GT] = ACTIONS(2146), + [anon_sym_o_GT_GT] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(936)] = { + [sym_comment] = STATE(936), + [anon_sym_in] = ACTIONS(2592), + [sym__newline] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2592), + [anon_sym_err_GT_PIPE] = ACTIONS(2592), + [anon_sym_out_GT_PIPE] = ACTIONS(2592), + [anon_sym_e_GT_PIPE] = ACTIONS(2592), + [anon_sym_o_GT_PIPE] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2592), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_GT2] = ACTIONS(2594), + [anon_sym_DASH2] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_EQ_GT] = ACTIONS(2592), + [anon_sym_STAR2] = ACTIONS(2594), + [anon_sym_and2] = ACTIONS(2592), + [anon_sym_xor2] = ACTIONS(2592), + [anon_sym_or2] = ACTIONS(2592), + [anon_sym_not_DASHin2] = ACTIONS(2592), + [anon_sym_has2] = ACTIONS(2592), + [anon_sym_not_DASHhas2] = ACTIONS(2592), + [anon_sym_starts_DASHwith2] = ACTIONS(2592), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2592), + [anon_sym_ends_DASHwith2] = ACTIONS(2592), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2592), + [anon_sym_EQ_EQ2] = ACTIONS(2592), + [anon_sym_BANG_EQ2] = ACTIONS(2592), + [anon_sym_LT2] = ACTIONS(2594), + [anon_sym_LT_EQ2] = ACTIONS(2592), + [anon_sym_GT_EQ2] = ACTIONS(2592), + [anon_sym_EQ_TILDE2] = ACTIONS(2592), + [anon_sym_BANG_TILDE2] = ACTIONS(2592), + [anon_sym_like2] = ACTIONS(2592), + [anon_sym_not_DASHlike2] = ACTIONS(2592), + [anon_sym_STAR_STAR2] = ACTIONS(2592), + [anon_sym_PLUS_PLUS2] = ACTIONS(2592), + [anon_sym_SLASH2] = ACTIONS(2594), + [anon_sym_mod2] = ACTIONS(2592), + [anon_sym_SLASH_SLASH2] = ACTIONS(2592), + [anon_sym_PLUS2] = ACTIONS(2594), + [anon_sym_bit_DASHshl2] = ACTIONS(2592), + [anon_sym_bit_DASHshr2] = ACTIONS(2592), + [anon_sym_bit_DASHand2] = ACTIONS(2592), + [anon_sym_bit_DASHxor2] = ACTIONS(2592), + [anon_sym_bit_DASHor2] = ACTIONS(2592), + [anon_sym_err_GT] = ACTIONS(2594), + [anon_sym_out_GT] = ACTIONS(2594), + [anon_sym_e_GT] = ACTIONS(2594), + [anon_sym_o_GT] = ACTIONS(2594), + [anon_sym_err_PLUSout_GT] = ACTIONS(2594), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2594), + [anon_sym_o_PLUSe_GT] = ACTIONS(2594), + [anon_sym_e_PLUSo_GT] = ACTIONS(2594), + [anon_sym_err_GT_GT] = ACTIONS(2592), + [anon_sym_out_GT_GT] = ACTIONS(2592), + [anon_sym_e_GT_GT] = ACTIONS(2592), + [anon_sym_o_GT_GT] = ACTIONS(2592), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2592), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2592), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2592), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2592), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(937)] = { + [sym_comment] = STATE(937), + [anon_sym_in] = ACTIONS(2596), + [sym__newline] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_err_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_GT_PIPE] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2596), + [anon_sym_RPAREN] = ACTIONS(2596), + [anon_sym_GT2] = ACTIONS(2598), + [anon_sym_DASH2] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_RBRACE] = ACTIONS(2596), + [anon_sym_EQ_GT] = ACTIONS(2596), + [anon_sym_STAR2] = ACTIONS(2598), + [anon_sym_and2] = ACTIONS(2596), + [anon_sym_xor2] = ACTIONS(2596), + [anon_sym_or2] = ACTIONS(2596), + [anon_sym_not_DASHin2] = ACTIONS(2596), + [anon_sym_has2] = ACTIONS(2596), + [anon_sym_not_DASHhas2] = ACTIONS(2596), + [anon_sym_starts_DASHwith2] = ACTIONS(2596), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2596), + [anon_sym_ends_DASHwith2] = ACTIONS(2596), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2596), + [anon_sym_EQ_EQ2] = ACTIONS(2596), + [anon_sym_BANG_EQ2] = ACTIONS(2596), + [anon_sym_LT2] = ACTIONS(2598), + [anon_sym_LT_EQ2] = ACTIONS(2596), + [anon_sym_GT_EQ2] = ACTIONS(2596), + [anon_sym_EQ_TILDE2] = ACTIONS(2596), + [anon_sym_BANG_TILDE2] = ACTIONS(2596), + [anon_sym_like2] = ACTIONS(2596), + [anon_sym_not_DASHlike2] = ACTIONS(2596), + [anon_sym_STAR_STAR2] = ACTIONS(2596), + [anon_sym_PLUS_PLUS2] = ACTIONS(2596), + [anon_sym_SLASH2] = ACTIONS(2598), + [anon_sym_mod2] = ACTIONS(2596), + [anon_sym_SLASH_SLASH2] = ACTIONS(2596), + [anon_sym_PLUS2] = ACTIONS(2598), + [anon_sym_bit_DASHshl2] = ACTIONS(2596), + [anon_sym_bit_DASHshr2] = ACTIONS(2596), + [anon_sym_bit_DASHand2] = ACTIONS(2596), + [anon_sym_bit_DASHxor2] = ACTIONS(2596), + [anon_sym_bit_DASHor2] = ACTIONS(2596), + [anon_sym_err_GT] = ACTIONS(2598), + [anon_sym_out_GT] = ACTIONS(2598), + [anon_sym_e_GT] = ACTIONS(2598), + [anon_sym_o_GT] = ACTIONS(2598), + [anon_sym_err_PLUSout_GT] = ACTIONS(2598), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2598), + [anon_sym_o_PLUSe_GT] = ACTIONS(2598), + [anon_sym_e_PLUSo_GT] = ACTIONS(2598), + [anon_sym_err_GT_GT] = ACTIONS(2596), + [anon_sym_out_GT_GT] = ACTIONS(2596), + [anon_sym_e_GT_GT] = ACTIONS(2596), + [anon_sym_o_GT_GT] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2596), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(938)] = { + [sym_comment] = STATE(938), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1613), + [anon_sym_DASH2] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_EQ_GT] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1613), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1613), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1706), + [anon_sym_SLASH2] = ACTIONS(1613), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1613), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), [anon_sym_bit_DASHand2] = ACTIONS(1706), [anon_sym_bit_DASHxor2] = ACTIONS(1706), [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), + [anon_sym_err_GT] = ACTIONS(1613), + [anon_sym_out_GT] = ACTIONS(1613), + [anon_sym_e_GT] = ACTIONS(1613), + [anon_sym_o_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT] = ACTIONS(1613), [anon_sym_err_GT_GT] = ACTIONS(1706), [anon_sym_out_GT_GT] = ACTIONS(1706), [anon_sym_e_GT_GT] = ACTIONS(1706), @@ -117590,1358 +117270,1220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(939)] = { + [sym_comment] = STATE(939), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2076), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_err_GT_PIPE] = ACTIONS(2076), + [anon_sym_out_GT_PIPE] = ACTIONS(2076), + [anon_sym_e_GT_PIPE] = ACTIONS(2076), + [anon_sym_o_GT_PIPE] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), + [anon_sym_RPAREN] = ACTIONS(2076), + [anon_sym_GT2] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_EQ_GT] = ACTIONS(2076), + [anon_sym_STAR2] = ACTIONS(2078), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2078), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2078), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_err_GT] = ACTIONS(2080), + [anon_sym_out_GT] = ACTIONS(2080), + [anon_sym_e_GT] = ACTIONS(2080), + [anon_sym_o_GT] = ACTIONS(2080), + [anon_sym_err_PLUSout_GT] = ACTIONS(2080), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2080), + [anon_sym_o_PLUSe_GT] = ACTIONS(2080), + [anon_sym_e_PLUSo_GT] = ACTIONS(2080), + [anon_sym_err_GT_GT] = ACTIONS(2076), + [anon_sym_out_GT_GT] = ACTIONS(2076), + [anon_sym_e_GT_GT] = ACTIONS(2076), + [anon_sym_o_GT_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(940)] = { + [sym_comment] = STATE(940), + [anon_sym_in] = ACTIONS(2600), + [sym__newline] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2600), + [anon_sym_PIPE] = ACTIONS(2600), + [anon_sym_err_GT_PIPE] = ACTIONS(2600), + [anon_sym_out_GT_PIPE] = ACTIONS(2600), + [anon_sym_e_GT_PIPE] = ACTIONS(2600), + [anon_sym_o_GT_PIPE] = ACTIONS(2600), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2600), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2600), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2600), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2600), + [anon_sym_GT2] = ACTIONS(2602), + [anon_sym_DASH2] = ACTIONS(2600), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_RBRACE] = ACTIONS(2600), + [anon_sym_EQ_GT] = ACTIONS(2600), + [anon_sym_STAR2] = ACTIONS(2602), + [anon_sym_and2] = ACTIONS(2600), + [anon_sym_xor2] = ACTIONS(2600), + [anon_sym_or2] = ACTIONS(2600), + [anon_sym_not_DASHin2] = ACTIONS(2600), + [anon_sym_has2] = ACTIONS(2600), + [anon_sym_not_DASHhas2] = ACTIONS(2600), + [anon_sym_starts_DASHwith2] = ACTIONS(2600), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2600), + [anon_sym_ends_DASHwith2] = ACTIONS(2600), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2600), + [anon_sym_EQ_EQ2] = ACTIONS(2600), + [anon_sym_BANG_EQ2] = ACTIONS(2600), + [anon_sym_LT2] = ACTIONS(2602), + [anon_sym_LT_EQ2] = ACTIONS(2600), + [anon_sym_GT_EQ2] = ACTIONS(2600), + [anon_sym_EQ_TILDE2] = ACTIONS(2600), + [anon_sym_BANG_TILDE2] = ACTIONS(2600), + [anon_sym_like2] = ACTIONS(2600), + [anon_sym_not_DASHlike2] = ACTIONS(2600), + [anon_sym_STAR_STAR2] = ACTIONS(2600), + [anon_sym_PLUS_PLUS2] = ACTIONS(2600), + [anon_sym_SLASH2] = ACTIONS(2602), + [anon_sym_mod2] = ACTIONS(2600), + [anon_sym_SLASH_SLASH2] = ACTIONS(2600), + [anon_sym_PLUS2] = ACTIONS(2602), + [anon_sym_bit_DASHshl2] = ACTIONS(2600), + [anon_sym_bit_DASHshr2] = ACTIONS(2600), + [anon_sym_bit_DASHand2] = ACTIONS(2600), + [anon_sym_bit_DASHxor2] = ACTIONS(2600), + [anon_sym_bit_DASHor2] = ACTIONS(2600), + [anon_sym_err_GT] = ACTIONS(2602), + [anon_sym_out_GT] = ACTIONS(2602), + [anon_sym_e_GT] = ACTIONS(2602), + [anon_sym_o_GT] = ACTIONS(2602), + [anon_sym_err_PLUSout_GT] = ACTIONS(2602), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2602), + [anon_sym_o_PLUSe_GT] = ACTIONS(2602), + [anon_sym_e_PLUSo_GT] = ACTIONS(2602), + [anon_sym_err_GT_GT] = ACTIONS(2600), + [anon_sym_out_GT_GT] = ACTIONS(2600), + [anon_sym_e_GT_GT] = ACTIONS(2600), + [anon_sym_o_GT_GT] = ACTIONS(2600), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2600), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2600), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2600), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2600), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(941)] = { + [sym_comment] = STATE(941), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(942)] = { + [sym_comment] = STATE(942), + [anon_sym_in] = ACTIONS(2604), + [sym__newline] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_err_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_GT_PIPE] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2604), + [anon_sym_RPAREN] = ACTIONS(2604), + [anon_sym_GT2] = ACTIONS(2606), + [anon_sym_DASH2] = ACTIONS(2604), + [anon_sym_LBRACE] = ACTIONS(2604), + [anon_sym_RBRACE] = ACTIONS(2604), + [anon_sym_EQ_GT] = ACTIONS(2604), + [anon_sym_STAR2] = ACTIONS(2606), + [anon_sym_and2] = ACTIONS(2604), + [anon_sym_xor2] = ACTIONS(2604), + [anon_sym_or2] = ACTIONS(2604), + [anon_sym_not_DASHin2] = ACTIONS(2604), + [anon_sym_has2] = ACTIONS(2604), + [anon_sym_not_DASHhas2] = ACTIONS(2604), + [anon_sym_starts_DASHwith2] = ACTIONS(2604), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2604), + [anon_sym_ends_DASHwith2] = ACTIONS(2604), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2604), + [anon_sym_EQ_EQ2] = ACTIONS(2604), + [anon_sym_BANG_EQ2] = ACTIONS(2604), + [anon_sym_LT2] = ACTIONS(2606), + [anon_sym_LT_EQ2] = ACTIONS(2604), + [anon_sym_GT_EQ2] = ACTIONS(2604), + [anon_sym_EQ_TILDE2] = ACTIONS(2604), + [anon_sym_BANG_TILDE2] = ACTIONS(2604), + [anon_sym_like2] = ACTIONS(2604), + [anon_sym_not_DASHlike2] = ACTIONS(2604), + [anon_sym_STAR_STAR2] = ACTIONS(2604), + [anon_sym_PLUS_PLUS2] = ACTIONS(2604), + [anon_sym_SLASH2] = ACTIONS(2606), + [anon_sym_mod2] = ACTIONS(2604), + [anon_sym_SLASH_SLASH2] = ACTIONS(2604), + [anon_sym_PLUS2] = ACTIONS(2606), + [anon_sym_bit_DASHshl2] = ACTIONS(2604), + [anon_sym_bit_DASHshr2] = ACTIONS(2604), + [anon_sym_bit_DASHand2] = ACTIONS(2604), + [anon_sym_bit_DASHxor2] = ACTIONS(2604), + [anon_sym_bit_DASHor2] = ACTIONS(2604), + [anon_sym_err_GT] = ACTIONS(2606), + [anon_sym_out_GT] = ACTIONS(2606), + [anon_sym_e_GT] = ACTIONS(2606), + [anon_sym_o_GT] = ACTIONS(2606), + [anon_sym_err_PLUSout_GT] = ACTIONS(2606), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2606), + [anon_sym_o_PLUSe_GT] = ACTIONS(2606), + [anon_sym_e_PLUSo_GT] = ACTIONS(2606), + [anon_sym_err_GT_GT] = ACTIONS(2604), + [anon_sym_out_GT_GT] = ACTIONS(2604), + [anon_sym_e_GT_GT] = ACTIONS(2604), + [anon_sym_o_GT_GT] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2604), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(943)] = { + [sym_comment] = STATE(943), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(944)] = { [sym_comment] = STATE(944), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_EQ_GT] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [ts_builtin_sym_end] = ACTIONS(2090), + [anon_sym_in] = ACTIONS(2090), + [sym__newline] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_err_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_GT_PIPE] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2090), + [anon_sym_GT2] = ACTIONS(2092), + [anon_sym_DASH2] = ACTIONS(2090), + [anon_sym_STAR2] = ACTIONS(2092), + [anon_sym_and2] = ACTIONS(2090), + [anon_sym_xor2] = ACTIONS(2090), + [anon_sym_or2] = ACTIONS(2090), + [anon_sym_not_DASHin2] = ACTIONS(2090), + [anon_sym_has2] = ACTIONS(2090), + [anon_sym_not_DASHhas2] = ACTIONS(2090), + [anon_sym_starts_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2090), + [anon_sym_ends_DASHwith2] = ACTIONS(2090), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2090), + [anon_sym_EQ_EQ2] = ACTIONS(2090), + [anon_sym_BANG_EQ2] = ACTIONS(2090), + [anon_sym_LT2] = ACTIONS(2092), + [anon_sym_LT_EQ2] = ACTIONS(2090), + [anon_sym_GT_EQ2] = ACTIONS(2090), + [anon_sym_EQ_TILDE2] = ACTIONS(2090), + [anon_sym_BANG_TILDE2] = ACTIONS(2090), + [anon_sym_like2] = ACTIONS(2090), + [anon_sym_not_DASHlike2] = ACTIONS(2090), + [anon_sym_STAR_STAR2] = ACTIONS(2090), + [anon_sym_PLUS_PLUS2] = ACTIONS(2090), + [anon_sym_SLASH2] = ACTIONS(2092), + [anon_sym_mod2] = ACTIONS(2090), + [anon_sym_SLASH_SLASH2] = ACTIONS(2090), + [anon_sym_PLUS2] = ACTIONS(2092), + [anon_sym_bit_DASHshl2] = ACTIONS(2090), + [anon_sym_bit_DASHshr2] = ACTIONS(2090), + [anon_sym_bit_DASHand2] = ACTIONS(2090), + [anon_sym_bit_DASHxor2] = ACTIONS(2090), + [anon_sym_bit_DASHor2] = ACTIONS(2090), + [anon_sym_DOT_DOT2] = ACTIONS(2608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2610), + [anon_sym_err_GT] = ACTIONS(2092), + [anon_sym_out_GT] = ACTIONS(2092), + [anon_sym_e_GT] = ACTIONS(2092), + [anon_sym_o_GT] = ACTIONS(2092), + [anon_sym_err_PLUSout_GT] = ACTIONS(2092), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2092), + [anon_sym_o_PLUSe_GT] = ACTIONS(2092), + [anon_sym_e_PLUSo_GT] = ACTIONS(2092), + [anon_sym_err_GT_GT] = ACTIONS(2090), + [anon_sym_out_GT_GT] = ACTIONS(2090), + [anon_sym_e_GT_GT] = ACTIONS(2090), + [anon_sym_o_GT_GT] = ACTIONS(2090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2090), [anon_sym_POUND] = ACTIONS(3), }, [STATE(945)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym__match_pattern_expression] = STATE(4141), + [sym__match_pattern_value] = STATE(4519), + [sym__match_pattern_list_body] = STATE(4778), + [sym__match_pattern_list_body_or_empty] = STATE(4378), + [sym__match_pattern_list] = STATE(4520), + [sym__match_pattern_rest] = STATE(4827), + [sym__match_pattern_record] = STATE(4521), + [sym_expr_parenthesized] = STATE(3757), + [sym_val_range] = STATE(4519), + [sym__val_range] = STATE(4822), + [sym_val_nothing] = STATE(4521), + [sym_val_bool] = STATE(4145), + [sym_val_variable] = STATE(3758), + [sym_val_number] = STATE(4521), + [sym__val_number_decimal] = STATE(3555), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4521), + [sym_val_filesize] = STATE(4521), + [sym_val_binary] = STATE(4521), + [sym_val_string] = STATE(4521), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_list] = STATE(4830), + [sym__table_head] = STATE(3717), + [sym_val_table] = STATE(4521), + [sym__unquoted_in_list] = STATE(4141), + [sym__unquoted_anonymous_prefix] = STATE(4822), [sym_comment] = STATE(945), - [anon_sym_in] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_PIPE] = ACTIONS(2599), - [anon_sym_err_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_GT_PIPE] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2599), - [anon_sym_RPAREN] = ACTIONS(2599), - [anon_sym_GT2] = ACTIONS(2601), - [anon_sym_DASH2] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2599), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_EQ_GT] = ACTIONS(2599), - [anon_sym_STAR2] = ACTIONS(2601), - [anon_sym_and2] = ACTIONS(2599), - [anon_sym_xor2] = ACTIONS(2599), - [anon_sym_or2] = ACTIONS(2599), - [anon_sym_not_DASHin2] = ACTIONS(2599), - [anon_sym_has2] = ACTIONS(2599), - [anon_sym_not_DASHhas2] = ACTIONS(2599), - [anon_sym_starts_DASHwith2] = ACTIONS(2599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2599), - [anon_sym_ends_DASHwith2] = ACTIONS(2599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2599), - [anon_sym_EQ_EQ2] = ACTIONS(2599), - [anon_sym_BANG_EQ2] = ACTIONS(2599), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LT_EQ2] = ACTIONS(2599), - [anon_sym_GT_EQ2] = ACTIONS(2599), - [anon_sym_EQ_TILDE2] = ACTIONS(2599), - [anon_sym_BANG_TILDE2] = ACTIONS(2599), - [anon_sym_like2] = ACTIONS(2599), - [anon_sym_not_DASHlike2] = ACTIONS(2599), - [anon_sym_STAR_STAR2] = ACTIONS(2599), - [anon_sym_PLUS_PLUS2] = ACTIONS(2599), - [anon_sym_SLASH2] = ACTIONS(2601), - [anon_sym_mod2] = ACTIONS(2599), - [anon_sym_SLASH_SLASH2] = ACTIONS(2599), - [anon_sym_PLUS2] = ACTIONS(2601), - [anon_sym_bit_DASHshl2] = ACTIONS(2599), - [anon_sym_bit_DASHshr2] = ACTIONS(2599), - [anon_sym_bit_DASHand2] = ACTIONS(2599), - [anon_sym_bit_DASHxor2] = ACTIONS(2599), - [anon_sym_bit_DASHor2] = ACTIONS(2599), - [anon_sym_err_GT] = ACTIONS(2601), - [anon_sym_out_GT] = ACTIONS(2601), - [anon_sym_e_GT] = ACTIONS(2601), - [anon_sym_o_GT] = ACTIONS(2601), - [anon_sym_err_PLUSout_GT] = ACTIONS(2601), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2601), - [anon_sym_o_PLUSe_GT] = ACTIONS(2601), - [anon_sym_e_PLUSo_GT] = ACTIONS(2601), - [anon_sym_err_GT_GT] = ACTIONS(2599), - [anon_sym_out_GT_GT] = ACTIONS(2599), - [anon_sym_e_GT_GT] = ACTIONS(2599), - [anon_sym_o_GT_GT] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2599), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(1400), + [aux_sym_parameter_repeat2] = STATE(3968), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), + [anon_sym_true] = ACTIONS(1370), + [anon_sym_false] = ACTIONS(1370), + [anon_sym_null] = ACTIONS(1372), + [aux_sym_cmd_identifier_token3] = ACTIONS(1374), + [aux_sym_cmd_identifier_token4] = ACTIONS(1374), + [aux_sym_cmd_identifier_token5] = ACTIONS(1374), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_RBRACK] = ACTIONS(2612), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(1390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1392), + [anon_sym_DOT_DOT_LT] = ACTIONS(1392), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_decimal_token2] = ACTIONS(1396), + [aux_sym__val_number_decimal_token3] = ACTIONS(1398), + [aux_sym__val_number_decimal_token4] = ACTIONS(1398), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), }, [STATE(946)] = { [sym_comment] = STATE(946), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_EQ_GT] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(1946), + [sym__newline] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_err_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_GT_PIPE] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_GT2] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_STAR2] = ACTIONS(1948), + [anon_sym_and2] = ACTIONS(1946), + [anon_sym_xor2] = ACTIONS(1946), + [anon_sym_or2] = ACTIONS(1946), + [anon_sym_not_DASHin2] = ACTIONS(1946), + [anon_sym_has2] = ACTIONS(1946), + [anon_sym_not_DASHhas2] = ACTIONS(1946), + [anon_sym_starts_DASHwith2] = ACTIONS(1946), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1946), + [anon_sym_ends_DASHwith2] = ACTIONS(1946), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1946), + [anon_sym_EQ_EQ2] = ACTIONS(1946), + [anon_sym_BANG_EQ2] = ACTIONS(1946), + [anon_sym_LT2] = ACTIONS(1948), + [anon_sym_LT_EQ2] = ACTIONS(1946), + [anon_sym_GT_EQ2] = ACTIONS(1946), + [anon_sym_EQ_TILDE2] = ACTIONS(1946), + [anon_sym_BANG_TILDE2] = ACTIONS(1946), + [anon_sym_like2] = ACTIONS(1946), + [anon_sym_not_DASHlike2] = ACTIONS(1946), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_STAR_STAR2] = ACTIONS(1946), + [anon_sym_PLUS_PLUS2] = ACTIONS(1946), + [anon_sym_SLASH2] = ACTIONS(1948), + [anon_sym_mod2] = ACTIONS(1946), + [anon_sym_SLASH_SLASH2] = ACTIONS(1946), + [anon_sym_PLUS2] = ACTIONS(1948), + [anon_sym_bit_DASHshl2] = ACTIONS(1946), + [anon_sym_bit_DASHshr2] = ACTIONS(1946), + [anon_sym_bit_DASHand2] = ACTIONS(1946), + [anon_sym_bit_DASHxor2] = ACTIONS(1946), + [anon_sym_bit_DASHor2] = ACTIONS(1946), + [anon_sym_err_GT] = ACTIONS(1948), + [anon_sym_out_GT] = ACTIONS(1948), + [anon_sym_e_GT] = ACTIONS(1948), + [anon_sym_o_GT] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT] = ACTIONS(1948), + [anon_sym_err_GT_GT] = ACTIONS(1946), + [anon_sym_out_GT_GT] = ACTIONS(1946), + [anon_sym_e_GT_GT] = ACTIONS(1946), + [anon_sym_o_GT_GT] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1946), + [sym__unquoted_pattern] = ACTIONS(1956), [anon_sym_POUND] = ACTIONS(3), }, [STATE(947)] = { [sym_comment] = STATE(947), - [anon_sym_in] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_PIPE] = ACTIONS(2603), - [anon_sym_err_GT_PIPE] = ACTIONS(2603), - [anon_sym_out_GT_PIPE] = ACTIONS(2603), - [anon_sym_e_GT_PIPE] = ACTIONS(2603), - [anon_sym_o_GT_PIPE] = ACTIONS(2603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2603), - [anon_sym_RPAREN] = ACTIONS(2603), - [anon_sym_GT2] = ACTIONS(2605), - [anon_sym_DASH2] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_EQ_GT] = ACTIONS(2603), - [anon_sym_STAR2] = ACTIONS(2605), - [anon_sym_and2] = ACTIONS(2603), - [anon_sym_xor2] = ACTIONS(2603), - [anon_sym_or2] = ACTIONS(2603), - [anon_sym_not_DASHin2] = ACTIONS(2603), - [anon_sym_has2] = ACTIONS(2603), - [anon_sym_not_DASHhas2] = ACTIONS(2603), - [anon_sym_starts_DASHwith2] = ACTIONS(2603), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2603), - [anon_sym_ends_DASHwith2] = ACTIONS(2603), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2603), - [anon_sym_EQ_EQ2] = ACTIONS(2603), - [anon_sym_BANG_EQ2] = ACTIONS(2603), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LT_EQ2] = ACTIONS(2603), - [anon_sym_GT_EQ2] = ACTIONS(2603), - [anon_sym_EQ_TILDE2] = ACTIONS(2603), - [anon_sym_BANG_TILDE2] = ACTIONS(2603), - [anon_sym_like2] = ACTIONS(2603), - [anon_sym_not_DASHlike2] = ACTIONS(2603), - [anon_sym_STAR_STAR2] = ACTIONS(2603), - [anon_sym_PLUS_PLUS2] = ACTIONS(2603), - [anon_sym_SLASH2] = ACTIONS(2605), - [anon_sym_mod2] = ACTIONS(2603), - [anon_sym_SLASH_SLASH2] = ACTIONS(2603), - [anon_sym_PLUS2] = ACTIONS(2605), - [anon_sym_bit_DASHshl2] = ACTIONS(2603), - [anon_sym_bit_DASHshr2] = ACTIONS(2603), - [anon_sym_bit_DASHand2] = ACTIONS(2603), - [anon_sym_bit_DASHxor2] = ACTIONS(2603), - [anon_sym_bit_DASHor2] = ACTIONS(2603), - [anon_sym_err_GT] = ACTIONS(2605), - [anon_sym_out_GT] = ACTIONS(2605), - [anon_sym_e_GT] = ACTIONS(2605), - [anon_sym_o_GT] = ACTIONS(2605), - [anon_sym_err_PLUSout_GT] = ACTIONS(2605), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2605), - [anon_sym_o_PLUSe_GT] = ACTIONS(2605), - [anon_sym_e_PLUSo_GT] = ACTIONS(2605), - [anon_sym_err_GT_GT] = ACTIONS(2603), - [anon_sym_out_GT_GT] = ACTIONS(2603), - [anon_sym_e_GT_GT] = ACTIONS(2603), - [anon_sym_o_GT_GT] = ACTIONS(2603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2603), + [ts_builtin_sym_end] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(1946), + [sym__newline] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_err_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_GT_PIPE] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1946), + [anon_sym_GT2] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1946), + [anon_sym_STAR2] = ACTIONS(1948), + [anon_sym_and2] = ACTIONS(1946), + [anon_sym_xor2] = ACTIONS(1946), + [anon_sym_or2] = ACTIONS(1946), + [anon_sym_not_DASHin2] = ACTIONS(1946), + [anon_sym_has2] = ACTIONS(1946), + [anon_sym_not_DASHhas2] = ACTIONS(1946), + [anon_sym_starts_DASHwith2] = ACTIONS(1946), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1946), + [anon_sym_ends_DASHwith2] = ACTIONS(1946), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1946), + [anon_sym_EQ_EQ2] = ACTIONS(1946), + [anon_sym_BANG_EQ2] = ACTIONS(1946), + [anon_sym_LT2] = ACTIONS(1948), + [anon_sym_LT_EQ2] = ACTIONS(1946), + [anon_sym_GT_EQ2] = ACTIONS(1946), + [anon_sym_EQ_TILDE2] = ACTIONS(1946), + [anon_sym_BANG_TILDE2] = ACTIONS(1946), + [anon_sym_like2] = ACTIONS(1946), + [anon_sym_not_DASHlike2] = ACTIONS(1946), + [anon_sym_STAR_STAR2] = ACTIONS(1946), + [anon_sym_PLUS_PLUS2] = ACTIONS(1946), + [anon_sym_SLASH2] = ACTIONS(1948), + [anon_sym_mod2] = ACTIONS(1946), + [anon_sym_SLASH_SLASH2] = ACTIONS(1946), + [anon_sym_PLUS2] = ACTIONS(1948), + [anon_sym_bit_DASHshl2] = ACTIONS(1946), + [anon_sym_bit_DASHshr2] = ACTIONS(1946), + [anon_sym_bit_DASHand2] = ACTIONS(1946), + [anon_sym_bit_DASHxor2] = ACTIONS(1946), + [anon_sym_bit_DASHor2] = ACTIONS(1946), + [anon_sym_DOT_DOT2] = ACTIONS(2614), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2616), + [anon_sym_err_GT] = ACTIONS(1948), + [anon_sym_out_GT] = ACTIONS(1948), + [anon_sym_e_GT] = ACTIONS(1948), + [anon_sym_o_GT] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT] = ACTIONS(1948), + [anon_sym_err_GT_GT] = ACTIONS(1946), + [anon_sym_out_GT_GT] = ACTIONS(1946), + [anon_sym_e_GT_GT] = ACTIONS(1946), + [anon_sym_o_GT_GT] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1946), [anon_sym_POUND] = ACTIONS(3), }, [STATE(948)] = { [sym_comment] = STATE(948), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [sym__unquoted_pattern] = ACTIONS(1984), + [ts_builtin_sym_end] = ACTIONS(1665), + [anon_sym_in] = ACTIONS(1665), + [sym__newline] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1665), + [anon_sym_err_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_GT_PIPE] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), + [anon_sym_GT2] = ACTIONS(1667), + [anon_sym_DASH2] = ACTIONS(1665), + [anon_sym_STAR2] = ACTIONS(1667), + [anon_sym_and2] = ACTIONS(1665), + [anon_sym_xor2] = ACTIONS(1665), + [anon_sym_or2] = ACTIONS(1665), + [anon_sym_not_DASHin2] = ACTIONS(1665), + [anon_sym_has2] = ACTIONS(1665), + [anon_sym_not_DASHhas2] = ACTIONS(1665), + [anon_sym_starts_DASHwith2] = ACTIONS(1665), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1665), + [anon_sym_ends_DASHwith2] = ACTIONS(1665), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1665), + [anon_sym_EQ_EQ2] = ACTIONS(1665), + [anon_sym_BANG_EQ2] = ACTIONS(1665), + [anon_sym_LT2] = ACTIONS(1667), + [anon_sym_LT_EQ2] = ACTIONS(1665), + [anon_sym_GT_EQ2] = ACTIONS(1665), + [anon_sym_EQ_TILDE2] = ACTIONS(1665), + [anon_sym_BANG_TILDE2] = ACTIONS(1665), + [anon_sym_like2] = ACTIONS(1665), + [anon_sym_not_DASHlike2] = ACTIONS(1665), + [anon_sym_STAR_STAR2] = ACTIONS(1665), + [anon_sym_PLUS_PLUS2] = ACTIONS(1665), + [anon_sym_SLASH2] = ACTIONS(1667), + [anon_sym_mod2] = ACTIONS(1665), + [anon_sym_SLASH_SLASH2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(1667), + [anon_sym_bit_DASHshl2] = ACTIONS(1665), + [anon_sym_bit_DASHshr2] = ACTIONS(1665), + [anon_sym_bit_DASHand2] = ACTIONS(1665), + [anon_sym_bit_DASHxor2] = ACTIONS(1665), + [anon_sym_bit_DASHor2] = ACTIONS(1665), + [anon_sym_DOT_DOT2] = ACTIONS(1667), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1665), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1665), + [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(1665), + [anon_sym_out_GT_GT] = ACTIONS(1665), + [anon_sym_e_GT_GT] = ACTIONS(1665), + [anon_sym_o_GT_GT] = ACTIONS(1665), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), [anon_sym_POUND] = ACTIONS(3), }, [STATE(949)] = { [sym_comment] = STATE(949), - [anon_sym_in] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_PIPE] = ACTIONS(2607), - [anon_sym_err_GT_PIPE] = ACTIONS(2607), - [anon_sym_out_GT_PIPE] = ACTIONS(2607), - [anon_sym_e_GT_PIPE] = ACTIONS(2607), - [anon_sym_o_GT_PIPE] = ACTIONS(2607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2607), - [anon_sym_RPAREN] = ACTIONS(2607), - [anon_sym_GT2] = ACTIONS(2609), - [anon_sym_DASH2] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_EQ_GT] = ACTIONS(2607), - [anon_sym_STAR2] = ACTIONS(2609), - [anon_sym_and2] = ACTIONS(2607), - [anon_sym_xor2] = ACTIONS(2607), - [anon_sym_or2] = ACTIONS(2607), - [anon_sym_not_DASHin2] = ACTIONS(2607), - [anon_sym_has2] = ACTIONS(2607), - [anon_sym_not_DASHhas2] = ACTIONS(2607), - [anon_sym_starts_DASHwith2] = ACTIONS(2607), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2607), - [anon_sym_ends_DASHwith2] = ACTIONS(2607), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2607), - [anon_sym_EQ_EQ2] = ACTIONS(2607), - [anon_sym_BANG_EQ2] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LT_EQ2] = ACTIONS(2607), - [anon_sym_GT_EQ2] = ACTIONS(2607), - [anon_sym_EQ_TILDE2] = ACTIONS(2607), - [anon_sym_BANG_TILDE2] = ACTIONS(2607), - [anon_sym_like2] = ACTIONS(2607), - [anon_sym_not_DASHlike2] = ACTIONS(2607), - [anon_sym_STAR_STAR2] = ACTIONS(2607), - [anon_sym_PLUS_PLUS2] = ACTIONS(2607), - [anon_sym_SLASH2] = ACTIONS(2609), - [anon_sym_mod2] = ACTIONS(2607), - [anon_sym_SLASH_SLASH2] = ACTIONS(2607), - [anon_sym_PLUS2] = ACTIONS(2609), - [anon_sym_bit_DASHshl2] = ACTIONS(2607), - [anon_sym_bit_DASHshr2] = ACTIONS(2607), - [anon_sym_bit_DASHand2] = ACTIONS(2607), - [anon_sym_bit_DASHxor2] = ACTIONS(2607), - [anon_sym_bit_DASHor2] = ACTIONS(2607), - [anon_sym_err_GT] = ACTIONS(2609), - [anon_sym_out_GT] = ACTIONS(2609), - [anon_sym_e_GT] = ACTIONS(2609), - [anon_sym_o_GT] = ACTIONS(2609), - [anon_sym_err_PLUSout_GT] = ACTIONS(2609), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2609), - [anon_sym_o_PLUSe_GT] = ACTIONS(2609), - [anon_sym_e_PLUSo_GT] = ACTIONS(2609), - [anon_sym_err_GT_GT] = ACTIONS(2607), - [anon_sym_out_GT_GT] = ACTIONS(2607), - [anon_sym_e_GT_GT] = ACTIONS(2607), - [anon_sym_o_GT_GT] = ACTIONS(2607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2607), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1870), + [anon_sym_GT2] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1870), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_EQ_GT] = ACTIONS(1870), + [anon_sym_STAR2] = ACTIONS(1872), + [anon_sym_and2] = ACTIONS(1870), + [anon_sym_xor2] = ACTIONS(1870), + [anon_sym_or2] = ACTIONS(1870), + [anon_sym_not_DASHin2] = ACTIONS(1870), + [anon_sym_has2] = ACTIONS(1870), + [anon_sym_not_DASHhas2] = ACTIONS(1870), + [anon_sym_starts_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), + [anon_sym_ends_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), + [anon_sym_EQ_EQ2] = ACTIONS(1870), + [anon_sym_BANG_EQ2] = ACTIONS(1870), + [anon_sym_LT2] = ACTIONS(1872), + [anon_sym_LT_EQ2] = ACTIONS(1870), + [anon_sym_GT_EQ2] = ACTIONS(1870), + [anon_sym_EQ_TILDE2] = ACTIONS(1870), + [anon_sym_BANG_TILDE2] = ACTIONS(1870), + [anon_sym_like2] = ACTIONS(1870), + [anon_sym_not_DASHlike2] = ACTIONS(1870), + [anon_sym_STAR_STAR2] = ACTIONS(1870), + [anon_sym_PLUS_PLUS2] = ACTIONS(1870), + [anon_sym_SLASH2] = ACTIONS(1872), + [anon_sym_mod2] = ACTIONS(1870), + [anon_sym_SLASH_SLASH2] = ACTIONS(1870), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_bit_DASHshl2] = ACTIONS(1870), + [anon_sym_bit_DASHshr2] = ACTIONS(1870), + [anon_sym_bit_DASHand2] = ACTIONS(1870), + [anon_sym_bit_DASHxor2] = ACTIONS(1870), + [anon_sym_bit_DASHor2] = ACTIONS(1870), + [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(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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(950)] = { [sym_comment] = STATE(950), - [ts_builtin_sym_end] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(2611), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2613), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2613), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [ts_builtin_sym_end] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [aux_sym__immediate_decimal_token5] = ACTIONS(2618), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), [anon_sym_POUND] = ACTIONS(3), }, [STATE(951)] = { [sym_comment] = STATE(951), - [anon_sym_in] = ACTIONS(2615), - [sym__newline] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_PIPE] = ACTIONS(2615), - [anon_sym_err_GT_PIPE] = ACTIONS(2615), - [anon_sym_out_GT_PIPE] = ACTIONS(2615), - [anon_sym_e_GT_PIPE] = ACTIONS(2615), - [anon_sym_o_GT_PIPE] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2615), - [anon_sym_RPAREN] = ACTIONS(2615), - [anon_sym_GT2] = ACTIONS(2617), - [anon_sym_DASH2] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_EQ_GT] = ACTIONS(2615), - [anon_sym_STAR2] = ACTIONS(2617), - [anon_sym_and2] = ACTIONS(2615), - [anon_sym_xor2] = ACTIONS(2615), - [anon_sym_or2] = ACTIONS(2615), - [anon_sym_not_DASHin2] = ACTIONS(2615), - [anon_sym_has2] = ACTIONS(2615), - [anon_sym_not_DASHhas2] = ACTIONS(2615), - [anon_sym_starts_DASHwith2] = ACTIONS(2615), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2615), - [anon_sym_ends_DASHwith2] = ACTIONS(2615), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2615), - [anon_sym_EQ_EQ2] = ACTIONS(2615), - [anon_sym_BANG_EQ2] = ACTIONS(2615), - [anon_sym_LT2] = ACTIONS(2617), - [anon_sym_LT_EQ2] = ACTIONS(2615), - [anon_sym_GT_EQ2] = ACTIONS(2615), - [anon_sym_EQ_TILDE2] = ACTIONS(2615), - [anon_sym_BANG_TILDE2] = ACTIONS(2615), - [anon_sym_like2] = ACTIONS(2615), - [anon_sym_not_DASHlike2] = ACTIONS(2615), - [anon_sym_STAR_STAR2] = ACTIONS(2615), - [anon_sym_PLUS_PLUS2] = ACTIONS(2615), - [anon_sym_SLASH2] = ACTIONS(2617), - [anon_sym_mod2] = ACTIONS(2615), - [anon_sym_SLASH_SLASH2] = ACTIONS(2615), - [anon_sym_PLUS2] = ACTIONS(2617), - [anon_sym_bit_DASHshl2] = ACTIONS(2615), - [anon_sym_bit_DASHshr2] = ACTIONS(2615), - [anon_sym_bit_DASHand2] = ACTIONS(2615), - [anon_sym_bit_DASHxor2] = ACTIONS(2615), - [anon_sym_bit_DASHor2] = ACTIONS(2615), - [anon_sym_err_GT] = ACTIONS(2617), - [anon_sym_out_GT] = ACTIONS(2617), - [anon_sym_e_GT] = ACTIONS(2617), - [anon_sym_o_GT] = ACTIONS(2617), - [anon_sym_err_PLUSout_GT] = ACTIONS(2617), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2617), - [anon_sym_o_PLUSe_GT] = ACTIONS(2617), - [anon_sym_e_PLUSo_GT] = ACTIONS(2617), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(2584), + [sym__newline] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_err_GT_PIPE] = ACTIONS(2584), + [anon_sym_out_GT_PIPE] = ACTIONS(2584), + [anon_sym_e_GT_PIPE] = ACTIONS(2584), + [anon_sym_o_GT_PIPE] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2584), + [anon_sym_RPAREN] = ACTIONS(2584), + [anon_sym_GT2] = ACTIONS(2586), + [anon_sym_DASH2] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_STAR2] = ACTIONS(2586), + [anon_sym_and2] = ACTIONS(2584), + [anon_sym_xor2] = ACTIONS(2584), + [anon_sym_or2] = ACTIONS(2584), + [anon_sym_not_DASHin2] = ACTIONS(2584), + [anon_sym_has2] = ACTIONS(2584), + [anon_sym_not_DASHhas2] = ACTIONS(2584), + [anon_sym_starts_DASHwith2] = ACTIONS(2584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2584), + [anon_sym_ends_DASHwith2] = ACTIONS(2584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2584), + [anon_sym_EQ_EQ2] = ACTIONS(2584), + [anon_sym_BANG_EQ2] = ACTIONS(2584), + [anon_sym_LT2] = ACTIONS(2586), + [anon_sym_LT_EQ2] = ACTIONS(2584), + [anon_sym_GT_EQ2] = ACTIONS(2584), + [anon_sym_EQ_TILDE2] = ACTIONS(2584), + [anon_sym_BANG_TILDE2] = ACTIONS(2584), + [anon_sym_like2] = ACTIONS(2584), + [anon_sym_not_DASHlike2] = ACTIONS(2584), + [anon_sym_LPAREN2] = ACTIONS(2620), + [anon_sym_STAR_STAR2] = ACTIONS(2584), + [anon_sym_PLUS_PLUS2] = ACTIONS(2584), + [anon_sym_SLASH2] = ACTIONS(2586), + [anon_sym_mod2] = ACTIONS(2584), + [anon_sym_SLASH_SLASH2] = ACTIONS(2584), + [anon_sym_PLUS2] = ACTIONS(2586), + [anon_sym_bit_DASHshl2] = ACTIONS(2584), + [anon_sym_bit_DASHshr2] = ACTIONS(2584), + [anon_sym_bit_DASHand2] = ACTIONS(2584), + [anon_sym_bit_DASHxor2] = ACTIONS(2584), + [anon_sym_bit_DASHor2] = ACTIONS(2584), + [anon_sym_err_GT] = ACTIONS(2586), + [anon_sym_out_GT] = ACTIONS(2586), + [anon_sym_e_GT] = ACTIONS(2586), + [anon_sym_o_GT] = ACTIONS(2586), + [anon_sym_err_PLUSout_GT] = ACTIONS(2586), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2586), + [anon_sym_o_PLUSe_GT] = ACTIONS(2586), + [anon_sym_e_PLUSo_GT] = ACTIONS(2586), + [anon_sym_err_GT_GT] = ACTIONS(2584), + [anon_sym_out_GT_GT] = ACTIONS(2584), + [anon_sym_e_GT_GT] = ACTIONS(2584), + [anon_sym_o_GT_GT] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2584), + [sym__unquoted_pattern] = ACTIONS(1645), [anon_sym_POUND] = ACTIONS(3), }, [STATE(952)] = { [sym_comment] = STATE(952), - [ts_builtin_sym_end] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1858), + [anon_sym_GT2] = ACTIONS(1860), + [anon_sym_DASH2] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_EQ_GT] = ACTIONS(1858), + [anon_sym_STAR2] = ACTIONS(1860), + [anon_sym_and2] = ACTIONS(1858), + [anon_sym_xor2] = ACTIONS(1858), + [anon_sym_or2] = ACTIONS(1858), + [anon_sym_not_DASHin2] = ACTIONS(1858), + [anon_sym_has2] = ACTIONS(1858), + [anon_sym_not_DASHhas2] = ACTIONS(1858), + [anon_sym_starts_DASHwith2] = ACTIONS(1858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), + [anon_sym_ends_DASHwith2] = ACTIONS(1858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), + [anon_sym_EQ_EQ2] = ACTIONS(1858), + [anon_sym_BANG_EQ2] = ACTIONS(1858), + [anon_sym_LT2] = ACTIONS(1860), + [anon_sym_LT_EQ2] = ACTIONS(1858), + [anon_sym_GT_EQ2] = ACTIONS(1858), + [anon_sym_EQ_TILDE2] = ACTIONS(1858), + [anon_sym_BANG_TILDE2] = ACTIONS(1858), + [anon_sym_like2] = ACTIONS(1858), + [anon_sym_not_DASHlike2] = ACTIONS(1858), + [anon_sym_STAR_STAR2] = ACTIONS(1858), + [anon_sym_PLUS_PLUS2] = ACTIONS(1858), + [anon_sym_SLASH2] = ACTIONS(1860), + [anon_sym_mod2] = ACTIONS(1858), + [anon_sym_SLASH_SLASH2] = ACTIONS(1858), + [anon_sym_PLUS2] = ACTIONS(1860), + [anon_sym_bit_DASHshl2] = ACTIONS(1858), + [anon_sym_bit_DASHshr2] = ACTIONS(1858), + [anon_sym_bit_DASHand2] = ACTIONS(1858), + [anon_sym_bit_DASHxor2] = ACTIONS(1858), + [anon_sym_bit_DASHor2] = ACTIONS(1858), + [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(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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(953)] = { [sym_comment] = STATE(953), - [anon_sym_in] = ACTIONS(2619), - [sym__newline] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2619), - [anon_sym_PIPE] = ACTIONS(2619), - [anon_sym_err_GT_PIPE] = ACTIONS(2619), - [anon_sym_out_GT_PIPE] = ACTIONS(2619), - [anon_sym_e_GT_PIPE] = ACTIONS(2619), - [anon_sym_o_GT_PIPE] = ACTIONS(2619), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2619), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2619), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2619), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2619), - [anon_sym_GT2] = ACTIONS(2621), - [anon_sym_DASH2] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_RBRACE] = ACTIONS(2619), - [anon_sym_EQ_GT] = ACTIONS(2619), - [anon_sym_STAR2] = ACTIONS(2621), - [anon_sym_and2] = ACTIONS(2619), - [anon_sym_xor2] = ACTIONS(2619), - [anon_sym_or2] = ACTIONS(2619), - [anon_sym_not_DASHin2] = ACTIONS(2619), - [anon_sym_has2] = ACTIONS(2619), - [anon_sym_not_DASHhas2] = ACTIONS(2619), - [anon_sym_starts_DASHwith2] = ACTIONS(2619), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2619), - [anon_sym_ends_DASHwith2] = ACTIONS(2619), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2619), - [anon_sym_EQ_EQ2] = ACTIONS(2619), - [anon_sym_BANG_EQ2] = ACTIONS(2619), - [anon_sym_LT2] = ACTIONS(2621), - [anon_sym_LT_EQ2] = ACTIONS(2619), - [anon_sym_GT_EQ2] = ACTIONS(2619), - [anon_sym_EQ_TILDE2] = ACTIONS(2619), - [anon_sym_BANG_TILDE2] = ACTIONS(2619), - [anon_sym_like2] = ACTIONS(2619), - [anon_sym_not_DASHlike2] = ACTIONS(2619), - [anon_sym_STAR_STAR2] = ACTIONS(2619), - [anon_sym_PLUS_PLUS2] = ACTIONS(2619), - [anon_sym_SLASH2] = ACTIONS(2621), - [anon_sym_mod2] = ACTIONS(2619), - [anon_sym_SLASH_SLASH2] = ACTIONS(2619), - [anon_sym_PLUS2] = ACTIONS(2621), - [anon_sym_bit_DASHshl2] = ACTIONS(2619), - [anon_sym_bit_DASHshr2] = ACTIONS(2619), - [anon_sym_bit_DASHand2] = ACTIONS(2619), - [anon_sym_bit_DASHxor2] = ACTIONS(2619), - [anon_sym_bit_DASHor2] = ACTIONS(2619), - [anon_sym_err_GT] = ACTIONS(2621), - [anon_sym_out_GT] = ACTIONS(2621), - [anon_sym_e_GT] = ACTIONS(2621), - [anon_sym_o_GT] = ACTIONS(2621), - [anon_sym_err_PLUSout_GT] = ACTIONS(2621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2621), - [anon_sym_o_PLUSe_GT] = ACTIONS(2621), - [anon_sym_e_PLUSo_GT] = ACTIONS(2621), - [anon_sym_err_GT_GT] = ACTIONS(2619), - [anon_sym_out_GT_GT] = ACTIONS(2619), - [anon_sym_e_GT_GT] = ACTIONS(2619), - [anon_sym_o_GT_GT] = ACTIONS(2619), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2619), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2619), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2619), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2619), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(954)] = { + [aux_sym__repeat_newline] = STATE(4304), + [sym__match_pattern_expression] = STATE(4141), + [sym__match_pattern_value] = STATE(4519), + [sym__match_pattern_list_body] = STATE(4778), + [sym__match_pattern_list_body_or_empty] = STATE(4378), + [sym__match_pattern_list] = STATE(4520), + [sym__match_pattern_rest] = STATE(4827), + [sym__match_pattern_record] = STATE(4521), + [sym_expr_parenthesized] = STATE(3757), + [sym_val_range] = STATE(4519), + [sym__val_range] = STATE(4822), + [sym_val_nothing] = STATE(4521), + [sym_val_bool] = STATE(4145), + [sym_val_variable] = STATE(3758), + [sym_val_number] = STATE(4521), + [sym__val_number_decimal] = STATE(3555), + [sym__val_number] = STATE(4172), + [sym_val_duration] = STATE(4521), + [sym_val_filesize] = STATE(4521), + [sym_val_binary] = STATE(4521), + [sym_val_string] = STATE(4521), + [sym__raw_str] = STATE(3527), + [sym__str_double_quotes] = STATE(3527), + [sym__str_single_quotes] = STATE(3527), + [sym__str_back_ticks] = STATE(3527), + [sym_val_list] = STATE(4830), + [sym__table_head] = STATE(3656), + [sym_val_table] = STATE(4521), + [sym__unquoted_in_list] = STATE(4141), + [sym__unquoted_anonymous_prefix] = STATE(4822), [sym_comment] = STATE(954), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat1] = STATE(1400), + [aux_sym_parameter_repeat2] = STATE(3968), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), + [anon_sym_true] = ACTIONS(1370), + [anon_sym_false] = ACTIONS(1370), + [anon_sym_null] = ACTIONS(1372), + [aux_sym_cmd_identifier_token3] = ACTIONS(1374), + [aux_sym_cmd_identifier_token4] = ACTIONS(1374), + [aux_sym_cmd_identifier_token5] = ACTIONS(1374), + [sym__newline] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_RBRACK] = ACTIONS(2612), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(1390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1392), + [anon_sym_DOT_DOT_LT] = ACTIONS(1392), + [aux_sym__val_number_decimal_token1] = ACTIONS(1394), + [aux_sym__val_number_decimal_token2] = ACTIONS(1396), + [aux_sym__val_number_decimal_token3] = ACTIONS(1398), + [aux_sym__val_number_decimal_token4] = ACTIONS(1398), + [aux_sym__val_number_token1] = ACTIONS(1400), + [aux_sym__val_number_token2] = ACTIONS(1400), + [aux_sym__val_number_token3] = ACTIONS(1400), + [anon_sym_0b] = ACTIONS(1402), + [anon_sym_0o] = ACTIONS(1404), + [anon_sym_0x] = ACTIONS(1404), + [sym_val_date] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_BQUOTE] = ACTIONS(1412), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1422), }, [STATE(955)] = { [sym_comment] = STATE(955), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), + [anon_sym_in] = ACTIONS(2604), + [sym__newline] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_err_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_GT_PIPE] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2604), + [anon_sym_RPAREN] = ACTIONS(2604), + [anon_sym_GT2] = ACTIONS(2606), + [anon_sym_DASH2] = ACTIONS(2604), + [anon_sym_RBRACE] = ACTIONS(2604), + [anon_sym_STAR2] = ACTIONS(2606), + [anon_sym_and2] = ACTIONS(2604), + [anon_sym_xor2] = ACTIONS(2604), + [anon_sym_or2] = ACTIONS(2604), + [anon_sym_not_DASHin2] = ACTIONS(2604), + [anon_sym_has2] = ACTIONS(2604), + [anon_sym_not_DASHhas2] = ACTIONS(2604), + [anon_sym_starts_DASHwith2] = ACTIONS(2604), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2604), + [anon_sym_ends_DASHwith2] = ACTIONS(2604), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2604), + [anon_sym_EQ_EQ2] = ACTIONS(2604), + [anon_sym_BANG_EQ2] = ACTIONS(2604), + [anon_sym_LT2] = ACTIONS(2606), + [anon_sym_LT_EQ2] = ACTIONS(2604), + [anon_sym_GT_EQ2] = ACTIONS(2604), + [anon_sym_EQ_TILDE2] = ACTIONS(2604), + [anon_sym_BANG_TILDE2] = ACTIONS(2604), + [anon_sym_like2] = ACTIONS(2604), + [anon_sym_not_DASHlike2] = ACTIONS(2604), + [anon_sym_LPAREN2] = ACTIONS(2622), + [anon_sym_STAR_STAR2] = ACTIONS(2604), + [anon_sym_PLUS_PLUS2] = ACTIONS(2604), + [anon_sym_SLASH2] = ACTIONS(2606), + [anon_sym_mod2] = ACTIONS(2604), + [anon_sym_SLASH_SLASH2] = ACTIONS(2604), + [anon_sym_PLUS2] = ACTIONS(2606), + [anon_sym_bit_DASHshl2] = ACTIONS(2604), + [anon_sym_bit_DASHshr2] = ACTIONS(2604), + [anon_sym_bit_DASHand2] = ACTIONS(2604), + [anon_sym_bit_DASHxor2] = ACTIONS(2604), + [anon_sym_bit_DASHor2] = ACTIONS(2604), + [anon_sym_err_GT] = ACTIONS(2606), + [anon_sym_out_GT] = ACTIONS(2606), + [anon_sym_e_GT] = ACTIONS(2606), + [anon_sym_o_GT] = ACTIONS(2606), + [anon_sym_err_PLUSout_GT] = ACTIONS(2606), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2606), + [anon_sym_o_PLUSe_GT] = ACTIONS(2606), + [anon_sym_e_PLUSo_GT] = ACTIONS(2606), + [anon_sym_err_GT_GT] = ACTIONS(2604), + [anon_sym_out_GT_GT] = ACTIONS(2604), + [anon_sym_e_GT_GT] = ACTIONS(2604), + [anon_sym_o_GT_GT] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2604), + [sym__unquoted_pattern] = ACTIONS(2624), [anon_sym_POUND] = ACTIONS(3), }, [STATE(956)] = { - [sym_comment] = STATE(956), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(957)] = { - [sym_comment] = STATE(957), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(2627), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(958)] = { - [sym_comment] = STATE(958), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_RPAREN] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), - [sym__unquoted_pattern] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(959)] = { - [sym_comment] = STATE(959), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), - [sym__unquoted_pattern] = ACTIONS(2633), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(960)] = { - [sym_comment] = STATE(960), - [anon_sym_in] = ACTIONS(2635), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2635), - [anon_sym_xor2] = ACTIONS(2635), - [anon_sym_or2] = ACTIONS(2635), - [anon_sym_not_DASHin2] = ACTIONS(2635), - [anon_sym_has2] = ACTIONS(2635), - [anon_sym_not_DASHhas2] = ACTIONS(2635), - [anon_sym_starts_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2635), - [anon_sym_ends_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2635), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2635), - [anon_sym_like2] = ACTIONS(2635), - [anon_sym_not_DASHlike2] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_STAR_STAR2] = ACTIONS(2635), - [anon_sym_PLUS_PLUS2] = ACTIONS(2635), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2635), - [anon_sym_SLASH_SLASH2] = ACTIONS(2635), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2635), - [anon_sym_bit_DASHshr2] = ACTIONS(2635), - [anon_sym_bit_DASHand2] = ACTIONS(2635), - [anon_sym_bit_DASHxor2] = ACTIONS(2635), - [anon_sym_bit_DASHor2] = ACTIONS(2635), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [sym__unquoted_pattern] = ACTIONS(2641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(961)] = { - [sym_comment] = STATE(961), - [anon_sym_in] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_like2] = ACTIONS(994), - [anon_sym_not_DASHlike2] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [sym__unquoted_pattern] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(962)] = { [aux_sym__repeat_newline] = STATE(1129), - [sym__expression_parenthesized] = STATE(4352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(963)] = { - [aux_sym__repeat_newline] = STATE(1005), - [sym__expression_parenthesized] = STATE(4360), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(963), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [sym__newline] = ACTIONS(2557), + [sym__expression_parenthesized] = STATE(4299), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_comment] = STATE(956), + [aux_sym_cmd_identifier_token2] = ACTIONS(2626), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2630), + [aux_sym_cmd_identifier_token3] = ACTIONS(2632), + [aux_sym_cmd_identifier_token4] = ACTIONS(2632), + [aux_sym_cmd_identifier_token5] = ACTIONS(2632), + [sym__newline] = ACTIONS(2634), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -118951,17 +118493,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(2636), + [aux_sym__val_number_decimal_token4] = ACTIONS(2636), + [aux_sym__val_number_token1] = ACTIONS(2632), + [aux_sym__val_number_token2] = ACTIONS(2632), + [aux_sym__val_number_token3] = ACTIONS(2632), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2638), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -118970,418 +118512,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(964)] = { - [aux_sym__repeat_newline] = STATE(964), - [sym_comment] = STATE(964), - [anon_sym_export] = ACTIONS(1960), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1960), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1960), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [sym__newline] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_DASH2] = ACTIONS(1960), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1960), - [anon_sym_where] = ACTIONS(1955), - [aux_sym_expr_unary_token1] = ACTIONS(1955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [anon_sym_0b] = ACTIONS(1960), - [anon_sym_0o] = ACTIONS(1960), - [anon_sym_0x] = ACTIONS(1960), - [sym_val_date] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [anon_sym_SQUOTE] = ACTIONS(1955), - [anon_sym_BQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1955), - }, - [STATE(965)] = { - [sym_comment] = STATE(965), - [anon_sym_export] = ACTIONS(2646), - [anon_sym_alias] = ACTIONS(2648), - [anon_sym_let] = ACTIONS(2648), - [anon_sym_mut] = ACTIONS(2648), - [anon_sym_const] = ACTIONS(2648), - [aux_sym_cmd_identifier_token1] = ACTIONS(2646), - [anon_sym_def] = ACTIONS(2648), - [anon_sym_use] = ACTIONS(2648), - [anon_sym_export_DASHenv] = ACTIONS(2648), - [anon_sym_extern] = ACTIONS(2648), - [anon_sym_module] = ACTIONS(2648), - [anon_sym_for] = ACTIONS(2648), - [anon_sym_loop] = ACTIONS(2648), - [anon_sym_while] = ACTIONS(2648), - [anon_sym_if] = ACTIONS(2648), - [anon_sym_else] = ACTIONS(2648), - [anon_sym_try] = ACTIONS(2648), - [anon_sym_catch] = ACTIONS(2648), - [anon_sym_match] = ACTIONS(2648), - [anon_sym_in] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_null] = ACTIONS(2648), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [sym__newline] = ACTIONS(2648), - [anon_sym_PIPE] = ACTIONS(2648), - [anon_sym_err_GT_PIPE] = ACTIONS(2648), - [anon_sym_out_GT_PIPE] = ACTIONS(2648), - [anon_sym_e_GT_PIPE] = ACTIONS(2648), - [anon_sym_o_GT_PIPE] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(2648), - [anon_sym_LPAREN] = ACTIONS(2648), - [anon_sym_DOLLAR] = ACTIONS(2646), - [anon_sym_DASH2] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_DOT_DOT] = ACTIONS(2646), - [anon_sym_where] = ACTIONS(2648), - [aux_sym_expr_unary_token1] = ACTIONS(2648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2648), - [anon_sym_DOT_DOT_LT] = ACTIONS(2648), - [aux_sym__val_number_decimal_token1] = ACTIONS(2646), - [aux_sym__val_number_decimal_token2] = ACTIONS(2648), - [aux_sym__val_number_decimal_token3] = ACTIONS(2648), - [aux_sym__val_number_decimal_token4] = ACTIONS(2648), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(2646), - [anon_sym_0o] = ACTIONS(2646), - [anon_sym_0x] = ACTIONS(2646), - [sym_val_date] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_BQUOTE] = ACTIONS(2648), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2648), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), - [anon_sym_CARET] = ACTIONS(2648), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2648), - }, - [STATE(966)] = { - [sym_comment] = STATE(966), - [anon_sym_export] = ACTIONS(2098), - [anon_sym_alias] = ACTIONS(2096), - [anon_sym_let] = ACTIONS(2096), - [anon_sym_mut] = ACTIONS(2096), - [anon_sym_const] = ACTIONS(2096), - [aux_sym_cmd_identifier_token1] = ACTIONS(2098), - [anon_sym_def] = ACTIONS(2096), - [anon_sym_use] = ACTIONS(2096), - [anon_sym_export_DASHenv] = ACTIONS(2096), - [anon_sym_extern] = ACTIONS(2096), - [anon_sym_module] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_loop] = ACTIONS(2096), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_else] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2096), - [anon_sym_catch] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_in] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_null] = ACTIONS(2096), - [aux_sym_cmd_identifier_token3] = ACTIONS(2096), - [aux_sym_cmd_identifier_token4] = ACTIONS(2096), - [aux_sym_cmd_identifier_token5] = ACTIONS(2096), - [sym__newline] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_where] = ACTIONS(2096), - [aux_sym_expr_unary_token1] = ACTIONS(2096), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2096), - [anon_sym_DOT_DOT_LT] = ACTIONS(2096), - [aux_sym__val_number_decimal_token1] = ACTIONS(2098), - [aux_sym__val_number_decimal_token2] = ACTIONS(2096), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2096), - [aux_sym__val_number_token1] = ACTIONS(2096), - [aux_sym__val_number_token2] = ACTIONS(2096), - [aux_sym__val_number_token3] = ACTIONS(2096), - [anon_sym_0b] = ACTIONS(2098), - [anon_sym_0o] = ACTIONS(2098), - [anon_sym_0x] = ACTIONS(2098), - [sym_val_date] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [anon_sym_SQUOTE] = ACTIONS(2096), - [anon_sym_BQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2096), - }, - [STATE(967)] = { - [sym_comment] = STATE(967), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(968)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), - [sym_comment] = STATE(968), - [ts_builtin_sym_end] = ACTIONS(2170), - [anon_sym_in] = ACTIONS(2170), - [sym__newline] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_err_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_GT_PIPE] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2170), - [anon_sym_GT2] = ACTIONS(2172), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_STAR2] = ACTIONS(2172), - [anon_sym_and2] = ACTIONS(2170), - [anon_sym_xor2] = ACTIONS(2170), - [anon_sym_or2] = ACTIONS(2170), - [anon_sym_not_DASHin2] = ACTIONS(2170), - [anon_sym_has2] = ACTIONS(2170), - [anon_sym_not_DASHhas2] = ACTIONS(2170), - [anon_sym_starts_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2170), - [anon_sym_ends_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2170), - [anon_sym_EQ_EQ2] = ACTIONS(2170), - [anon_sym_BANG_EQ2] = ACTIONS(2170), - [anon_sym_LT2] = ACTIONS(2172), - [anon_sym_LT_EQ2] = ACTIONS(2170), - [anon_sym_GT_EQ2] = ACTIONS(2170), - [anon_sym_EQ_TILDE2] = ACTIONS(2170), - [anon_sym_BANG_TILDE2] = ACTIONS(2170), - [anon_sym_like2] = ACTIONS(2170), - [anon_sym_not_DASHlike2] = ACTIONS(2170), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2170), - [anon_sym_PLUS_PLUS2] = ACTIONS(2170), - [anon_sym_SLASH2] = ACTIONS(2172), - [anon_sym_mod2] = ACTIONS(2170), - [anon_sym_SLASH_SLASH2] = ACTIONS(2170), - [anon_sym_PLUS2] = ACTIONS(2172), - [anon_sym_bit_DASHshl2] = ACTIONS(2170), - [anon_sym_bit_DASHshr2] = ACTIONS(2170), - [anon_sym_bit_DASHand2] = ACTIONS(2170), - [anon_sym_bit_DASHxor2] = ACTIONS(2170), - [anon_sym_bit_DASHor2] = ACTIONS(2170), - [anon_sym_err_GT] = ACTIONS(2172), - [anon_sym_out_GT] = ACTIONS(2172), - [anon_sym_e_GT] = ACTIONS(2172), - [anon_sym_o_GT] = ACTIONS(2172), - [anon_sym_err_PLUSout_GT] = ACTIONS(2172), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2172), - [anon_sym_o_PLUSe_GT] = ACTIONS(2172), - [anon_sym_e_PLUSo_GT] = ACTIONS(2172), - [anon_sym_err_GT_GT] = ACTIONS(2170), - [anon_sym_out_GT_GT] = ACTIONS(2170), - [anon_sym_e_GT_GT] = ACTIONS(2170), - [anon_sym_o_GT_GT] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(969)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), - [sym_comment] = STATE(969), - [ts_builtin_sym_end] = ACTIONS(2072), - [anon_sym_in] = ACTIONS(2072), - [sym__newline] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_err_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_GT_PIPE] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), - [anon_sym_GT2] = ACTIONS(2074), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_STAR2] = ACTIONS(2074), - [anon_sym_and2] = ACTIONS(2072), - [anon_sym_xor2] = ACTIONS(2072), - [anon_sym_or2] = ACTIONS(2072), - [anon_sym_not_DASHin2] = ACTIONS(2072), - [anon_sym_has2] = ACTIONS(2072), - [anon_sym_not_DASHhas2] = ACTIONS(2072), - [anon_sym_starts_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2072), - [anon_sym_ends_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2072), - [anon_sym_EQ_EQ2] = ACTIONS(2072), - [anon_sym_BANG_EQ2] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LT_EQ2] = ACTIONS(2072), - [anon_sym_GT_EQ2] = ACTIONS(2072), - [anon_sym_EQ_TILDE2] = ACTIONS(2072), - [anon_sym_BANG_TILDE2] = ACTIONS(2072), - [anon_sym_like2] = ACTIONS(2072), - [anon_sym_not_DASHlike2] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2072), - [anon_sym_PLUS_PLUS2] = ACTIONS(2072), - [anon_sym_SLASH2] = ACTIONS(2074), - [anon_sym_mod2] = ACTIONS(2072), - [anon_sym_SLASH_SLASH2] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2074), - [anon_sym_bit_DASHshl2] = ACTIONS(2072), - [anon_sym_bit_DASHshr2] = ACTIONS(2072), - [anon_sym_bit_DASHand2] = ACTIONS(2072), - [anon_sym_bit_DASHxor2] = ACTIONS(2072), - [anon_sym_bit_DASHor2] = ACTIONS(2072), - [anon_sym_err_GT] = ACTIONS(2074), - [anon_sym_out_GT] = ACTIONS(2074), - [anon_sym_e_GT] = ACTIONS(2074), - [anon_sym_o_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT] = ACTIONS(2074), - [anon_sym_err_GT_GT] = ACTIONS(2072), - [anon_sym_out_GT_GT] = ACTIONS(2072), - [anon_sym_e_GT_GT] = ACTIONS(2072), - [anon_sym_o_GT_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(970)] = { - [sym_comment] = STATE(970), - [ts_builtin_sym_end] = ACTIONS(1726), + [STATE(957)] = { + [sym_comment] = STATE(957), [anon_sym_in] = ACTIONS(1726), [sym__newline] = ACTIONS(1726), [anon_sym_SEMI] = ACTIONS(1726), @@ -119394,8 +118526,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), [anon_sym_GT2] = ACTIONS(1728), [anon_sym_DASH2] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), [anon_sym_STAR2] = ACTIONS(1728), [anon_sym_and2] = ACTIONS(1726), [anon_sym_xor2] = ACTIONS(1726), @@ -119447,385 +118581,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(971)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4465), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(4840), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4515), - [sym__val_range] = STATE(4853), - [sym_val_nothing] = STATE(4517), - [sym_val_bool] = STATE(4134), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4517), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4517), - [sym_val_filesize] = STATE(4517), - [sym_val_binary] = STATE(4517), - [sym_val_string] = STATE(4517), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(4951), - [sym__table_head] = STATE(3665), - [sym_val_table] = STATE(4517), - [sym__unquoted_in_list] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(4853), - [sym_comment] = STATE(971), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3958), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2660), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(972)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), - [sym_comment] = STATE(972), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(973)] = { - [sym_comment] = STATE(973), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(974)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), - [sym_comment] = STATE(974), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(975)] = { - [sym_comment] = STATE(975), - [ts_builtin_sym_end] = ACTIONS(1870), - [anon_sym_in] = 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_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [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(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), - [sym__unquoted_pattern] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(976)] = { - [sym__expression] = STATE(4724), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [STATE(958)] = { + [aux_sym__repeat_newline] = STATE(1061), + [sym__expression_parenthesized] = STATE(4362), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_comment] = STATE(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(2626), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2630), + [aux_sym_cmd_identifier_token3] = ACTIONS(2632), + [aux_sym_cmd_identifier_token4] = ACTIONS(2632), + [aux_sym_cmd_identifier_token5] = ACTIONS(2632), + [sym__newline] = ACTIONS(2634), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -119835,65 +118631,549 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(2636), + [aux_sym__val_number_decimal_token4] = ACTIONS(2636), + [aux_sym__val_number_token1] = ACTIONS(2632), + [aux_sym__val_number_token2] = ACTIONS(2632), + [aux_sym__val_number_token3] = ACTIONS(2632), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2638), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_COLON2] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(977)] = { - [sym__expression] = STATE(4726), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(977), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [STATE(959)] = { + [sym_comment] = STATE(959), + [anon_sym_in] = ACTIONS(2640), + [sym__newline] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_err_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_GT_PIPE] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2640), + [anon_sym_RPAREN] = ACTIONS(2640), + [anon_sym_GT2] = ACTIONS(2642), + [anon_sym_DASH2] = ACTIONS(2640), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_STAR2] = ACTIONS(2642), + [anon_sym_and2] = ACTIONS(2640), + [anon_sym_xor2] = ACTIONS(2640), + [anon_sym_or2] = ACTIONS(2640), + [anon_sym_not_DASHin2] = ACTIONS(2640), + [anon_sym_has2] = ACTIONS(2640), + [anon_sym_not_DASHhas2] = ACTIONS(2640), + [anon_sym_starts_DASHwith2] = ACTIONS(2640), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2640), + [anon_sym_ends_DASHwith2] = ACTIONS(2640), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2640), + [anon_sym_EQ_EQ2] = ACTIONS(2640), + [anon_sym_BANG_EQ2] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2642), + [anon_sym_LT_EQ2] = ACTIONS(2640), + [anon_sym_GT_EQ2] = ACTIONS(2640), + [anon_sym_EQ_TILDE2] = ACTIONS(2640), + [anon_sym_BANG_TILDE2] = ACTIONS(2640), + [anon_sym_like2] = ACTIONS(2640), + [anon_sym_not_DASHlike2] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2640), + [anon_sym_PLUS_PLUS2] = ACTIONS(2640), + [anon_sym_SLASH2] = ACTIONS(2642), + [anon_sym_mod2] = ACTIONS(2640), + [anon_sym_SLASH_SLASH2] = ACTIONS(2640), + [anon_sym_PLUS2] = ACTIONS(2642), + [anon_sym_bit_DASHshl2] = ACTIONS(2640), + [anon_sym_bit_DASHshr2] = ACTIONS(2640), + [anon_sym_bit_DASHand2] = ACTIONS(2640), + [anon_sym_bit_DASHxor2] = ACTIONS(2640), + [anon_sym_bit_DASHor2] = ACTIONS(2640), + [anon_sym_err_GT] = ACTIONS(2642), + [anon_sym_out_GT] = ACTIONS(2642), + [anon_sym_e_GT] = ACTIONS(2642), + [anon_sym_o_GT] = ACTIONS(2642), + [anon_sym_err_PLUSout_GT] = ACTIONS(2642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2642), + [anon_sym_o_PLUSe_GT] = ACTIONS(2642), + [anon_sym_e_PLUSo_GT] = ACTIONS(2642), + [anon_sym_err_GT_GT] = ACTIONS(2640), + [anon_sym_out_GT_GT] = ACTIONS(2640), + [anon_sym_e_GT_GT] = ACTIONS(2640), + [anon_sym_o_GT_GT] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2640), + [sym__unquoted_pattern] = ACTIONS(2646), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(960)] = { + [sym_comment] = STATE(960), + [anon_sym_in] = ACTIONS(1946), + [sym__newline] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_err_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_GT_PIPE] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_GT2] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_EQ_GT] = ACTIONS(1946), + [anon_sym_STAR2] = ACTIONS(1948), + [anon_sym_and2] = ACTIONS(1946), + [anon_sym_xor2] = ACTIONS(1946), + [anon_sym_or2] = ACTIONS(1946), + [anon_sym_not_DASHin2] = ACTIONS(1946), + [anon_sym_has2] = ACTIONS(1946), + [anon_sym_not_DASHhas2] = ACTIONS(1946), + [anon_sym_starts_DASHwith2] = ACTIONS(1946), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1946), + [anon_sym_ends_DASHwith2] = ACTIONS(1946), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1946), + [anon_sym_EQ_EQ2] = ACTIONS(1946), + [anon_sym_BANG_EQ2] = ACTIONS(1946), + [anon_sym_LT2] = ACTIONS(1948), + [anon_sym_LT_EQ2] = ACTIONS(1946), + [anon_sym_GT_EQ2] = ACTIONS(1946), + [anon_sym_EQ_TILDE2] = ACTIONS(1946), + [anon_sym_BANG_TILDE2] = ACTIONS(1946), + [anon_sym_like2] = ACTIONS(1946), + [anon_sym_not_DASHlike2] = ACTIONS(1946), + [anon_sym_STAR_STAR2] = ACTIONS(1946), + [anon_sym_PLUS_PLUS2] = ACTIONS(1946), + [anon_sym_SLASH2] = ACTIONS(1948), + [anon_sym_mod2] = ACTIONS(1946), + [anon_sym_SLASH_SLASH2] = ACTIONS(1946), + [anon_sym_PLUS2] = ACTIONS(1948), + [anon_sym_bit_DASHshl2] = ACTIONS(1946), + [anon_sym_bit_DASHshr2] = ACTIONS(1946), + [anon_sym_bit_DASHand2] = ACTIONS(1946), + [anon_sym_bit_DASHxor2] = ACTIONS(1946), + [anon_sym_bit_DASHor2] = ACTIONS(1946), + [anon_sym_err_GT] = ACTIONS(1948), + [anon_sym_out_GT] = ACTIONS(1948), + [anon_sym_e_GT] = ACTIONS(1948), + [anon_sym_o_GT] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT] = ACTIONS(1948), + [anon_sym_err_GT_GT] = ACTIONS(1946), + [anon_sym_out_GT_GT] = ACTIONS(1946), + [anon_sym_e_GT_GT] = ACTIONS(1946), + [anon_sym_o_GT_GT] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1946), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(961)] = { + [aux_sym__repeat_newline] = STATE(921), + [sym_comment] = STATE(961), + [anon_sym_export] = ACTIONS(2648), + [anon_sym_alias] = ACTIONS(2650), + [anon_sym_let] = ACTIONS(2650), + [anon_sym_mut] = ACTIONS(2650), + [anon_sym_const] = ACTIONS(2650), + [aux_sym_cmd_identifier_token1] = ACTIONS(2648), + [anon_sym_def] = ACTIONS(2650), + [anon_sym_use] = ACTIONS(2650), + [anon_sym_export_DASHenv] = ACTIONS(2650), + [anon_sym_extern] = ACTIONS(2650), + [anon_sym_module] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_loop] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_else] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_catch] = ACTIONS(2650), + [anon_sym_match] = ACTIONS(2650), + [anon_sym_in] = ACTIONS(2648), + [anon_sym_true] = ACTIONS(2650), + [anon_sym_false] = ACTIONS(2650), + [anon_sym_null] = ACTIONS(2650), + [aux_sym_cmd_identifier_token3] = ACTIONS(2650), + [aux_sym_cmd_identifier_token4] = ACTIONS(2650), + [aux_sym_cmd_identifier_token5] = ACTIONS(2650), + [sym__newline] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2650), + [anon_sym_DOLLAR] = ACTIONS(2648), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2650), + [anon_sym_DOT_DOT] = ACTIONS(2648), + [anon_sym_where] = ACTIONS(2650), + [aux_sym_expr_unary_token1] = ACTIONS(2650), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2650), + [anon_sym_DOT_DOT_LT] = ACTIONS(2650), + [aux_sym__val_number_decimal_token1] = ACTIONS(2648), + [aux_sym__val_number_decimal_token2] = ACTIONS(2650), + [aux_sym__val_number_decimal_token3] = ACTIONS(2650), + [aux_sym__val_number_decimal_token4] = ACTIONS(2650), + [aux_sym__val_number_token1] = ACTIONS(2650), + [aux_sym__val_number_token2] = ACTIONS(2650), + [aux_sym__val_number_token3] = ACTIONS(2650), + [anon_sym_0b] = ACTIONS(2648), + [anon_sym_0o] = ACTIONS(2648), + [anon_sym_0x] = ACTIONS(2648), + [sym_val_date] = ACTIONS(2650), + [anon_sym_DQUOTE] = ACTIONS(2650), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_BQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2650), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2650), + [anon_sym_CARET] = ACTIONS(2650), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2650), + }, + [STATE(962)] = { + [sym_comment] = STATE(962), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(963)] = { + [sym_comment] = STATE(963), + [anon_sym_in] = ACTIONS(2654), + [sym__newline] = ACTIONS(2654), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym_PIPE] = ACTIONS(2654), + [anon_sym_err_GT_PIPE] = ACTIONS(2654), + [anon_sym_out_GT_PIPE] = ACTIONS(2654), + [anon_sym_e_GT_PIPE] = ACTIONS(2654), + [anon_sym_o_GT_PIPE] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2654), + [anon_sym_RPAREN] = ACTIONS(2654), + [anon_sym_GT2] = ACTIONS(2656), + [anon_sym_DASH2] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2654), + [anon_sym_RBRACE] = ACTIONS(2654), + [anon_sym_EQ_GT] = ACTIONS(2654), + [anon_sym_STAR2] = ACTIONS(2656), + [anon_sym_and2] = ACTIONS(2654), + [anon_sym_xor2] = ACTIONS(2654), + [anon_sym_or2] = ACTIONS(2654), + [anon_sym_not_DASHin2] = ACTIONS(2654), + [anon_sym_has2] = ACTIONS(2654), + [anon_sym_not_DASHhas2] = ACTIONS(2654), + [anon_sym_starts_DASHwith2] = ACTIONS(2654), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2654), + [anon_sym_ends_DASHwith2] = ACTIONS(2654), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2654), + [anon_sym_EQ_EQ2] = ACTIONS(2654), + [anon_sym_BANG_EQ2] = ACTIONS(2654), + [anon_sym_LT2] = ACTIONS(2656), + [anon_sym_LT_EQ2] = ACTIONS(2654), + [anon_sym_GT_EQ2] = ACTIONS(2654), + [anon_sym_EQ_TILDE2] = ACTIONS(2654), + [anon_sym_BANG_TILDE2] = ACTIONS(2654), + [anon_sym_like2] = ACTIONS(2654), + [anon_sym_not_DASHlike2] = ACTIONS(2654), + [anon_sym_STAR_STAR2] = ACTIONS(2654), + [anon_sym_PLUS_PLUS2] = ACTIONS(2654), + [anon_sym_SLASH2] = ACTIONS(2656), + [anon_sym_mod2] = ACTIONS(2654), + [anon_sym_SLASH_SLASH2] = ACTIONS(2654), + [anon_sym_PLUS2] = ACTIONS(2656), + [anon_sym_bit_DASHshl2] = ACTIONS(2654), + [anon_sym_bit_DASHshr2] = ACTIONS(2654), + [anon_sym_bit_DASHand2] = ACTIONS(2654), + [anon_sym_bit_DASHxor2] = ACTIONS(2654), + [anon_sym_bit_DASHor2] = ACTIONS(2654), + [anon_sym_err_GT] = ACTIONS(2656), + [anon_sym_out_GT] = ACTIONS(2656), + [anon_sym_e_GT] = ACTIONS(2656), + [anon_sym_o_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT] = ACTIONS(2656), + [anon_sym_err_GT_GT] = ACTIONS(2654), + [anon_sym_out_GT_GT] = ACTIONS(2654), + [anon_sym_e_GT_GT] = ACTIONS(2654), + [anon_sym_o_GT_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2654), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(964)] = { + [sym_comment] = STATE(964), + [anon_sym_in] = ACTIONS(1010), + [sym__newline] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_err_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_GT_PIPE] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1010), + [anon_sym_xor2] = ACTIONS(1010), + [anon_sym_or2] = ACTIONS(1010), + [anon_sym_not_DASHin2] = ACTIONS(1010), + [anon_sym_has2] = ACTIONS(1010), + [anon_sym_not_DASHhas2] = ACTIONS(1010), + [anon_sym_starts_DASHwith2] = ACTIONS(1010), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1010), + [anon_sym_ends_DASHwith2] = ACTIONS(1010), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1010), + [anon_sym_EQ_EQ2] = ACTIONS(1010), + [anon_sym_BANG_EQ2] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1010), + [anon_sym_GT_EQ2] = ACTIONS(1010), + [anon_sym_EQ_TILDE2] = ACTIONS(1010), + [anon_sym_BANG_TILDE2] = ACTIONS(1010), + [anon_sym_like2] = ACTIONS(1010), + [anon_sym_not_DASHlike2] = ACTIONS(1010), + [anon_sym_LPAREN2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(1010), + [anon_sym_PLUS_PLUS2] = ACTIONS(1010), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1010), + [anon_sym_SLASH_SLASH2] = ACTIONS(1010), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1010), + [anon_sym_bit_DASHshr2] = ACTIONS(1010), + [anon_sym_bit_DASHand2] = ACTIONS(1010), + [anon_sym_bit_DASHxor2] = ACTIONS(1010), + [anon_sym_bit_DASHor2] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1010), + [anon_sym_out_GT_GT] = ACTIONS(1010), + [anon_sym_e_GT_GT] = ACTIONS(1010), + [anon_sym_o_GT_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), + [sym__unquoted_pattern] = ACTIONS(2660), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(965)] = { + [sym_comment] = STATE(965), + [anon_sym_in] = ACTIONS(1018), + [sym__newline] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [anon_sym_err_GT_PIPE] = ACTIONS(1018), + [anon_sym_out_GT_PIPE] = ACTIONS(1018), + [anon_sym_e_GT_PIPE] = ACTIONS(1018), + [anon_sym_o_GT_PIPE] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), + [anon_sym_RPAREN] = ACTIONS(1018), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(1018), + [anon_sym_xor2] = ACTIONS(1018), + [anon_sym_or2] = ACTIONS(1018), + [anon_sym_not_DASHin2] = ACTIONS(1018), + [anon_sym_has2] = ACTIONS(1018), + [anon_sym_not_DASHhas2] = ACTIONS(1018), + [anon_sym_starts_DASHwith2] = ACTIONS(1018), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), + [anon_sym_ends_DASHwith2] = ACTIONS(1018), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), + [anon_sym_EQ_EQ2] = ACTIONS(1018), + [anon_sym_BANG_EQ2] = ACTIONS(1018), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(1018), + [anon_sym_GT_EQ2] = ACTIONS(1018), + [anon_sym_EQ_TILDE2] = ACTIONS(1018), + [anon_sym_BANG_TILDE2] = ACTIONS(1018), + [anon_sym_like2] = ACTIONS(1018), + [anon_sym_not_DASHlike2] = ACTIONS(1018), + [anon_sym_LPAREN2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(1018), + [anon_sym_PLUS_PLUS2] = ACTIONS(1018), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(1018), + [anon_sym_SLASH_SLASH2] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(1018), + [anon_sym_bit_DASHshr2] = ACTIONS(1018), + [anon_sym_bit_DASHand2] = ACTIONS(1018), + [anon_sym_bit_DASHxor2] = ACTIONS(1018), + [anon_sym_bit_DASHor2] = ACTIONS(1018), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(1018), + [anon_sym_out_GT_GT] = ACTIONS(1018), + [anon_sym_e_GT_GT] = ACTIONS(1018), + [anon_sym_o_GT_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), + [sym__unquoted_pattern] = ACTIONS(2660), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(966)] = { + [aux_sym__repeat_newline] = STATE(1055), + [sym__expression_parenthesized] = STATE(4352), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_comment] = STATE(966), + [aux_sym_cmd_identifier_token2] = ACTIONS(2626), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2630), + [aux_sym_cmd_identifier_token3] = ACTIONS(2632), + [aux_sym_cmd_identifier_token4] = ACTIONS(2632), + [aux_sym_cmd_identifier_token5] = ACTIONS(2632), + [sym__newline] = ACTIONS(2634), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -119903,1389 +119183,2341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(2636), + [aux_sym__val_number_decimal_token4] = ACTIONS(2636), + [aux_sym__val_number_token1] = ACTIONS(2632), + [aux_sym__val_number_token2] = ACTIONS(2632), + [aux_sym__val_number_token3] = ACTIONS(2632), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2638), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_COLON2] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(978)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4271), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(978), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [STATE(967)] = { + [sym_comment] = STATE(967), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(979)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym_comment] = STATE(979), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(968)] = { + [sym__expr_parenthesized_immediate] = STATE(4767), + [sym_comment] = STATE(968), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(980)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(980), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [STATE(969)] = { + [sym__expr_parenthesized_immediate] = STATE(4971), + [sym_comment] = STATE(969), + [ts_builtin_sym_end] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2154), + [sym__newline] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_err_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_GT_PIPE] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2154), + [anon_sym_GT2] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2154), + [anon_sym_STAR2] = ACTIONS(2156), + [anon_sym_and2] = ACTIONS(2154), + [anon_sym_xor2] = ACTIONS(2154), + [anon_sym_or2] = ACTIONS(2154), + [anon_sym_not_DASHin2] = ACTIONS(2154), + [anon_sym_has2] = ACTIONS(2154), + [anon_sym_not_DASHhas2] = ACTIONS(2154), + [anon_sym_starts_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2154), + [anon_sym_ends_DASHwith2] = ACTIONS(2154), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2154), + [anon_sym_EQ_EQ2] = ACTIONS(2154), + [anon_sym_BANG_EQ2] = ACTIONS(2154), + [anon_sym_LT2] = ACTIONS(2156), + [anon_sym_LT_EQ2] = ACTIONS(2154), + [anon_sym_GT_EQ2] = ACTIONS(2154), + [anon_sym_EQ_TILDE2] = ACTIONS(2154), + [anon_sym_BANG_TILDE2] = ACTIONS(2154), + [anon_sym_like2] = ACTIONS(2154), + [anon_sym_not_DASHlike2] = ACTIONS(2154), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2154), + [anon_sym_PLUS_PLUS2] = ACTIONS(2154), + [anon_sym_SLASH2] = ACTIONS(2156), + [anon_sym_mod2] = ACTIONS(2154), + [anon_sym_SLASH_SLASH2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_bit_DASHshl2] = ACTIONS(2154), + [anon_sym_bit_DASHshr2] = ACTIONS(2154), + [anon_sym_bit_DASHand2] = ACTIONS(2154), + [anon_sym_bit_DASHxor2] = ACTIONS(2154), + [anon_sym_bit_DASHor2] = ACTIONS(2154), + [anon_sym_err_GT] = ACTIONS(2156), + [anon_sym_out_GT] = ACTIONS(2156), + [anon_sym_e_GT] = ACTIONS(2156), + [anon_sym_o_GT] = ACTIONS(2156), + [anon_sym_err_PLUSout_GT] = ACTIONS(2156), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2156), + [anon_sym_o_PLUSe_GT] = ACTIONS(2156), + [anon_sym_e_PLUSo_GT] = ACTIONS(2156), + [anon_sym_err_GT_GT] = ACTIONS(2154), + [anon_sym_out_GT_GT] = ACTIONS(2154), + [anon_sym_e_GT_GT] = ACTIONS(2154), + [anon_sym_o_GT_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2154), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(981)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), - [sym_comment] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [STATE(970)] = { + [sym__expr_parenthesized_immediate] = STATE(4971), + [sym_comment] = STATE(970), + [ts_builtin_sym_end] = ACTIONS(2158), + [anon_sym_in] = ACTIONS(2158), + [sym__newline] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_err_GT_PIPE] = ACTIONS(2158), + [anon_sym_out_GT_PIPE] = ACTIONS(2158), + [anon_sym_e_GT_PIPE] = ACTIONS(2158), + [anon_sym_o_GT_PIPE] = ACTIONS(2158), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2158), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2158), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2158), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2158), + [anon_sym_GT2] = ACTIONS(2160), + [anon_sym_DASH2] = ACTIONS(2158), + [anon_sym_STAR2] = ACTIONS(2160), + [anon_sym_and2] = ACTIONS(2158), + [anon_sym_xor2] = ACTIONS(2158), + [anon_sym_or2] = ACTIONS(2158), + [anon_sym_not_DASHin2] = ACTIONS(2158), + [anon_sym_has2] = ACTIONS(2158), + [anon_sym_not_DASHhas2] = ACTIONS(2158), + [anon_sym_starts_DASHwith2] = ACTIONS(2158), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2158), + [anon_sym_ends_DASHwith2] = ACTIONS(2158), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2158), + [anon_sym_EQ_EQ2] = ACTIONS(2158), + [anon_sym_BANG_EQ2] = ACTIONS(2158), + [anon_sym_LT2] = ACTIONS(2160), + [anon_sym_LT_EQ2] = ACTIONS(2158), + [anon_sym_GT_EQ2] = ACTIONS(2158), + [anon_sym_EQ_TILDE2] = ACTIONS(2158), + [anon_sym_BANG_TILDE2] = ACTIONS(2158), + [anon_sym_like2] = ACTIONS(2158), + [anon_sym_not_DASHlike2] = ACTIONS(2158), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2158), + [anon_sym_PLUS_PLUS2] = ACTIONS(2158), + [anon_sym_SLASH2] = ACTIONS(2160), + [anon_sym_mod2] = ACTIONS(2158), + [anon_sym_SLASH_SLASH2] = ACTIONS(2158), + [anon_sym_PLUS2] = ACTIONS(2160), + [anon_sym_bit_DASHshl2] = ACTIONS(2158), + [anon_sym_bit_DASHshr2] = ACTIONS(2158), + [anon_sym_bit_DASHand2] = ACTIONS(2158), + [anon_sym_bit_DASHxor2] = ACTIONS(2158), + [anon_sym_bit_DASHor2] = ACTIONS(2158), + [anon_sym_err_GT] = ACTIONS(2160), + [anon_sym_out_GT] = ACTIONS(2160), + [anon_sym_e_GT] = ACTIONS(2160), + [anon_sym_o_GT] = ACTIONS(2160), + [anon_sym_err_PLUSout_GT] = ACTIONS(2160), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2160), + [anon_sym_o_PLUSe_GT] = ACTIONS(2160), + [anon_sym_e_PLUSo_GT] = ACTIONS(2160), + [anon_sym_err_GT_GT] = ACTIONS(2158), + [anon_sym_out_GT_GT] = ACTIONS(2158), + [anon_sym_e_GT_GT] = ACTIONS(2158), + [anon_sym_o_GT_GT] = ACTIONS(2158), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2158), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2158), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2158), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2158), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(982)] = { - [aux_sym__repeat_newline] = STATE(1035), - [sym_comment] = STATE(982), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(971)] = { + [sym__expr_parenthesized_immediate] = STATE(4971), + [sym_comment] = STATE(971), + [ts_builtin_sym_end] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(2162), + [sym__newline] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_err_GT_PIPE] = ACTIONS(2162), + [anon_sym_out_GT_PIPE] = ACTIONS(2162), + [anon_sym_e_GT_PIPE] = ACTIONS(2162), + [anon_sym_o_GT_PIPE] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2162), + [anon_sym_GT2] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_STAR2] = ACTIONS(2164), + [anon_sym_and2] = ACTIONS(2162), + [anon_sym_xor2] = ACTIONS(2162), + [anon_sym_or2] = ACTIONS(2162), + [anon_sym_not_DASHin2] = ACTIONS(2162), + [anon_sym_has2] = ACTIONS(2162), + [anon_sym_not_DASHhas2] = ACTIONS(2162), + [anon_sym_starts_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2162), + [anon_sym_ends_DASHwith2] = ACTIONS(2162), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2162), + [anon_sym_EQ_EQ2] = ACTIONS(2162), + [anon_sym_BANG_EQ2] = ACTIONS(2162), + [anon_sym_LT2] = ACTIONS(2164), + [anon_sym_LT_EQ2] = ACTIONS(2162), + [anon_sym_GT_EQ2] = ACTIONS(2162), + [anon_sym_EQ_TILDE2] = ACTIONS(2162), + [anon_sym_BANG_TILDE2] = ACTIONS(2162), + [anon_sym_like2] = ACTIONS(2162), + [anon_sym_not_DASHlike2] = ACTIONS(2162), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2162), + [anon_sym_PLUS_PLUS2] = ACTIONS(2162), + [anon_sym_SLASH2] = ACTIONS(2164), + [anon_sym_mod2] = ACTIONS(2162), + [anon_sym_SLASH_SLASH2] = ACTIONS(2162), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_bit_DASHshl2] = ACTIONS(2162), + [anon_sym_bit_DASHshr2] = ACTIONS(2162), + [anon_sym_bit_DASHand2] = ACTIONS(2162), + [anon_sym_bit_DASHxor2] = ACTIONS(2162), + [anon_sym_bit_DASHor2] = ACTIONS(2162), + [anon_sym_err_GT] = ACTIONS(2164), + [anon_sym_out_GT] = ACTIONS(2164), + [anon_sym_e_GT] = ACTIONS(2164), + [anon_sym_o_GT] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT] = ACTIONS(2164), + [anon_sym_err_GT_GT] = ACTIONS(2162), + [anon_sym_out_GT_GT] = ACTIONS(2162), + [anon_sym_e_GT_GT] = ACTIONS(2162), + [anon_sym_o_GT_GT] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2162), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(983)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(983), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [STATE(972)] = { + [sym__expr_parenthesized_immediate] = STATE(4971), + [sym_comment] = STATE(972), + [ts_builtin_sym_end] = ACTIONS(2138), + [anon_sym_in] = ACTIONS(2138), + [sym__newline] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_err_GT_PIPE] = ACTIONS(2138), + [anon_sym_out_GT_PIPE] = ACTIONS(2138), + [anon_sym_e_GT_PIPE] = ACTIONS(2138), + [anon_sym_o_GT_PIPE] = ACTIONS(2138), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2138), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2138), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2138), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2138), + [anon_sym_GT2] = ACTIONS(2140), + [anon_sym_DASH2] = ACTIONS(2138), + [anon_sym_STAR2] = ACTIONS(2140), + [anon_sym_and2] = ACTIONS(2138), + [anon_sym_xor2] = ACTIONS(2138), + [anon_sym_or2] = ACTIONS(2138), + [anon_sym_not_DASHin2] = ACTIONS(2138), + [anon_sym_has2] = ACTIONS(2138), + [anon_sym_not_DASHhas2] = ACTIONS(2138), + [anon_sym_starts_DASHwith2] = ACTIONS(2138), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2138), + [anon_sym_ends_DASHwith2] = ACTIONS(2138), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2138), + [anon_sym_EQ_EQ2] = ACTIONS(2138), + [anon_sym_BANG_EQ2] = ACTIONS(2138), + [anon_sym_LT2] = ACTIONS(2140), + [anon_sym_LT_EQ2] = ACTIONS(2138), + [anon_sym_GT_EQ2] = ACTIONS(2138), + [anon_sym_EQ_TILDE2] = ACTIONS(2138), + [anon_sym_BANG_TILDE2] = ACTIONS(2138), + [anon_sym_like2] = ACTIONS(2138), + [anon_sym_not_DASHlike2] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2138), + [anon_sym_PLUS_PLUS2] = ACTIONS(2138), + [anon_sym_SLASH2] = ACTIONS(2140), + [anon_sym_mod2] = ACTIONS(2138), + [anon_sym_SLASH_SLASH2] = ACTIONS(2138), + [anon_sym_PLUS2] = ACTIONS(2140), + [anon_sym_bit_DASHshl2] = ACTIONS(2138), + [anon_sym_bit_DASHshr2] = ACTIONS(2138), + [anon_sym_bit_DASHand2] = ACTIONS(2138), + [anon_sym_bit_DASHxor2] = ACTIONS(2138), + [anon_sym_bit_DASHor2] = ACTIONS(2138), + [anon_sym_err_GT] = ACTIONS(2140), + [anon_sym_out_GT] = ACTIONS(2140), + [anon_sym_e_GT] = ACTIONS(2140), + [anon_sym_o_GT] = ACTIONS(2140), + [anon_sym_err_PLUSout_GT] = ACTIONS(2140), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), + [anon_sym_o_PLUSe_GT] = ACTIONS(2140), + [anon_sym_e_PLUSo_GT] = ACTIONS(2140), + [anon_sym_err_GT_GT] = ACTIONS(2138), + [anon_sym_out_GT_GT] = ACTIONS(2138), + [anon_sym_e_GT_GT] = ACTIONS(2138), + [anon_sym_o_GT_GT] = ACTIONS(2138), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2138), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2138), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2138), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2138), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(984)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym_comment] = STATE(984), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(973)] = { + [sym_comment] = STATE(973), + [ts_builtin_sym_end] = ACTIONS(2491), + [anon_sym_in] = ACTIONS(2491), + [sym__newline] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_err_GT_PIPE] = ACTIONS(2491), + [anon_sym_out_GT_PIPE] = ACTIONS(2491), + [anon_sym_e_GT_PIPE] = ACTIONS(2491), + [anon_sym_o_GT_PIPE] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2491), + [anon_sym_GT2] = ACTIONS(2493), + [anon_sym_DASH2] = ACTIONS(2491), + [anon_sym_STAR2] = ACTIONS(2493), + [anon_sym_and2] = ACTIONS(2491), + [anon_sym_xor2] = ACTIONS(2491), + [anon_sym_or2] = ACTIONS(2491), + [anon_sym_not_DASHin2] = ACTIONS(2491), + [anon_sym_has2] = ACTIONS(2491), + [anon_sym_not_DASHhas2] = ACTIONS(2491), + [anon_sym_starts_DASHwith2] = ACTIONS(2491), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2491), + [anon_sym_ends_DASHwith2] = ACTIONS(2491), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2491), + [anon_sym_EQ_EQ2] = ACTIONS(2491), + [anon_sym_BANG_EQ2] = ACTIONS(2491), + [anon_sym_LT2] = ACTIONS(2493), + [anon_sym_LT_EQ2] = ACTIONS(2491), + [anon_sym_GT_EQ2] = ACTIONS(2491), + [anon_sym_EQ_TILDE2] = ACTIONS(2491), + [anon_sym_BANG_TILDE2] = ACTIONS(2491), + [anon_sym_like2] = ACTIONS(2491), + [anon_sym_not_DASHlike2] = ACTIONS(2491), + [anon_sym_LPAREN2] = ACTIONS(2491), + [anon_sym_STAR_STAR2] = ACTIONS(2491), + [anon_sym_PLUS_PLUS2] = ACTIONS(2491), + [anon_sym_SLASH2] = ACTIONS(2493), + [anon_sym_mod2] = ACTIONS(2491), + [anon_sym_SLASH_SLASH2] = ACTIONS(2491), + [anon_sym_PLUS2] = ACTIONS(2493), + [anon_sym_bit_DASHshl2] = ACTIONS(2491), + [anon_sym_bit_DASHshr2] = ACTIONS(2491), + [anon_sym_bit_DASHand2] = ACTIONS(2491), + [anon_sym_bit_DASHxor2] = ACTIONS(2491), + [anon_sym_bit_DASHor2] = ACTIONS(2491), + [anon_sym_err_GT] = ACTIONS(2493), + [anon_sym_out_GT] = ACTIONS(2493), + [anon_sym_e_GT] = ACTIONS(2493), + [anon_sym_o_GT] = ACTIONS(2493), + [anon_sym_err_PLUSout_GT] = ACTIONS(2493), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2493), + [anon_sym_o_PLUSe_GT] = ACTIONS(2493), + [anon_sym_e_PLUSo_GT] = ACTIONS(2493), + [anon_sym_err_GT_GT] = ACTIONS(2491), + [anon_sym_out_GT_GT] = ACTIONS(2491), + [anon_sym_e_GT_GT] = ACTIONS(2491), + [anon_sym_o_GT_GT] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2491), + [sym__unquoted_pattern] = ACTIONS(2493), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(985)] = { - [sym_expr_unary] = STATE(2779), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2475), - [sym_val_range] = STATE(2779), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(2779), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2547), - [sym__unquoted_with_expr] = STATE(2780), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(985), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [STATE(974)] = { + [sym_comment] = STATE(974), + [ts_builtin_sym_end] = ACTIONS(2640), + [anon_sym_in] = ACTIONS(2640), + [sym__newline] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_err_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_GT_PIPE] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2640), + [anon_sym_GT2] = ACTIONS(2642), + [anon_sym_DASH2] = ACTIONS(2640), + [anon_sym_STAR2] = ACTIONS(2642), + [anon_sym_and2] = ACTIONS(2640), + [anon_sym_xor2] = ACTIONS(2640), + [anon_sym_or2] = ACTIONS(2640), + [anon_sym_not_DASHin2] = ACTIONS(2640), + [anon_sym_has2] = ACTIONS(2640), + [anon_sym_not_DASHhas2] = ACTIONS(2640), + [anon_sym_starts_DASHwith2] = ACTIONS(2640), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2640), + [anon_sym_ends_DASHwith2] = ACTIONS(2640), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2640), + [anon_sym_EQ_EQ2] = ACTIONS(2640), + [anon_sym_BANG_EQ2] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2642), + [anon_sym_LT_EQ2] = ACTIONS(2640), + [anon_sym_GT_EQ2] = ACTIONS(2640), + [anon_sym_EQ_TILDE2] = ACTIONS(2640), + [anon_sym_BANG_TILDE2] = ACTIONS(2640), + [anon_sym_like2] = ACTIONS(2640), + [anon_sym_not_DASHlike2] = ACTIONS(2640), + [anon_sym_LPAREN2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2640), + [anon_sym_PLUS_PLUS2] = ACTIONS(2640), + [anon_sym_SLASH2] = ACTIONS(2642), + [anon_sym_mod2] = ACTIONS(2640), + [anon_sym_SLASH_SLASH2] = ACTIONS(2640), + [anon_sym_PLUS2] = ACTIONS(2642), + [anon_sym_bit_DASHshl2] = ACTIONS(2640), + [anon_sym_bit_DASHshr2] = ACTIONS(2640), + [anon_sym_bit_DASHand2] = ACTIONS(2640), + [anon_sym_bit_DASHxor2] = ACTIONS(2640), + [anon_sym_bit_DASHor2] = ACTIONS(2640), + [anon_sym_err_GT] = ACTIONS(2642), + [anon_sym_out_GT] = ACTIONS(2642), + [anon_sym_e_GT] = ACTIONS(2642), + [anon_sym_o_GT] = ACTIONS(2642), + [anon_sym_err_PLUSout_GT] = ACTIONS(2642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2642), + [anon_sym_o_PLUSe_GT] = ACTIONS(2642), + [anon_sym_e_PLUSo_GT] = ACTIONS(2642), + [anon_sym_err_GT_GT] = ACTIONS(2640), + [anon_sym_out_GT_GT] = ACTIONS(2640), + [anon_sym_e_GT_GT] = ACTIONS(2640), + [anon_sym_o_GT_GT] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2640), + [sym__unquoted_pattern] = ACTIONS(2646), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(986)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(986), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [STATE(975)] = { + [sym_comment] = STATE(975), + [ts_builtin_sym_end] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1613), + [anon_sym_DASH2] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1613), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1613), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1706), + [anon_sym_SLASH2] = ACTIONS(1613), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1613), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_err_GT] = ACTIONS(1613), + [anon_sym_out_GT] = ACTIONS(1613), + [anon_sym_e_GT] = ACTIONS(1613), + [anon_sym_o_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT] = ACTIONS(1613), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [sym__unquoted_pattern] = ACTIONS(2559), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(987)] = { - [sym_expr_unary] = STATE(2782), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2481), - [sym_val_range] = STATE(2782), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(2782), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2581), - [sym__unquoted_with_expr] = STATE(2783), - [sym__unquoted_anonymous_prefix] = STATE(4610), - [sym_comment] = STATE(987), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [STATE(976)] = { + [sym_comment] = STATE(976), + [ts_builtin_sym_end] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(1936), + [sym__newline] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_err_GT_PIPE] = ACTIONS(1936), + [anon_sym_out_GT_PIPE] = ACTIONS(1936), + [anon_sym_e_GT_PIPE] = ACTIONS(1936), + [anon_sym_o_GT_PIPE] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1936), + [anon_sym_GT2] = ACTIONS(1938), + [anon_sym_DASH2] = ACTIONS(1936), + [anon_sym_STAR2] = ACTIONS(1938), + [anon_sym_and2] = ACTIONS(1936), + [anon_sym_xor2] = ACTIONS(1936), + [anon_sym_or2] = ACTIONS(1936), + [anon_sym_not_DASHin2] = ACTIONS(1936), + [anon_sym_has2] = ACTIONS(1936), + [anon_sym_not_DASHhas2] = ACTIONS(1936), + [anon_sym_starts_DASHwith2] = ACTIONS(1936), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1936), + [anon_sym_ends_DASHwith2] = ACTIONS(1936), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1936), + [anon_sym_EQ_EQ2] = ACTIONS(1936), + [anon_sym_BANG_EQ2] = ACTIONS(1936), + [anon_sym_LT2] = ACTIONS(1938), + [anon_sym_LT_EQ2] = ACTIONS(1936), + [anon_sym_GT_EQ2] = ACTIONS(1936), + [anon_sym_EQ_TILDE2] = ACTIONS(1936), + [anon_sym_BANG_TILDE2] = ACTIONS(1936), + [anon_sym_like2] = ACTIONS(1936), + [anon_sym_not_DASHlike2] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1940), + [anon_sym_STAR_STAR2] = ACTIONS(1936), + [anon_sym_PLUS_PLUS2] = ACTIONS(1936), + [anon_sym_SLASH2] = ACTIONS(1938), + [anon_sym_mod2] = ACTIONS(1936), + [anon_sym_SLASH_SLASH2] = ACTIONS(1936), + [anon_sym_PLUS2] = ACTIONS(1938), + [anon_sym_bit_DASHshl2] = ACTIONS(1936), + [anon_sym_bit_DASHshr2] = ACTIONS(1936), + [anon_sym_bit_DASHand2] = ACTIONS(1936), + [anon_sym_bit_DASHxor2] = ACTIONS(1936), + [anon_sym_bit_DASHor2] = ACTIONS(1936), + [anon_sym_err_GT] = ACTIONS(1938), + [anon_sym_out_GT] = ACTIONS(1938), + [anon_sym_e_GT] = ACTIONS(1938), + [anon_sym_o_GT] = ACTIONS(1938), + [anon_sym_err_PLUSout_GT] = ACTIONS(1938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1938), + [anon_sym_o_PLUSe_GT] = ACTIONS(1938), + [anon_sym_e_PLUSo_GT] = ACTIONS(1938), + [anon_sym_err_GT_GT] = ACTIONS(1936), + [anon_sym_out_GT_GT] = ACTIONS(1936), + [anon_sym_e_GT_GT] = ACTIONS(1936), + [anon_sym_o_GT_GT] = ACTIONS(1936), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1936), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1936), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1936), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1936), + [sym__unquoted_pattern] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(977)] = { + [aux_sym__repeat_newline] = STATE(1038), + [sym_comment] = STATE(977), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(978)] = { + [sym_comment] = STATE(978), + [ts_builtin_sym_end] = ACTIONS(1010), + [anon_sym_in] = ACTIONS(1010), + [sym__newline] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1010), + [anon_sym_err_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_GT_PIPE] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1010), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1010), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1010), + [anon_sym_xor2] = ACTIONS(1010), + [anon_sym_or2] = ACTIONS(1010), + [anon_sym_not_DASHin2] = ACTIONS(1010), + [anon_sym_has2] = ACTIONS(1010), + [anon_sym_not_DASHhas2] = ACTIONS(1010), + [anon_sym_starts_DASHwith2] = ACTIONS(1010), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1010), + [anon_sym_ends_DASHwith2] = ACTIONS(1010), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1010), + [anon_sym_EQ_EQ2] = ACTIONS(1010), + [anon_sym_BANG_EQ2] = ACTIONS(1010), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1010), + [anon_sym_GT_EQ2] = ACTIONS(1010), + [anon_sym_EQ_TILDE2] = ACTIONS(1010), + [anon_sym_BANG_TILDE2] = ACTIONS(1010), + [anon_sym_like2] = ACTIONS(1010), + [anon_sym_not_DASHlike2] = ACTIONS(1010), + [anon_sym_LPAREN2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(1010), + [anon_sym_PLUS_PLUS2] = ACTIONS(1010), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1010), + [anon_sym_SLASH_SLASH2] = ACTIONS(1010), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1010), + [anon_sym_bit_DASHshr2] = ACTIONS(1010), + [anon_sym_bit_DASHand2] = ACTIONS(1010), + [anon_sym_bit_DASHxor2] = ACTIONS(1010), + [anon_sym_bit_DASHor2] = ACTIONS(1010), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1010), + [anon_sym_out_GT_GT] = ACTIONS(1010), + [anon_sym_e_GT_GT] = ACTIONS(1010), + [anon_sym_o_GT_GT] = ACTIONS(1010), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1010), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1010), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1010), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1010), + [sym__unquoted_pattern] = ACTIONS(2660), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(979)] = { + [sym_comment] = STATE(979), + [ts_builtin_sym_end] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(1018), + [sym__newline] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [anon_sym_err_GT_PIPE] = ACTIONS(1018), + [anon_sym_out_GT_PIPE] = ACTIONS(1018), + [anon_sym_e_GT_PIPE] = ACTIONS(1018), + [anon_sym_o_GT_PIPE] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(1018), + [anon_sym_xor2] = ACTIONS(1018), + [anon_sym_or2] = ACTIONS(1018), + [anon_sym_not_DASHin2] = ACTIONS(1018), + [anon_sym_has2] = ACTIONS(1018), + [anon_sym_not_DASHhas2] = ACTIONS(1018), + [anon_sym_starts_DASHwith2] = ACTIONS(1018), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), + [anon_sym_ends_DASHwith2] = ACTIONS(1018), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), + [anon_sym_EQ_EQ2] = ACTIONS(1018), + [anon_sym_BANG_EQ2] = ACTIONS(1018), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(1018), + [anon_sym_GT_EQ2] = ACTIONS(1018), + [anon_sym_EQ_TILDE2] = ACTIONS(1018), + [anon_sym_BANG_TILDE2] = ACTIONS(1018), + [anon_sym_like2] = ACTIONS(1018), + [anon_sym_not_DASHlike2] = ACTIONS(1018), + [anon_sym_LPAREN2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(1018), + [anon_sym_PLUS_PLUS2] = ACTIONS(1018), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(1018), + [anon_sym_SLASH_SLASH2] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(1018), + [anon_sym_bit_DASHshr2] = ACTIONS(1018), + [anon_sym_bit_DASHand2] = ACTIONS(1018), + [anon_sym_bit_DASHxor2] = ACTIONS(1018), + [anon_sym_bit_DASHor2] = ACTIONS(1018), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(1018), + [anon_sym_out_GT_GT] = ACTIONS(1018), + [anon_sym_e_GT_GT] = ACTIONS(1018), + [anon_sym_o_GT_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), + [sym__unquoted_pattern] = ACTIONS(2660), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(980)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(980), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(981)] = { + [aux_sym__repeat_newline] = STATE(1039), + [sym_comment] = STATE(981), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(982)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(982), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(983)] = { + [sym_comment] = STATE(983), + [ts_builtin_sym_end] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [sym__newline] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_err_GT_PIPE] = ACTIONS(2568), + [anon_sym_out_GT_PIPE] = ACTIONS(2568), + [anon_sym_e_GT_PIPE] = ACTIONS(2568), + [anon_sym_o_GT_PIPE] = ACTIONS(2568), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2568), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2568), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2568), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2568), + [anon_sym_GT2] = ACTIONS(2570), + [anon_sym_DASH2] = ACTIONS(2568), + [anon_sym_STAR2] = ACTIONS(2570), + [anon_sym_and2] = ACTIONS(2568), + [anon_sym_xor2] = ACTIONS(2568), + [anon_sym_or2] = ACTIONS(2568), + [anon_sym_not_DASHin2] = ACTIONS(2568), + [anon_sym_has2] = ACTIONS(2568), + [anon_sym_not_DASHhas2] = ACTIONS(2568), + [anon_sym_starts_DASHwith2] = ACTIONS(2568), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2568), + [anon_sym_ends_DASHwith2] = ACTIONS(2568), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2568), + [anon_sym_EQ_EQ2] = ACTIONS(2568), + [anon_sym_BANG_EQ2] = ACTIONS(2568), + [anon_sym_LT2] = ACTIONS(2570), + [anon_sym_LT_EQ2] = ACTIONS(2568), + [anon_sym_GT_EQ2] = ACTIONS(2568), + [anon_sym_EQ_TILDE2] = ACTIONS(2568), + [anon_sym_BANG_TILDE2] = ACTIONS(2568), + [anon_sym_like2] = ACTIONS(2568), + [anon_sym_not_DASHlike2] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_STAR_STAR2] = ACTIONS(2568), + [anon_sym_PLUS_PLUS2] = ACTIONS(2568), + [anon_sym_SLASH2] = ACTIONS(2570), + [anon_sym_mod2] = ACTIONS(2568), + [anon_sym_SLASH_SLASH2] = ACTIONS(2568), + [anon_sym_PLUS2] = ACTIONS(2570), + [anon_sym_bit_DASHshl2] = ACTIONS(2568), + [anon_sym_bit_DASHshr2] = ACTIONS(2568), + [anon_sym_bit_DASHand2] = ACTIONS(2568), + [anon_sym_bit_DASHxor2] = ACTIONS(2568), + [anon_sym_bit_DASHor2] = ACTIONS(2568), + [anon_sym_err_GT] = ACTIONS(2570), + [anon_sym_out_GT] = ACTIONS(2570), + [anon_sym_e_GT] = ACTIONS(2570), + [anon_sym_o_GT] = ACTIONS(2570), + [anon_sym_err_PLUSout_GT] = ACTIONS(2570), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2570), + [anon_sym_o_PLUSe_GT] = ACTIONS(2570), + [anon_sym_e_PLUSo_GT] = ACTIONS(2570), + [anon_sym_err_GT_GT] = ACTIONS(2568), + [anon_sym_out_GT_GT] = ACTIONS(2568), + [anon_sym_e_GT_GT] = ACTIONS(2568), + [anon_sym_o_GT_GT] = ACTIONS(2568), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2568), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2568), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2568), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2568), + [sym__unquoted_pattern] = ACTIONS(1956), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(984)] = { + [aux_sym__repeat_newline] = STATE(1040), + [sym_comment] = STATE(984), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(985)] = { + [sym_comment] = STATE(985), + [ts_builtin_sym_end] = ACTIONS(1946), + [anon_sym_in] = ACTIONS(1946), + [sym__newline] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_err_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_GT_PIPE] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1946), + [anon_sym_GT2] = ACTIONS(1948), + [anon_sym_DASH2] = ACTIONS(1946), + [anon_sym_STAR2] = ACTIONS(1948), + [anon_sym_and2] = ACTIONS(1946), + [anon_sym_xor2] = ACTIONS(1946), + [anon_sym_or2] = ACTIONS(1946), + [anon_sym_not_DASHin2] = ACTIONS(1946), + [anon_sym_has2] = ACTIONS(1946), + [anon_sym_not_DASHhas2] = ACTIONS(1946), + [anon_sym_starts_DASHwith2] = ACTIONS(1946), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1946), + [anon_sym_ends_DASHwith2] = ACTIONS(1946), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1946), + [anon_sym_EQ_EQ2] = ACTIONS(1946), + [anon_sym_BANG_EQ2] = ACTIONS(1946), + [anon_sym_LT2] = ACTIONS(1948), + [anon_sym_LT_EQ2] = ACTIONS(1946), + [anon_sym_GT_EQ2] = ACTIONS(1946), + [anon_sym_EQ_TILDE2] = ACTIONS(1946), + [anon_sym_BANG_TILDE2] = ACTIONS(1946), + [anon_sym_like2] = ACTIONS(1946), + [anon_sym_not_DASHlike2] = ACTIONS(1946), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_STAR_STAR2] = ACTIONS(1946), + [anon_sym_PLUS_PLUS2] = ACTIONS(1946), + [anon_sym_SLASH2] = ACTIONS(1948), + [anon_sym_mod2] = ACTIONS(1946), + [anon_sym_SLASH_SLASH2] = ACTIONS(1946), + [anon_sym_PLUS2] = ACTIONS(1948), + [anon_sym_bit_DASHshl2] = ACTIONS(1946), + [anon_sym_bit_DASHshr2] = ACTIONS(1946), + [anon_sym_bit_DASHand2] = ACTIONS(1946), + [anon_sym_bit_DASHxor2] = ACTIONS(1946), + [anon_sym_bit_DASHor2] = ACTIONS(1946), + [anon_sym_err_GT] = ACTIONS(1948), + [anon_sym_out_GT] = ACTIONS(1948), + [anon_sym_e_GT] = ACTIONS(1948), + [anon_sym_o_GT] = ACTIONS(1948), + [anon_sym_err_PLUSout_GT] = ACTIONS(1948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1948), + [anon_sym_o_PLUSe_GT] = ACTIONS(1948), + [anon_sym_e_PLUSo_GT] = ACTIONS(1948), + [anon_sym_err_GT_GT] = ACTIONS(1946), + [anon_sym_out_GT_GT] = ACTIONS(1946), + [anon_sym_e_GT_GT] = ACTIONS(1946), + [anon_sym_o_GT_GT] = ACTIONS(1946), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1946), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1946), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1946), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1946), + [sym__unquoted_pattern] = ACTIONS(1956), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(986)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(986), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(987)] = { + [sym_comment] = STATE(987), + [ts_builtin_sym_end] = ACTIONS(2584), + [anon_sym_in] = ACTIONS(2584), + [sym__newline] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_err_GT_PIPE] = ACTIONS(2584), + [anon_sym_out_GT_PIPE] = ACTIONS(2584), + [anon_sym_e_GT_PIPE] = ACTIONS(2584), + [anon_sym_o_GT_PIPE] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2584), + [anon_sym_GT2] = ACTIONS(2586), + [anon_sym_DASH2] = ACTIONS(2584), + [anon_sym_STAR2] = ACTIONS(2586), + [anon_sym_and2] = ACTIONS(2584), + [anon_sym_xor2] = ACTIONS(2584), + [anon_sym_or2] = ACTIONS(2584), + [anon_sym_not_DASHin2] = ACTIONS(2584), + [anon_sym_has2] = ACTIONS(2584), + [anon_sym_not_DASHhas2] = ACTIONS(2584), + [anon_sym_starts_DASHwith2] = ACTIONS(2584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2584), + [anon_sym_ends_DASHwith2] = ACTIONS(2584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2584), + [anon_sym_EQ_EQ2] = ACTIONS(2584), + [anon_sym_BANG_EQ2] = ACTIONS(2584), + [anon_sym_LT2] = ACTIONS(2586), + [anon_sym_LT_EQ2] = ACTIONS(2584), + [anon_sym_GT_EQ2] = ACTIONS(2584), + [anon_sym_EQ_TILDE2] = ACTIONS(2584), + [anon_sym_BANG_TILDE2] = ACTIONS(2584), + [anon_sym_like2] = ACTIONS(2584), + [anon_sym_not_DASHlike2] = ACTIONS(2584), + [anon_sym_LPAREN2] = ACTIONS(2620), + [anon_sym_STAR_STAR2] = ACTIONS(2584), + [anon_sym_PLUS_PLUS2] = ACTIONS(2584), + [anon_sym_SLASH2] = ACTIONS(2586), + [anon_sym_mod2] = ACTIONS(2584), + [anon_sym_SLASH_SLASH2] = ACTIONS(2584), + [anon_sym_PLUS2] = ACTIONS(2586), + [anon_sym_bit_DASHshl2] = ACTIONS(2584), + [anon_sym_bit_DASHshr2] = ACTIONS(2584), + [anon_sym_bit_DASHand2] = ACTIONS(2584), + [anon_sym_bit_DASHxor2] = ACTIONS(2584), + [anon_sym_bit_DASHor2] = ACTIONS(2584), + [anon_sym_err_GT] = ACTIONS(2586), + [anon_sym_out_GT] = ACTIONS(2586), + [anon_sym_e_GT] = ACTIONS(2586), + [anon_sym_o_GT] = ACTIONS(2586), + [anon_sym_err_PLUSout_GT] = ACTIONS(2586), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2586), + [anon_sym_o_PLUSe_GT] = ACTIONS(2586), + [anon_sym_e_PLUSo_GT] = ACTIONS(2586), + [anon_sym_err_GT_GT] = ACTIONS(2584), + [anon_sym_out_GT_GT] = ACTIONS(2584), + [anon_sym_e_GT_GT] = ACTIONS(2584), + [anon_sym_o_GT_GT] = ACTIONS(2584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2584), + [sym__unquoted_pattern] = ACTIONS(1645), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(988)] = { - [sym_expr_unary] = STATE(2786), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2497), - [sym_val_range] = STATE(2786), - [sym__val_range] = STATE(4610), - [sym__value] = STATE(2786), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2567), - [sym__unquoted_with_expr] = STATE(2797), - [sym__unquoted_anonymous_prefix] = STATE(4610), + [aux_sym__repeat_newline] = STATE(1041), [sym_comment] = STATE(988), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(989)] = { - [aux_sym__repeat_newline] = STATE(1037), [sym_comment] = STATE(989), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(2604), + [anon_sym_in] = ACTIONS(2604), + [sym__newline] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_err_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_GT_PIPE] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2604), + [anon_sym_GT2] = ACTIONS(2606), + [anon_sym_DASH2] = ACTIONS(2604), + [anon_sym_STAR2] = ACTIONS(2606), + [anon_sym_and2] = ACTIONS(2604), + [anon_sym_xor2] = ACTIONS(2604), + [anon_sym_or2] = ACTIONS(2604), + [anon_sym_not_DASHin2] = ACTIONS(2604), + [anon_sym_has2] = ACTIONS(2604), + [anon_sym_not_DASHhas2] = ACTIONS(2604), + [anon_sym_starts_DASHwith2] = ACTIONS(2604), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2604), + [anon_sym_ends_DASHwith2] = ACTIONS(2604), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2604), + [anon_sym_EQ_EQ2] = ACTIONS(2604), + [anon_sym_BANG_EQ2] = ACTIONS(2604), + [anon_sym_LT2] = ACTIONS(2606), + [anon_sym_LT_EQ2] = ACTIONS(2604), + [anon_sym_GT_EQ2] = ACTIONS(2604), + [anon_sym_EQ_TILDE2] = ACTIONS(2604), + [anon_sym_BANG_TILDE2] = ACTIONS(2604), + [anon_sym_like2] = ACTIONS(2604), + [anon_sym_not_DASHlike2] = ACTIONS(2604), + [anon_sym_LPAREN2] = ACTIONS(2622), + [anon_sym_STAR_STAR2] = ACTIONS(2604), + [anon_sym_PLUS_PLUS2] = ACTIONS(2604), + [anon_sym_SLASH2] = ACTIONS(2606), + [anon_sym_mod2] = ACTIONS(2604), + [anon_sym_SLASH_SLASH2] = ACTIONS(2604), + [anon_sym_PLUS2] = ACTIONS(2606), + [anon_sym_bit_DASHshl2] = ACTIONS(2604), + [anon_sym_bit_DASHshr2] = ACTIONS(2604), + [anon_sym_bit_DASHand2] = ACTIONS(2604), + [anon_sym_bit_DASHxor2] = ACTIONS(2604), + [anon_sym_bit_DASHor2] = ACTIONS(2604), + [anon_sym_err_GT] = ACTIONS(2606), + [anon_sym_out_GT] = ACTIONS(2606), + [anon_sym_e_GT] = ACTIONS(2606), + [anon_sym_o_GT] = ACTIONS(2606), + [anon_sym_err_PLUSout_GT] = ACTIONS(2606), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2606), + [anon_sym_o_PLUSe_GT] = ACTIONS(2606), + [anon_sym_e_PLUSo_GT] = ACTIONS(2606), + [anon_sym_err_GT_GT] = ACTIONS(2604), + [anon_sym_out_GT_GT] = ACTIONS(2604), + [anon_sym_e_GT_GT] = ACTIONS(2604), + [anon_sym_o_GT_GT] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2604), + [sym__unquoted_pattern] = ACTIONS(2624), [anon_sym_POUND] = ACTIONS(3), }, [STATE(990)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(990), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(991)] = { - [aux_sym__repeat_newline] = STATE(1038), + [aux_sym__repeat_newline] = STATE(1042), [sym_comment] = STATE(991), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), [anon_sym_POUND] = ACTIONS(3), }, [STATE(992)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(992), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(993)] = { - [aux_sym__repeat_newline] = STATE(1039), + [aux_sym__repeat_newline] = STATE(1043), [sym_comment] = STATE(993), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), [anon_sym_POUND] = ACTIONS(3), }, [STATE(994)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(994), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(995)] = { - [aux_sym__repeat_newline] = STATE(1040), + [aux_sym__repeat_newline] = STATE(1044), [sym_comment] = STATE(995), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), [anon_sym_POUND] = ACTIONS(3), }, [STATE(996)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(996), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(997)] = { - [aux_sym__repeat_newline] = STATE(1041), + [aux_sym__repeat_newline] = STATE(1045), [sym_comment] = STATE(997), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), [anon_sym_POUND] = ACTIONS(3), }, [STATE(998)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(998), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(999)] = { + [aux_sym__repeat_newline] = STATE(1046), + [sym_comment] = STATE(999), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2666), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_STAR2] = ACTIONS(2668), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2666), + [anon_sym_PLUS_PLUS2] = ACTIONS(2666), + [anon_sym_SLASH2] = ACTIONS(2668), + [anon_sym_mod2] = ACTIONS(2666), + [anon_sym_SLASH_SLASH2] = ACTIONS(2666), + [anon_sym_PLUS2] = ACTIONS(2668), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1000)] = { + [aux_sym__repeat_newline] = STATE(1047), + [sym_comment] = STATE(1000), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1001)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1001), [anon_sym_in] = ACTIONS(2670), [sym__newline] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2670), @@ -121351,5109 +121583,4701 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(999)] = { - [aux_sym__repeat_newline] = STATE(1042), - [sym_comment] = STATE(999), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2704), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2702), - [anon_sym_PLUS_PLUS2] = ACTIONS(2702), - [anon_sym_SLASH2] = ACTIONS(2704), - [anon_sym_mod2] = ACTIONS(2702), - [anon_sym_SLASH_SLASH2] = ACTIONS(2702), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1000)] = { - [aux_sym__repeat_newline] = STATE(1130), - [sym_comment] = STATE(1000), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1001)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1001), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2708), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2706), - [anon_sym_PLUS_PLUS2] = ACTIONS(2706), - [anon_sym_SLASH2] = ACTIONS(2708), - [anon_sym_mod2] = ACTIONS(2706), - [anon_sym_SLASH_SLASH2] = ACTIONS(2706), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1002)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1002), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [STATE(1002)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1002), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1003)] = { - [aux_sym__repeat_newline] = STATE(1044), + [aux_sym__repeat_newline] = STATE(1048), [sym_comment] = STATE(1003), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1004)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1004), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1005)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4361), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(1049), [sym_comment] = STATE(1005), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1006)] = { - [aux_sym__repeat_newline] = STATE(1045), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1006), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1007)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1050), [sym_comment] = STATE(1007), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1008)] = { - [aux_sym__repeat_newline] = STATE(1052), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1008), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1009)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1009), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2066), + [anon_sym_alias] = ACTIONS(2064), + [anon_sym_let] = ACTIONS(2064), + [anon_sym_mut] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [aux_sym_cmd_identifier_token1] = ACTIONS(2066), + [anon_sym_def] = ACTIONS(2064), + [anon_sym_use] = ACTIONS(2064), + [anon_sym_export_DASHenv] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2064), + [anon_sym_module] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2064), + [anon_sym_loop] = ACTIONS(2064), + [anon_sym_while] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_else] = ACTIONS(2064), + [anon_sym_try] = ACTIONS(2064), + [anon_sym_catch] = ACTIONS(2064), + [anon_sym_match] = ACTIONS(2064), + [anon_sym_in] = ACTIONS(2066), + [anon_sym_true] = ACTIONS(2064), + [anon_sym_false] = ACTIONS(2064), + [anon_sym_null] = ACTIONS(2064), + [aux_sym_cmd_identifier_token3] = ACTIONS(2064), + [aux_sym_cmd_identifier_token4] = ACTIONS(2064), + [aux_sym_cmd_identifier_token5] = ACTIONS(2064), + [sym__newline] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_err_GT_PIPE] = ACTIONS(2064), + [anon_sym_out_GT_PIPE] = ACTIONS(2064), + [anon_sym_e_GT_PIPE] = ACTIONS(2064), + [anon_sym_o_GT_PIPE] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2064), + [anon_sym_LBRACK] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_DOLLAR] = ACTIONS(2066), + [anon_sym_DASH2] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_DOT_DOT] = ACTIONS(2066), + [anon_sym_where] = ACTIONS(2064), + [aux_sym_expr_unary_token1] = ACTIONS(2064), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2064), + [anon_sym_DOT_DOT_LT] = ACTIONS(2064), + [aux_sym__val_number_decimal_token1] = ACTIONS(2066), + [aux_sym__val_number_decimal_token2] = ACTIONS(2064), + [aux_sym__val_number_decimal_token3] = ACTIONS(2064), + [aux_sym__val_number_decimal_token4] = ACTIONS(2064), + [aux_sym__val_number_token1] = ACTIONS(2064), + [aux_sym__val_number_token2] = ACTIONS(2064), + [aux_sym__val_number_token3] = ACTIONS(2064), + [anon_sym_0b] = ACTIONS(2066), + [anon_sym_0o] = ACTIONS(2066), + [anon_sym_0x] = ACTIONS(2066), + [sym_val_date] = ACTIONS(2064), + [anon_sym_DQUOTE] = ACTIONS(2064), + [anon_sym_SQUOTE] = ACTIONS(2064), + [anon_sym_BQUOTE] = ACTIONS(2064), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2064), + [anon_sym_CARET] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2064), }, [STATE(1010)] = { - [aux_sym__repeat_newline] = STATE(1053), + [aux_sym__repeat_newline] = STATE(1051), [sym_comment] = STATE(1010), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1011)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1011), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1012)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1053), [sym_comment] = STATE(1012), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1013)] = { - [aux_sym__repeat_newline] = STATE(1055), [sym_comment] = STATE(1013), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(960), + [anon_sym_xor2] = ACTIONS(960), + [anon_sym_or2] = ACTIONS(960), + [anon_sym_not_DASHin2] = ACTIONS(960), + [anon_sym_has2] = ACTIONS(960), + [anon_sym_not_DASHhas2] = ACTIONS(960), + [anon_sym_starts_DASHwith2] = ACTIONS(960), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(960), + [anon_sym_ends_DASHwith2] = ACTIONS(960), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(960), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(960), + [anon_sym_like2] = ACTIONS(960), + [anon_sym_not_DASHlike2] = ACTIONS(960), + [anon_sym_STAR_STAR2] = ACTIONS(960), + [anon_sym_PLUS_PLUS2] = ACTIONS(960), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(960), + [anon_sym_SLASH_SLASH2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(960), + [anon_sym_bit_DASHshr2] = ACTIONS(960), + [anon_sym_bit_DASHand2] = ACTIONS(960), + [anon_sym_bit_DASHxor2] = ACTIONS(960), + [anon_sym_bit_DASHor2] = ACTIONS(960), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [sym__unquoted_pattern] = ACTIONS(1744), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1014)] = { - [aux_sym__repeat_newline] = STATE(1057), + [aux_sym__repeat_newline] = STATE(1056), [sym_comment] = STATE(1014), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1015)] = { - [aux_sym__repeat_newline] = STATE(1060), [sym_comment] = STATE(1015), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2674), + [anon_sym_alias] = ACTIONS(2676), + [anon_sym_let] = ACTIONS(2676), + [anon_sym_mut] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2676), + [aux_sym_cmd_identifier_token1] = ACTIONS(2674), + [anon_sym_def] = ACTIONS(2676), + [anon_sym_use] = ACTIONS(2676), + [anon_sym_export_DASHenv] = ACTIONS(2676), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym_module] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_loop] = ACTIONS(2676), + [anon_sym_while] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_else] = ACTIONS(2676), + [anon_sym_try] = ACTIONS(2676), + [anon_sym_catch] = ACTIONS(2676), + [anon_sym_match] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2674), + [anon_sym_true] = ACTIONS(2676), + [anon_sym_false] = ACTIONS(2676), + [anon_sym_null] = ACTIONS(2676), + [aux_sym_cmd_identifier_token3] = ACTIONS(2676), + [aux_sym_cmd_identifier_token4] = ACTIONS(2676), + [aux_sym_cmd_identifier_token5] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2676), + [anon_sym_DOLLAR] = ACTIONS(2674), + [anon_sym_DASH2] = ACTIONS(2674), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_DOT_DOT] = ACTIONS(2674), + [anon_sym_where] = ACTIONS(2676), + [aux_sym_expr_unary_token1] = ACTIONS(2676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2676), + [anon_sym_DOT_DOT_LT] = ACTIONS(2676), + [aux_sym__val_number_decimal_token1] = ACTIONS(2674), + [aux_sym__val_number_decimal_token2] = ACTIONS(2676), + [aux_sym__val_number_decimal_token3] = ACTIONS(2676), + [aux_sym__val_number_decimal_token4] = ACTIONS(2676), + [aux_sym__val_number_token1] = ACTIONS(2676), + [aux_sym__val_number_token2] = ACTIONS(2676), + [aux_sym__val_number_token3] = ACTIONS(2676), + [anon_sym_0b] = ACTIONS(2674), + [anon_sym_0o] = ACTIONS(2674), + [anon_sym_0x] = ACTIONS(2674), + [sym_val_date] = ACTIONS(2676), + [anon_sym_DQUOTE] = ACTIONS(2676), + [anon_sym_SQUOTE] = ACTIONS(2676), + [anon_sym_BQUOTE] = ACTIONS(2676), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2676), + [anon_sym_CARET] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2676), }, [STATE(1016)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1058), [sym_comment] = STATE(1016), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1017)] = { - [aux_sym__repeat_newline] = STATE(1062), [sym_comment] = STATE(1017), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_in] = ACTIONS(1726), + [sym__newline] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_err_GT_PIPE] = ACTIONS(1726), + [anon_sym_out_GT_PIPE] = ACTIONS(1726), + [anon_sym_e_GT_PIPE] = ACTIONS(1726), + [anon_sym_o_GT_PIPE] = ACTIONS(1726), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), + [anon_sym_GT2] = ACTIONS(1728), + [anon_sym_DASH2] = ACTIONS(1726), + [anon_sym_STAR2] = ACTIONS(1728), + [anon_sym_and2] = ACTIONS(1726), + [anon_sym_xor2] = ACTIONS(1726), + [anon_sym_or2] = ACTIONS(1726), + [anon_sym_not_DASHin2] = ACTIONS(1726), + [anon_sym_has2] = ACTIONS(1726), + [anon_sym_not_DASHhas2] = ACTIONS(1726), + [anon_sym_starts_DASHwith2] = ACTIONS(1726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), + [anon_sym_ends_DASHwith2] = ACTIONS(1726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), + [anon_sym_EQ_EQ2] = ACTIONS(1726), + [anon_sym_BANG_EQ2] = ACTIONS(1726), + [anon_sym_LT2] = ACTIONS(1728), + [anon_sym_LT_EQ2] = ACTIONS(1726), + [anon_sym_GT_EQ2] = ACTIONS(1726), + [anon_sym_EQ_TILDE2] = ACTIONS(1726), + [anon_sym_BANG_TILDE2] = ACTIONS(1726), + [anon_sym_like2] = ACTIONS(1726), + [anon_sym_not_DASHlike2] = ACTIONS(1726), + [anon_sym_LPAREN2] = ACTIONS(1726), + [anon_sym_STAR_STAR2] = ACTIONS(1726), + [anon_sym_PLUS_PLUS2] = ACTIONS(1726), + [anon_sym_SLASH2] = ACTIONS(1728), + [anon_sym_mod2] = ACTIONS(1726), + [anon_sym_SLASH_SLASH2] = ACTIONS(1726), + [anon_sym_PLUS2] = ACTIONS(1728), + [anon_sym_bit_DASHshl2] = ACTIONS(1726), + [anon_sym_bit_DASHshr2] = ACTIONS(1726), + [anon_sym_bit_DASHand2] = ACTIONS(1726), + [anon_sym_bit_DASHxor2] = ACTIONS(1726), + [anon_sym_bit_DASHor2] = ACTIONS(1726), + [anon_sym_err_GT] = ACTIONS(1728), + [anon_sym_out_GT] = ACTIONS(1728), + [anon_sym_e_GT] = ACTIONS(1728), + [anon_sym_o_GT] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT] = ACTIONS(1728), + [anon_sym_err_GT_GT] = ACTIONS(1726), + [anon_sym_out_GT_GT] = ACTIONS(1726), + [anon_sym_e_GT_GT] = ACTIONS(1726), + [anon_sym_o_GT_GT] = ACTIONS(1726), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), + [sym__unquoted_pattern] = ACTIONS(1728), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1018)] = { - [aux_sym__repeat_newline] = STATE(1065), + [aux_sym__repeat_newline] = STATE(1060), [sym_comment] = STATE(1018), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1019)] = { - [aux_sym__repeat_newline] = STATE(1067), [sym_comment] = STATE(1019), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [ts_builtin_sym_end] = ACTIONS(1810), + [anon_sym_in] = ACTIONS(1810), + [sym__newline] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_err_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_GT_PIPE] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1810), + [anon_sym_GT2] = ACTIONS(1812), + [anon_sym_DASH2] = ACTIONS(1810), + [anon_sym_STAR2] = ACTIONS(1812), + [anon_sym_and2] = ACTIONS(1810), + [anon_sym_xor2] = ACTIONS(1810), + [anon_sym_or2] = ACTIONS(1810), + [anon_sym_not_DASHin2] = ACTIONS(1810), + [anon_sym_has2] = ACTIONS(1810), + [anon_sym_not_DASHhas2] = ACTIONS(1810), + [anon_sym_starts_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1810), + [anon_sym_ends_DASHwith2] = ACTIONS(1810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1810), + [anon_sym_EQ_EQ2] = ACTIONS(1810), + [anon_sym_BANG_EQ2] = ACTIONS(1810), + [anon_sym_LT2] = ACTIONS(1812), + [anon_sym_LT_EQ2] = ACTIONS(1810), + [anon_sym_GT_EQ2] = ACTIONS(1810), + [anon_sym_EQ_TILDE2] = ACTIONS(1810), + [anon_sym_BANG_TILDE2] = ACTIONS(1810), + [anon_sym_like2] = ACTIONS(1810), + [anon_sym_not_DASHlike2] = ACTIONS(1810), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_STAR_STAR2] = ACTIONS(1810), + [anon_sym_PLUS_PLUS2] = ACTIONS(1810), + [anon_sym_SLASH2] = ACTIONS(1812), + [anon_sym_mod2] = ACTIONS(1810), + [anon_sym_SLASH_SLASH2] = ACTIONS(1810), + [anon_sym_PLUS2] = ACTIONS(1812), + [anon_sym_bit_DASHshl2] = ACTIONS(1810), + [anon_sym_bit_DASHshr2] = ACTIONS(1810), + [anon_sym_bit_DASHand2] = ACTIONS(1810), + [anon_sym_bit_DASHxor2] = ACTIONS(1810), + [anon_sym_bit_DASHor2] = ACTIONS(1810), + [anon_sym_err_GT] = ACTIONS(1812), + [anon_sym_out_GT] = ACTIONS(1812), + [anon_sym_e_GT] = ACTIONS(1812), + [anon_sym_o_GT] = ACTIONS(1812), + [anon_sym_err_PLUSout_GT] = ACTIONS(1812), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1812), + [anon_sym_o_PLUSe_GT] = ACTIONS(1812), + [anon_sym_e_PLUSo_GT] = ACTIONS(1812), + [anon_sym_err_GT_GT] = ACTIONS(1810), + [anon_sym_out_GT_GT] = ACTIONS(1810), + [anon_sym_e_GT_GT] = ACTIONS(1810), + [anon_sym_o_GT_GT] = ACTIONS(1810), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1810), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1810), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1810), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1810), + [sym__unquoted_pattern] = ACTIONS(1812), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1020)] = { - [aux_sym__repeat_newline] = STATE(1070), + [aux_sym__repeat_newline] = STATE(1063), [sym_comment] = STATE(1020), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1021)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4515), - [sym__val_range] = STATE(4853), - [sym_val_nothing] = STATE(4517), - [sym_val_bool] = STATE(4134), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4517), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4517), - [sym_val_filesize] = STATE(4517), - [sym_val_binary] = STATE(4517), - [sym_val_string] = STATE(4517), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(4951), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4517), - [sym__unquoted_in_list] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(4853), - [sym_comment] = STATE(1021), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3958), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(1022)] = { - [aux_sym__repeat_newline] = STATE(1073), - [sym_comment] = STATE(1022), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1023)] = { - [aux_sym__repeat_newline] = STATE(1077), - [sym_comment] = STATE(1023), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2712), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2714), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2712), - [anon_sym_PLUS_PLUS2] = ACTIONS(2712), - [anon_sym_SLASH2] = ACTIONS(2714), - [anon_sym_mod2] = ACTIONS(2712), - [anon_sym_SLASH_SLASH2] = ACTIONS(2712), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1024)] = { - [aux_sym__repeat_newline] = STATE(1078), - [sym_comment] = STATE(1024), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1025)] = { - [sym_comment] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(2501), - [anon_sym_in] = ACTIONS(2501), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2501), - [anon_sym_xor2] = ACTIONS(2501), - [anon_sym_or2] = ACTIONS(2501), - [anon_sym_not_DASHin2] = ACTIONS(2501), - [anon_sym_has2] = ACTIONS(2501), - [anon_sym_not_DASHhas2] = ACTIONS(2501), - [anon_sym_starts_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2501), - [anon_sym_ends_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2501), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2501), - [anon_sym_like2] = ACTIONS(2501), - [anon_sym_not_DASHlike2] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_STAR_STAR2] = ACTIONS(2501), - [anon_sym_PLUS_PLUS2] = ACTIONS(2501), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2501), - [anon_sym_SLASH_SLASH2] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2501), - [anon_sym_bit_DASHshr2] = ACTIONS(2501), - [anon_sym_bit_DASHand2] = ACTIONS(2501), - [anon_sym_bit_DASHxor2] = ACTIONS(2501), - [anon_sym_bit_DASHor2] = ACTIONS(2501), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [sym__unquoted_pattern] = ACTIONS(2503), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1026)] = { - [sym_comment] = STATE(1026), - [ts_builtin_sym_end] = ACTIONS(2635), - [anon_sym_in] = ACTIONS(2635), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2635), - [anon_sym_xor2] = ACTIONS(2635), - [anon_sym_or2] = ACTIONS(2635), - [anon_sym_not_DASHin2] = ACTIONS(2635), - [anon_sym_has2] = ACTIONS(2635), - [anon_sym_not_DASHhas2] = ACTIONS(2635), - [anon_sym_starts_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2635), - [anon_sym_ends_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2635), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2635), - [anon_sym_like2] = ACTIONS(2635), - [anon_sym_not_DASHlike2] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_STAR_STAR2] = ACTIONS(2635), - [anon_sym_PLUS_PLUS2] = ACTIONS(2635), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2635), - [anon_sym_SLASH_SLASH2] = ACTIONS(2635), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2635), - [anon_sym_bit_DASHshr2] = ACTIONS(2635), - [anon_sym_bit_DASHand2] = ACTIONS(2635), - [anon_sym_bit_DASHxor2] = ACTIONS(2635), - [anon_sym_bit_DASHor2] = ACTIONS(2635), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [sym__unquoted_pattern] = ACTIONS(2641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1027)] = { - [aux_sym__repeat_newline] = STATE(1080), - [sym_comment] = STATE(1027), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1028)] = { - [sym_comment] = STATE(1028), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(2595), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [sym__unquoted_pattern] = ACTIONS(2597), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1021)] = { + [sym_comment] = STATE(1021), + [ts_builtin_sym_end] = ACTIONS(1854), + [anon_sym_in] = 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_GT2] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_STAR2] = ACTIONS(1856), + [anon_sym_and2] = ACTIONS(1854), + [anon_sym_xor2] = ACTIONS(1854), + [anon_sym_or2] = ACTIONS(1854), + [anon_sym_not_DASHin2] = ACTIONS(1854), + [anon_sym_has2] = ACTIONS(1854), + [anon_sym_not_DASHhas2] = ACTIONS(1854), + [anon_sym_starts_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), + [anon_sym_ends_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), + [anon_sym_EQ_EQ2] = ACTIONS(1854), + [anon_sym_BANG_EQ2] = ACTIONS(1854), + [anon_sym_LT2] = ACTIONS(1856), + [anon_sym_LT_EQ2] = ACTIONS(1854), + [anon_sym_GT_EQ2] = ACTIONS(1854), + [anon_sym_EQ_TILDE2] = ACTIONS(1854), + [anon_sym_BANG_TILDE2] = ACTIONS(1854), + [anon_sym_like2] = ACTIONS(1854), + [anon_sym_not_DASHlike2] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_STAR_STAR2] = ACTIONS(1854), + [anon_sym_PLUS_PLUS2] = ACTIONS(1854), + [anon_sym_SLASH2] = ACTIONS(1856), + [anon_sym_mod2] = ACTIONS(1854), + [anon_sym_SLASH_SLASH2] = ACTIONS(1854), + [anon_sym_PLUS2] = ACTIONS(1856), + [anon_sym_bit_DASHshl2] = ACTIONS(1854), + [anon_sym_bit_DASHshr2] = ACTIONS(1854), + [anon_sym_bit_DASHand2] = ACTIONS(1854), + [anon_sym_bit_DASHxor2] = ACTIONS(1854), + [anon_sym_bit_DASHor2] = ACTIONS(1854), + [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(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), + [sym__unquoted_pattern] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1022)] = { + [sym_expr_unary] = STATE(2835), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_parenthesized] = STATE(2570), + [sym_val_range] = STATE(2835), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(2835), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(2596), + [sym_val_variable] = STATE(2561), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(2345), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(2607), + [sym__unquoted_with_expr] = STATE(2889), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(1022), + [anon_sym_true] = ACTIONS(2678), + [anon_sym_false] = ACTIONS(2678), + [anon_sym_null] = ACTIONS(2680), + [aux_sym_cmd_identifier_token3] = ACTIONS(2682), + [aux_sym_cmd_identifier_token4] = ACTIONS(2682), + [aux_sym_cmd_identifier_token5] = ACTIONS(2682), + [anon_sym_LBRACK] = ACTIONS(2684), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_DOLLAR] = ACTIONS(2688), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [aux_sym_expr_unary_token1] = ACTIONS(2694), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2696), + [anon_sym_DOT_DOT_LT] = ACTIONS(2696), + [aux_sym__val_number_decimal_token1] = ACTIONS(2698), + [aux_sym__val_number_decimal_token2] = ACTIONS(2700), + [aux_sym__val_number_decimal_token3] = ACTIONS(2702), + [aux_sym__val_number_decimal_token4] = ACTIONS(2702), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2704), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2290), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(1023)] = { + [aux_sym__repeat_newline] = STATE(1065), + [sym_comment] = STATE(1023), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1024)] = { + [sym_expr_unary] = STATE(2912), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_parenthesized] = STATE(2543), + [sym_val_range] = STATE(2912), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(2912), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(2596), + [sym_val_variable] = STATE(2561), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(2345), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(2595), + [sym__unquoted_with_expr] = STATE(2875), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(1024), + [anon_sym_true] = ACTIONS(2678), + [anon_sym_false] = ACTIONS(2678), + [anon_sym_null] = ACTIONS(2680), + [aux_sym_cmd_identifier_token3] = ACTIONS(2682), + [aux_sym_cmd_identifier_token4] = ACTIONS(2682), + [aux_sym_cmd_identifier_token5] = ACTIONS(2682), + [anon_sym_LBRACK] = ACTIONS(2684), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_DOLLAR] = ACTIONS(2688), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [aux_sym_expr_unary_token1] = ACTIONS(2694), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2696), + [anon_sym_DOT_DOT_LT] = ACTIONS(2696), + [aux_sym__val_number_decimal_token1] = ACTIONS(2698), + [aux_sym__val_number_decimal_token2] = ACTIONS(2700), + [aux_sym__val_number_decimal_token3] = ACTIONS(2702), + [aux_sym__val_number_decimal_token4] = ACTIONS(2702), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2704), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2290), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(1025)] = { + [sym_expr_unary] = STATE(2858), + [sym__expr_unary_minus] = STATE(1269), + [sym_expr_parenthesized] = STATE(2537), + [sym_val_range] = STATE(2858), + [sym__val_range] = STATE(4506), + [sym__value] = STATE(2858), + [sym_val_nothing] = STATE(1265), + [sym_val_bool] = STATE(2596), + [sym_val_variable] = STATE(2561), + [sym_val_cellpath] = STATE(1265), + [sym_val_number] = STATE(1265), + [sym__val_number_decimal] = STATE(2345), + [sym__val_number] = STATE(1321), + [sym_val_duration] = STATE(1265), + [sym_val_filesize] = STATE(1265), + [sym_val_binary] = STATE(1265), + [sym_val_string] = STATE(1265), + [sym__raw_str] = STATE(493), + [sym__str_double_quotes] = STATE(493), + [sym__str_single_quotes] = STATE(493), + [sym__str_back_ticks] = STATE(493), + [sym_val_interpolated] = STATE(1265), + [sym__inter_single_quotes] = STATE(1322), + [sym__inter_double_quotes] = STATE(1326), + [sym_val_list] = STATE(1265), + [sym_val_record] = STATE(1265), + [sym_val_table] = STATE(1265), + [sym_val_closure] = STATE(1265), + [sym_unquoted] = STATE(2594), + [sym__unquoted_with_expr] = STATE(2908), + [sym__unquoted_anonymous_prefix] = STATE(4506), + [sym_comment] = STATE(1025), + [anon_sym_true] = ACTIONS(2678), + [anon_sym_false] = ACTIONS(2678), + [anon_sym_null] = ACTIONS(2680), + [aux_sym_cmd_identifier_token3] = ACTIONS(2682), + [aux_sym_cmd_identifier_token4] = ACTIONS(2682), + [aux_sym_cmd_identifier_token5] = ACTIONS(2682), + [anon_sym_LBRACK] = ACTIONS(2684), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_DOLLAR] = ACTIONS(2688), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [aux_sym_expr_unary_token1] = ACTIONS(2694), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2696), + [anon_sym_DOT_DOT_LT] = ACTIONS(2696), + [aux_sym__val_number_decimal_token1] = ACTIONS(2698), + [aux_sym__val_number_decimal_token2] = ACTIONS(2700), + [aux_sym__val_number_decimal_token3] = ACTIONS(2702), + [aux_sym__val_number_decimal_token4] = ACTIONS(2702), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2704), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2290), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(1026)] = { + [aux_sym__repeat_newline] = STATE(1067), + [sym_comment] = STATE(1026), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1027)] = { + [aux_sym__repeat_newline] = STATE(1070), + [sym_comment] = STATE(1027), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1028)] = { + [aux_sym__repeat_newline] = STATE(1073), + [sym_comment] = STATE(1028), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1029)] = { - [aux_sym__repeat_newline] = STATE(1082), + [aux_sym__repeat_newline] = STATE(1074), [sym_comment] = STATE(1029), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1030)] = { - [aux_sym__repeat_newline] = STATE(980), + [aux_sym__repeat_newline] = STATE(1076), [sym_comment] = STATE(1030), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1031)] = { - [aux_sym__repeat_newline] = STATE(1085), + [aux_sym__repeat_newline] = STATE(1079), [sym_comment] = STATE(1031), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1032)] = { - [aux_sym__repeat_newline] = STATE(1088), + [aux_sym__repeat_newline] = STATE(1081), [sym_comment] = STATE(1032), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1033)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), [sym_comment] = STATE(1033), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2446), + [anon_sym_alias] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_mut] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [aux_sym_cmd_identifier_token1] = ACTIONS(2446), + [anon_sym_def] = ACTIONS(2448), + [anon_sym_use] = ACTIONS(2448), + [anon_sym_export_DASHenv] = ACTIONS(2448), + [anon_sym_extern] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_loop] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_catch] = ACTIONS(2448), + [anon_sym_match] = ACTIONS(2448), + [anon_sym_in] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2448), + [anon_sym_false] = ACTIONS(2448), + [anon_sym_null] = ACTIONS(2448), + [aux_sym_cmd_identifier_token3] = ACTIONS(2448), + [aux_sym_cmd_identifier_token4] = ACTIONS(2448), + [aux_sym_cmd_identifier_token5] = ACTIONS(2448), + [sym__newline] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [anon_sym_err_GT_PIPE] = ACTIONS(2448), + [anon_sym_out_GT_PIPE] = ACTIONS(2448), + [anon_sym_e_GT_PIPE] = ACTIONS(2448), + [anon_sym_o_GT_PIPE] = ACTIONS(2448), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2448), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2448), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2448), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_DOLLAR] = ACTIONS(2446), + [anon_sym_DASH2] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_DOT_DOT] = ACTIONS(2446), + [anon_sym_where] = ACTIONS(2448), + [aux_sym_expr_unary_token1] = ACTIONS(2448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2448), + [anon_sym_DOT_DOT_LT] = ACTIONS(2448), + [aux_sym__val_number_decimal_token1] = ACTIONS(2446), + [aux_sym__val_number_decimal_token2] = ACTIONS(2448), + [aux_sym__val_number_decimal_token3] = ACTIONS(2448), + [aux_sym__val_number_decimal_token4] = ACTIONS(2448), + [aux_sym__val_number_token1] = ACTIONS(2448), + [aux_sym__val_number_token2] = ACTIONS(2448), + [aux_sym__val_number_token3] = ACTIONS(2448), + [anon_sym_0b] = ACTIONS(2446), + [anon_sym_0o] = ACTIONS(2446), + [anon_sym_0x] = ACTIONS(2446), + [sym_val_date] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_BQUOTE] = ACTIONS(2448), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2448), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2448), + [anon_sym_CARET] = ACTIONS(2448), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2448), }, [STATE(1034)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1083), [sym_comment] = STATE(1034), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2218), + [sym__newline] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym_PIPE] = ACTIONS(2218), + [anon_sym_err_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_GT_PIPE] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_GT2] = ACTIONS(2220), + [anon_sym_DASH2] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_STAR2] = ACTIONS(2220), + [anon_sym_and2] = ACTIONS(2218), + [anon_sym_xor2] = ACTIONS(2218), + [anon_sym_or2] = ACTIONS(2218), + [anon_sym_not_DASHin2] = ACTIONS(2218), + [anon_sym_has2] = ACTIONS(2218), + [anon_sym_not_DASHhas2] = ACTIONS(2218), + [anon_sym_starts_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), + [anon_sym_ends_DASHwith2] = ACTIONS(2218), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), + [anon_sym_EQ_EQ2] = ACTIONS(2218), + [anon_sym_BANG_EQ2] = ACTIONS(2218), + [anon_sym_LT2] = ACTIONS(2220), + [anon_sym_LT_EQ2] = ACTIONS(2218), + [anon_sym_GT_EQ2] = ACTIONS(2218), + [anon_sym_EQ_TILDE2] = ACTIONS(2218), + [anon_sym_BANG_TILDE2] = ACTIONS(2218), + [anon_sym_like2] = ACTIONS(2218), + [anon_sym_not_DASHlike2] = ACTIONS(2218), + [anon_sym_STAR_STAR2] = ACTIONS(2218), + [anon_sym_PLUS_PLUS2] = ACTIONS(2218), + [anon_sym_SLASH2] = ACTIONS(2220), + [anon_sym_mod2] = ACTIONS(2218), + [anon_sym_SLASH_SLASH2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2220), + [anon_sym_bit_DASHshl2] = ACTIONS(2218), + [anon_sym_bit_DASHshr2] = ACTIONS(2218), + [anon_sym_bit_DASHand2] = ACTIONS(2218), + [anon_sym_bit_DASHxor2] = ACTIONS(2218), + [anon_sym_bit_DASHor2] = ACTIONS(2218), + [anon_sym_err_GT] = ACTIONS(2220), + [anon_sym_out_GT] = ACTIONS(2220), + [anon_sym_e_GT] = ACTIONS(2220), + [anon_sym_o_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT] = ACTIONS(2220), + [anon_sym_err_GT_GT] = ACTIONS(2218), + [anon_sym_out_GT_GT] = ACTIONS(2218), + [anon_sym_e_GT_GT] = ACTIONS(2218), + [anon_sym_o_GT_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1035)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1035), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2710), + [anon_sym_alias] = ACTIONS(2712), + [anon_sym_let] = ACTIONS(2712), + [anon_sym_mut] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [aux_sym_cmd_identifier_token1] = ACTIONS(2710), + [anon_sym_def] = ACTIONS(2712), + [anon_sym_use] = ACTIONS(2712), + [anon_sym_export_DASHenv] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym_module] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_loop] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_catch] = ACTIONS(2712), + [anon_sym_match] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2710), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_null] = ACTIONS(2712), + [aux_sym_cmd_identifier_token3] = ACTIONS(2712), + [aux_sym_cmd_identifier_token4] = ACTIONS(2712), + [aux_sym_cmd_identifier_token5] = ACTIONS(2712), + [sym__newline] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_err_GT_PIPE] = ACTIONS(2064), + [anon_sym_out_GT_PIPE] = ACTIONS(2064), + [anon_sym_e_GT_PIPE] = ACTIONS(2064), + [anon_sym_o_GT_PIPE] = ACTIONS(2064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2064), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2712), + [anon_sym_DOLLAR] = ACTIONS(2710), + [anon_sym_DASH2] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2710), + [anon_sym_where] = ACTIONS(2712), + [aux_sym_expr_unary_token1] = ACTIONS(2712), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2712), + [anon_sym_DOT_DOT_LT] = ACTIONS(2712), + [aux_sym__val_number_decimal_token1] = ACTIONS(2710), + [aux_sym__val_number_decimal_token2] = ACTIONS(2712), + [aux_sym__val_number_decimal_token3] = ACTIONS(2712), + [aux_sym__val_number_decimal_token4] = ACTIONS(2712), + [aux_sym__val_number_token1] = ACTIONS(2712), + [aux_sym__val_number_token2] = ACTIONS(2712), + [aux_sym__val_number_token3] = ACTIONS(2712), + [anon_sym_0b] = ACTIONS(2710), + [anon_sym_0o] = ACTIONS(2710), + [anon_sym_0x] = ACTIONS(2710), + [sym_val_date] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [anon_sym_SQUOTE] = ACTIONS(2712), + [anon_sym_BQUOTE] = ACTIONS(2712), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2712), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2712), + [anon_sym_CARET] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2712), }, [STATE(1036)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(4767), [sym_comment] = STATE(1036), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1037)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(4767), [sym_comment] = STATE(1037), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1038)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1038), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1039)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1039), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1040)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1040), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1041)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1041), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1042)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1042), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2722), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2720), - [anon_sym_PLUS_PLUS2] = ACTIONS(2720), - [anon_sym_SLASH2] = ACTIONS(2722), - [anon_sym_mod2] = ACTIONS(2720), - [anon_sym_SLASH_SLASH2] = ACTIONS(2720), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1043)] = { + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1043), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1044)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1044), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1045)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1045), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1046)] = { - [aux_sym__repeat_newline] = STATE(983), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1046), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2718), + [sym__newline] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2720), + [anon_sym_DASH2] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_STAR2] = ACTIONS(2720), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2718), + [anon_sym_has2] = ACTIONS(2718), + [anon_sym_not_DASHhas2] = ACTIONS(2718), + [anon_sym_starts_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), + [anon_sym_ends_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), + [anon_sym_EQ_EQ2] = ACTIONS(2718), + [anon_sym_BANG_EQ2] = ACTIONS(2718), + [anon_sym_LT2] = ACTIONS(2720), + [anon_sym_LT_EQ2] = ACTIONS(2718), + [anon_sym_GT_EQ2] = ACTIONS(2718), + [anon_sym_EQ_TILDE2] = ACTIONS(2718), + [anon_sym_BANG_TILDE2] = ACTIONS(2718), + [anon_sym_like2] = ACTIONS(2718), + [anon_sym_not_DASHlike2] = ACTIONS(2718), + [anon_sym_STAR_STAR2] = ACTIONS(2718), + [anon_sym_PLUS_PLUS2] = ACTIONS(2718), + [anon_sym_SLASH2] = ACTIONS(2720), + [anon_sym_mod2] = ACTIONS(2718), + [anon_sym_SLASH_SLASH2] = ACTIONS(2718), + [anon_sym_PLUS2] = ACTIONS(2720), + [anon_sym_bit_DASHshl2] = ACTIONS(2718), + [anon_sym_bit_DASHshr2] = ACTIONS(2718), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1047)] = { + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1048)] = { - [aux_sym__repeat_newline] = STATE(986), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1048), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1049)] = { + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_like2] = ACTIONS(994), - [anon_sym_not_DASHlike2] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [sym__unquoted_pattern] = ACTIONS(2585), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1050)] = { + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1018), - [sym__newline] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_err_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_GT_PIPE] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1018), - [anon_sym_xor2] = ACTIONS(1018), - [anon_sym_or2] = ACTIONS(1018), - [anon_sym_not_DASHin2] = ACTIONS(1018), - [anon_sym_has2] = ACTIONS(1018), - [anon_sym_not_DASHhas2] = ACTIONS(1018), - [anon_sym_starts_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), - [anon_sym_ends_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), - [anon_sym_EQ_EQ2] = ACTIONS(1018), - [anon_sym_BANG_EQ2] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1018), - [anon_sym_GT_EQ2] = ACTIONS(1018), - [anon_sym_EQ_TILDE2] = ACTIONS(1018), - [anon_sym_BANG_TILDE2] = ACTIONS(1018), - [anon_sym_like2] = ACTIONS(1018), - [anon_sym_not_DASHlike2] = ACTIONS(1018), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(1018), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1018), - [anon_sym_SLASH_SLASH2] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1018), - [anon_sym_bit_DASHshr2] = ACTIONS(1018), - [anon_sym_bit_DASHand2] = ACTIONS(1018), - [anon_sym_bit_DASHxor2] = ACTIONS(1018), - [anon_sym_bit_DASHor2] = ACTIONS(1018), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1018), - [anon_sym_out_GT_GT] = ACTIONS(1018), - [anon_sym_e_GT_GT] = ACTIONS(1018), - [anon_sym_o_GT_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), - [sym__unquoted_pattern] = ACTIONS(2585), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1051)] = { - [aux_sym__repeat_newline] = STATE(990), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1051), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2714), + [sym__newline] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_err_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_GT_PIPE] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2714), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_GT2] = ACTIONS(2716), + [anon_sym_DASH2] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_STAR2] = ACTIONS(2716), + [anon_sym_and2] = ACTIONS(2714), + [anon_sym_xor2] = ACTIONS(2714), + [anon_sym_or2] = ACTIONS(2714), + [anon_sym_not_DASHin2] = ACTIONS(2714), + [anon_sym_has2] = ACTIONS(2714), + [anon_sym_not_DASHhas2] = ACTIONS(2714), + [anon_sym_starts_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2714), + [anon_sym_ends_DASHwith2] = ACTIONS(2714), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2714), + [anon_sym_EQ_EQ2] = ACTIONS(2714), + [anon_sym_BANG_EQ2] = ACTIONS(2714), + [anon_sym_LT2] = ACTIONS(2716), + [anon_sym_LT_EQ2] = ACTIONS(2714), + [anon_sym_GT_EQ2] = ACTIONS(2714), + [anon_sym_EQ_TILDE2] = ACTIONS(2714), + [anon_sym_BANG_TILDE2] = ACTIONS(2714), + [anon_sym_like2] = ACTIONS(2714), + [anon_sym_not_DASHlike2] = ACTIONS(2714), + [anon_sym_STAR_STAR2] = ACTIONS(2714), + [anon_sym_PLUS_PLUS2] = ACTIONS(2714), + [anon_sym_SLASH2] = ACTIONS(2716), + [anon_sym_mod2] = ACTIONS(2714), + [anon_sym_SLASH_SLASH2] = ACTIONS(2714), + [anon_sym_PLUS2] = ACTIONS(2716), + [anon_sym_bit_DASHshl2] = ACTIONS(2714), + [anon_sym_bit_DASHshr2] = ACTIONS(2714), + [anon_sym_bit_DASHand2] = ACTIONS(2714), + [anon_sym_bit_DASHxor2] = ACTIONS(2714), + [anon_sym_bit_DASHor2] = ACTIONS(2714), + [anon_sym_err_GT] = ACTIONS(2716), + [anon_sym_out_GT] = ACTIONS(2716), + [anon_sym_e_GT] = ACTIONS(2716), + [anon_sym_o_GT] = ACTIONS(2716), + [anon_sym_err_PLUSout_GT] = ACTIONS(2716), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2716), + [anon_sym_o_PLUSe_GT] = ACTIONS(2716), + [anon_sym_e_PLUSo_GT] = ACTIONS(2716), + [anon_sym_err_GT_GT] = ACTIONS(2714), + [anon_sym_out_GT_GT] = ACTIONS(2714), + [anon_sym_e_GT_GT] = ACTIONS(2714), + [anon_sym_o_GT_GT] = ACTIONS(2714), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2714), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2714), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2714), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2714), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1052)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1087), [sym_comment] = STATE(1052), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1053)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1053), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1054)] = { - [aux_sym__repeat_newline] = STATE(1091), + [sym__expr_parenthesized_immediate] = STATE(4767), [sym_comment] = STATE(1054), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1055)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1356), + [sym__expression_parenthesized] = STATE(4356), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), [sym_comment] = STATE(1055), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(2726), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2634), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1056)] = { - [aux_sym__repeat_newline] = STATE(1092), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1056), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1057)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1089), [sym_comment] = STATE(1057), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1058)] = { - [aux_sym__repeat_newline] = STATE(992), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1058), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1059)] = { - [aux_sym__repeat_newline] = STATE(1093), + [aux_sym__repeat_newline] = STATE(1090), [sym_comment] = STATE(1059), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1060)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1060), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1061)] = { - [aux_sym__repeat_newline] = STATE(1094), + [aux_sym__repeat_newline] = STATE(1356), + [sym__expression_parenthesized] = STATE(4363), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), [sym_comment] = STATE(1061), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(2726), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2634), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1062)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1091), [sym_comment] = STATE(1062), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1063)] = { + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1063), - [ts_builtin_sym_end] = ACTIONS(2575), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1064)] = { - [aux_sym__repeat_newline] = STATE(1095), + [aux_sym__repeat_newline] = STATE(1092), [sym_comment] = STATE(1064), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1065)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1065), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1066)] = { - [aux_sym__repeat_newline] = STATE(1096), + [aux_sym__repeat_newline] = STATE(1093), [sym_comment] = STATE(1066), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1067)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1067), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1068)] = { + [sym__expr_parenthesized_immediate] = STATE(4767), [sym_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1069)] = { - [aux_sym__repeat_newline] = STATE(1097), + [aux_sym__repeat_newline] = STATE(1094), [sym_comment] = STATE(1069), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1070)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1070), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1071)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1095), [sym_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1072)] = { - [aux_sym__repeat_newline] = STATE(1098), - [sym_comment] = STATE(1072), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1073)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1073), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1074)] = { - [aux_sym__repeat_newline] = STATE(1099), - [sym_comment] = STATE(1074), [anon_sym_in] = ACTIONS(2728), [sym__newline] = ACTIONS(2728), [anon_sym_SEMI] = ACTIONS(2728), @@ -126519,145 +126343,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1075)] = { - [aux_sym__repeat_newline] = STATE(994), - [sym_comment] = STATE(1075), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1076)] = { - [aux_sym__repeat_newline] = STATE(1100), - [sym_comment] = STATE(1076), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(1072)] = { + [aux_sym__repeat_newline] = STATE(1096), + [sym_comment] = STATE(1072), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1077)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1077), + [STATE(1073)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1073), [anon_sym_in] = ACTIONS(2732), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), @@ -126723,893 +126479,1029 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1074)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1074), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1075)] = { + [aux_sym__repeat_newline] = STATE(1097), + [sym_comment] = STATE(1075), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1076)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1076), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1077)] = { + [sym__expr_parenthesized_immediate] = STATE(4767), + [sym_comment] = STATE(1077), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1078)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1098), [sym_comment] = STATE(1078), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1079)] = { - [aux_sym__repeat_newline] = STATE(1101), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1079), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1080)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1099), [sym_comment] = STATE(1080), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1081)] = { - [aux_sym__repeat_newline] = STATE(1102), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1081), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1082)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1100), [sym_comment] = STATE(1082), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1083)] = { + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1083), - [ts_builtin_sym_end] = ACTIONS(2523), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), - [sym__unquoted_pattern] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1084)] = { - [aux_sym__repeat_newline] = STATE(1106), + [sym__expr_parenthesized_immediate] = STATE(4767), [sym_comment] = STATE(1084), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1085)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expr_parenthesized_immediate] = STATE(4767), [sym_comment] = STATE(1085), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1086)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [sym__expr_parenthesized_immediate] = STATE(4767), [sym_comment] = STATE(1086), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1087)] = { - [aux_sym__repeat_newline] = STATE(1107), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1087), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2736), + [sym__newline] = ACTIONS(2736), + [anon_sym_SEMI] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_err_GT_PIPE] = ACTIONS(2736), + [anon_sym_out_GT_PIPE] = ACTIONS(2736), + [anon_sym_e_GT_PIPE] = ACTIONS(2736), + [anon_sym_o_GT_PIPE] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), + [anon_sym_RPAREN] = ACTIONS(2736), + [anon_sym_GT2] = ACTIONS(2738), + [anon_sym_DASH2] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_STAR2] = ACTIONS(2738), + [anon_sym_and2] = ACTIONS(2736), + [anon_sym_xor2] = ACTIONS(2736), + [anon_sym_or2] = ACTIONS(2736), + [anon_sym_not_DASHin2] = ACTIONS(2736), + [anon_sym_has2] = ACTIONS(2736), + [anon_sym_not_DASHhas2] = ACTIONS(2736), + [anon_sym_starts_DASHwith2] = ACTIONS(2736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), + [anon_sym_ends_DASHwith2] = ACTIONS(2736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), + [anon_sym_EQ_EQ2] = ACTIONS(2736), + [anon_sym_BANG_EQ2] = ACTIONS(2736), + [anon_sym_LT2] = ACTIONS(2738), + [anon_sym_LT_EQ2] = ACTIONS(2736), + [anon_sym_GT_EQ2] = ACTIONS(2736), + [anon_sym_EQ_TILDE2] = ACTIONS(2736), + [anon_sym_BANG_TILDE2] = ACTIONS(2736), + [anon_sym_like2] = ACTIONS(2736), + [anon_sym_not_DASHlike2] = ACTIONS(2736), + [anon_sym_STAR_STAR2] = ACTIONS(2736), + [anon_sym_PLUS_PLUS2] = ACTIONS(2736), + [anon_sym_SLASH2] = ACTIONS(2738), + [anon_sym_mod2] = ACTIONS(2736), + [anon_sym_SLASH_SLASH2] = ACTIONS(2736), + [anon_sym_PLUS2] = ACTIONS(2738), + [anon_sym_bit_DASHshl2] = ACTIONS(2736), + [anon_sym_bit_DASHshr2] = ACTIONS(2736), + [anon_sym_bit_DASHand2] = ACTIONS(2736), + [anon_sym_bit_DASHxor2] = ACTIONS(2736), + [anon_sym_bit_DASHor2] = ACTIONS(2736), + [anon_sym_err_GT] = ACTIONS(2738), + [anon_sym_out_GT] = ACTIONS(2738), + [anon_sym_e_GT] = ACTIONS(2738), + [anon_sym_o_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT] = ACTIONS(2738), + [anon_sym_err_GT_GT] = ACTIONS(2736), + [anon_sym_out_GT_GT] = ACTIONS(2736), + [anon_sym_e_GT_GT] = ACTIONS(2736), + [anon_sym_o_GT_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1088)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1088), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_in] = ACTIONS(2736), + [sym__newline] = ACTIONS(2736), + [anon_sym_SEMI] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_err_GT_PIPE] = ACTIONS(2736), + [anon_sym_out_GT_PIPE] = ACTIONS(2736), + [anon_sym_e_GT_PIPE] = ACTIONS(2736), + [anon_sym_o_GT_PIPE] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), + [anon_sym_RPAREN] = ACTIONS(2736), + [anon_sym_GT2] = ACTIONS(2738), + [anon_sym_DASH2] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_STAR2] = ACTIONS(2738), + [anon_sym_and2] = ACTIONS(2736), + [anon_sym_xor2] = ACTIONS(2736), + [anon_sym_or2] = ACTIONS(2736), + [anon_sym_not_DASHin2] = ACTIONS(2736), + [anon_sym_has2] = ACTIONS(2736), + [anon_sym_not_DASHhas2] = ACTIONS(2736), + [anon_sym_starts_DASHwith2] = ACTIONS(2736), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), + [anon_sym_ends_DASHwith2] = ACTIONS(2736), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), + [anon_sym_EQ_EQ2] = ACTIONS(2736), + [anon_sym_BANG_EQ2] = ACTIONS(2736), + [anon_sym_LT2] = ACTIONS(2738), + [anon_sym_LT_EQ2] = ACTIONS(2736), + [anon_sym_GT_EQ2] = ACTIONS(2736), + [anon_sym_EQ_TILDE2] = ACTIONS(2736), + [anon_sym_BANG_TILDE2] = ACTIONS(2736), + [anon_sym_like2] = ACTIONS(2736), + [anon_sym_not_DASHlike2] = ACTIONS(2736), + [anon_sym_STAR_STAR2] = ACTIONS(2736), + [anon_sym_PLUS_PLUS2] = ACTIONS(2736), + [anon_sym_SLASH2] = ACTIONS(2738), + [anon_sym_mod2] = ACTIONS(2736), + [anon_sym_SLASH_SLASH2] = ACTIONS(2736), + [anon_sym_PLUS2] = ACTIONS(2738), + [anon_sym_bit_DASHshl2] = ACTIONS(2736), + [anon_sym_bit_DASHshr2] = ACTIONS(2736), + [anon_sym_bit_DASHand2] = ACTIONS(2736), + [anon_sym_bit_DASHxor2] = ACTIONS(2736), + [anon_sym_bit_DASHor2] = ACTIONS(2736), + [anon_sym_err_GT] = ACTIONS(2738), + [anon_sym_out_GT] = ACTIONS(2738), + [anon_sym_e_GT] = ACTIONS(2738), + [anon_sym_o_GT] = ACTIONS(2738), + [anon_sym_err_PLUSout_GT] = ACTIONS(2738), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), + [anon_sym_o_PLUSe_GT] = ACTIONS(2738), + [anon_sym_e_PLUSo_GT] = ACTIONS(2738), + [anon_sym_err_GT_GT] = ACTIONS(2736), + [anon_sym_out_GT_GT] = ACTIONS(2736), + [anon_sym_e_GT_GT] = ACTIONS(2736), + [anon_sym_o_GT_GT] = ACTIONS(2736), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1089)] = { - [aux_sym__repeat_newline] = STATE(996), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1089), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1090)] = { - [sym_comment] = STATE(1090), - [ts_builtin_sym_end] = ACTIONS(2567), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), - [sym__unquoted_pattern] = ACTIONS(2633), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1091)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1091), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -127675,9 +127567,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1092)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1092), + [STATE(1090)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1090), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -127743,9 +127635,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1093)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1093), + [STATE(1091)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1091), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -127811,9 +127703,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1094)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1094), + [STATE(1092)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1092), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -127879,9 +127771,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1095)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1095), + [STATE(1093)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1093), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -127947,9 +127839,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1096)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1096), + [STATE(1094)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1094), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -128015,9 +127907,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1097)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1097), + [STATE(1095)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1095), + [anon_sym_in] = ACTIONS(2740), + [sym__newline] = ACTIONS(2740), + [anon_sym_SEMI] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_err_GT_PIPE] = ACTIONS(2740), + [anon_sym_out_GT_PIPE] = ACTIONS(2740), + [anon_sym_e_GT_PIPE] = ACTIONS(2740), + [anon_sym_o_GT_PIPE] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), + [anon_sym_RPAREN] = ACTIONS(2740), + [anon_sym_GT2] = ACTIONS(2742), + [anon_sym_DASH2] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_STAR2] = ACTIONS(2742), + [anon_sym_and2] = ACTIONS(2740), + [anon_sym_xor2] = ACTIONS(2740), + [anon_sym_or2] = ACTIONS(2740), + [anon_sym_not_DASHin2] = ACTIONS(2740), + [anon_sym_has2] = ACTIONS(2740), + [anon_sym_not_DASHhas2] = ACTIONS(2740), + [anon_sym_starts_DASHwith2] = ACTIONS(2740), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), + [anon_sym_ends_DASHwith2] = ACTIONS(2740), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), + [anon_sym_EQ_EQ2] = ACTIONS(2740), + [anon_sym_BANG_EQ2] = ACTIONS(2740), + [anon_sym_LT2] = ACTIONS(2742), + [anon_sym_LT_EQ2] = ACTIONS(2740), + [anon_sym_GT_EQ2] = ACTIONS(2740), + [anon_sym_EQ_TILDE2] = ACTIONS(2740), + [anon_sym_BANG_TILDE2] = ACTIONS(2740), + [anon_sym_like2] = ACTIONS(2740), + [anon_sym_not_DASHlike2] = ACTIONS(2740), + [anon_sym_STAR_STAR2] = ACTIONS(2740), + [anon_sym_PLUS_PLUS2] = ACTIONS(2740), + [anon_sym_SLASH2] = ACTIONS(2742), + [anon_sym_mod2] = ACTIONS(2740), + [anon_sym_SLASH_SLASH2] = ACTIONS(2740), + [anon_sym_PLUS2] = ACTIONS(2742), + [anon_sym_bit_DASHshl2] = ACTIONS(2740), + [anon_sym_bit_DASHshr2] = ACTIONS(2740), + [anon_sym_bit_DASHand2] = ACTIONS(2740), + [anon_sym_bit_DASHxor2] = ACTIONS(2740), + [anon_sym_bit_DASHor2] = ACTIONS(2740), + [anon_sym_err_GT] = ACTIONS(2742), + [anon_sym_out_GT] = ACTIONS(2742), + [anon_sym_e_GT] = ACTIONS(2742), + [anon_sym_o_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT] = ACTIONS(2742), + [anon_sym_err_GT_GT] = ACTIONS(2740), + [anon_sym_out_GT_GT] = ACTIONS(2740), + [anon_sym_e_GT_GT] = ACTIONS(2740), + [anon_sym_o_GT_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1096)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1096), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -128083,9 +128043,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1098)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1098), + [STATE(1097)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1097), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -128151,77 +128111,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1099)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1099), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2742), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2740), - [anon_sym_PLUS_PLUS2] = ACTIONS(2740), - [anon_sym_SLASH2] = ACTIONS(2742), - [anon_sym_mod2] = ACTIONS(2740), - [anon_sym_SLASH_SLASH2] = ACTIONS(2740), - [anon_sym_PLUS2] = ACTIONS(2742), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1100)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1100), + [STATE(1098)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1098), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -128287,9 +128179,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1101)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1101), + [STATE(1099)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1099), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -128355,9 +128247,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1102)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1102), + [STATE(1100)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1100), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -128423,447 +128315,855 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1101)] = { + [sym_comment] = STATE(1101), + [aux_sym_cmd_identifier_token2] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(860), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_COLON2] = ACTIONS(960), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1102)] = { + [sym__expr_parenthesized_immediate] = STATE(4767), + [sym_comment] = STATE(1102), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1103)] = { - [aux_sym__repeat_newline] = STATE(998), + [sym__expr_parenthesized_immediate] = STATE(4767), [sym_comment] = STATE(1103), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1104)] = { - [aux_sym__repeat_newline] = STATE(1001), + [sym__expr_parenthesized_immediate] = STATE(4767), [sym_comment] = STATE(1104), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2744), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2746), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2744), - [anon_sym_PLUS_PLUS2] = ACTIONS(2744), - [anon_sym_SLASH2] = ACTIONS(2746), - [anon_sym_mod2] = ACTIONS(2744), - [anon_sym_SLASH_SLASH2] = ACTIONS(2744), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1105)] = { - [aux_sym__repeat_newline] = STATE(1002), + [sym__expr_parenthesized_immediate] = STATE(4767), [sym_comment] = STATE(1105), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1106)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1106), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2626), + [anon_sym_in] = ACTIONS(2493), + [sym__newline] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_err_GT_PIPE] = ACTIONS(2491), + [anon_sym_out_GT_PIPE] = ACTIONS(2491), + [anon_sym_e_GT_PIPE] = ACTIONS(2491), + [anon_sym_o_GT_PIPE] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2491), + [anon_sym_RPAREN] = ACTIONS(2491), + [anon_sym_GT2] = ACTIONS(2493), + [anon_sym_DASH2] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_STAR2] = ACTIONS(2493), + [anon_sym_and2] = ACTIONS(2493), + [anon_sym_xor2] = ACTIONS(2493), + [anon_sym_or2] = ACTIONS(2493), + [anon_sym_not_DASHin2] = ACTIONS(2493), + [anon_sym_has2] = ACTIONS(2493), + [anon_sym_not_DASHhas2] = ACTIONS(2493), + [anon_sym_starts_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2493), + [anon_sym_ends_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2493), + [anon_sym_EQ_EQ2] = ACTIONS(2491), + [anon_sym_BANG_EQ2] = ACTIONS(2491), + [anon_sym_LT2] = ACTIONS(2493), + [anon_sym_LT_EQ2] = ACTIONS(2491), + [anon_sym_GT_EQ2] = ACTIONS(2491), + [anon_sym_EQ_TILDE2] = ACTIONS(2491), + [anon_sym_BANG_TILDE2] = ACTIONS(2493), + [anon_sym_like2] = ACTIONS(2493), + [anon_sym_not_DASHlike2] = ACTIONS(2493), + [anon_sym_STAR_STAR2] = ACTIONS(2493), + [anon_sym_PLUS_PLUS2] = ACTIONS(2493), + [anon_sym_SLASH2] = ACTIONS(2493), + [anon_sym_mod2] = ACTIONS(2493), + [anon_sym_SLASH_SLASH2] = ACTIONS(2493), + [anon_sym_PLUS2] = ACTIONS(2493), + [anon_sym_bit_DASHshl2] = ACTIONS(2493), + [anon_sym_bit_DASHshr2] = ACTIONS(2493), + [anon_sym_bit_DASHand2] = ACTIONS(2493), + [anon_sym_bit_DASHxor2] = ACTIONS(2493), + [anon_sym_bit_DASHor2] = ACTIONS(2493), + [anon_sym_err_GT] = ACTIONS(2493), + [anon_sym_out_GT] = ACTIONS(2493), + [anon_sym_e_GT] = ACTIONS(2493), + [anon_sym_o_GT] = ACTIONS(2493), + [anon_sym_err_PLUSout_GT] = ACTIONS(2493), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2493), + [anon_sym_o_PLUSe_GT] = ACTIONS(2493), + [anon_sym_e_PLUSo_GT] = ACTIONS(2493), + [anon_sym_err_GT_GT] = ACTIONS(2491), + [anon_sym_out_GT_GT] = ACTIONS(2491), + [anon_sym_e_GT_GT] = ACTIONS(2491), + [anon_sym_o_GT_GT] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2491), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1107)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1107), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2626), + [anon_sym_in] = ACTIONS(2642), + [sym__newline] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_err_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_GT_PIPE] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2640), + [anon_sym_RPAREN] = ACTIONS(2640), + [anon_sym_GT2] = ACTIONS(2642), + [anon_sym_DASH2] = ACTIONS(2642), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_STAR2] = ACTIONS(2642), + [anon_sym_and2] = ACTIONS(2642), + [anon_sym_xor2] = ACTIONS(2642), + [anon_sym_or2] = ACTIONS(2642), + [anon_sym_not_DASHin2] = ACTIONS(2642), + [anon_sym_has2] = ACTIONS(2642), + [anon_sym_not_DASHhas2] = ACTIONS(2642), + [anon_sym_starts_DASHwith2] = ACTIONS(2642), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2642), + [anon_sym_ends_DASHwith2] = ACTIONS(2642), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2642), + [anon_sym_EQ_EQ2] = ACTIONS(2640), + [anon_sym_BANG_EQ2] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2642), + [anon_sym_LT_EQ2] = ACTIONS(2640), + [anon_sym_GT_EQ2] = ACTIONS(2640), + [anon_sym_EQ_TILDE2] = ACTIONS(2640), + [anon_sym_BANG_TILDE2] = ACTIONS(2642), + [anon_sym_like2] = ACTIONS(2642), + [anon_sym_not_DASHlike2] = ACTIONS(2642), + [anon_sym_STAR_STAR2] = ACTIONS(2642), + [anon_sym_PLUS_PLUS2] = ACTIONS(2642), + [anon_sym_SLASH2] = ACTIONS(2642), + [anon_sym_mod2] = ACTIONS(2642), + [anon_sym_SLASH_SLASH2] = ACTIONS(2642), + [anon_sym_PLUS2] = ACTIONS(2642), + [anon_sym_bit_DASHshl2] = ACTIONS(2642), + [anon_sym_bit_DASHshr2] = ACTIONS(2642), + [anon_sym_bit_DASHand2] = ACTIONS(2642), + [anon_sym_bit_DASHxor2] = ACTIONS(2642), + [anon_sym_bit_DASHor2] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2642), + [anon_sym_out_GT] = ACTIONS(2642), + [anon_sym_e_GT] = ACTIONS(2642), + [anon_sym_o_GT] = ACTIONS(2642), + [anon_sym_err_PLUSout_GT] = ACTIONS(2642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2642), + [anon_sym_o_PLUSe_GT] = ACTIONS(2642), + [anon_sym_e_PLUSo_GT] = ACTIONS(2642), + [anon_sym_err_GT_GT] = ACTIONS(2640), + [anon_sym_out_GT_GT] = ACTIONS(2640), + [anon_sym_e_GT_GT] = ACTIONS(2640), + [anon_sym_o_GT_GT] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1108)] = { - [aux_sym__repeat_newline] = STATE(1004), [sym_comment] = STATE(1108), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2626), + [anon_sym_in] = ACTIONS(860), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1109)] = { - [sym_expr_unary] = STATE(2841), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2562), - [sym_val_range] = STATE(2841), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(2841), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2613), - [sym__unquoted_with_expr] = STATE(2844), - [sym__unquoted_anonymous_prefix] = STATE(4499), [sym_comment] = STATE(1109), + [ts_builtin_sym_end] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [sym__newline] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_err_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_GT_PIPE] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1760), + [anon_sym_GT2] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_STAR2] = ACTIONS(1762), + [anon_sym_and2] = ACTIONS(1760), + [anon_sym_xor2] = ACTIONS(1760), + [anon_sym_or2] = ACTIONS(1760), + [anon_sym_not_DASHin2] = ACTIONS(1760), + [anon_sym_has2] = ACTIONS(1760), + [anon_sym_not_DASHhas2] = ACTIONS(1760), + [anon_sym_starts_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1760), + [anon_sym_ends_DASHwith2] = ACTIONS(1760), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1760), + [anon_sym_EQ_EQ2] = ACTIONS(1760), + [anon_sym_BANG_EQ2] = ACTIONS(1760), + [anon_sym_LT2] = ACTIONS(1762), + [anon_sym_LT_EQ2] = ACTIONS(1760), + [anon_sym_GT_EQ2] = ACTIONS(1760), + [anon_sym_EQ_TILDE2] = ACTIONS(1760), + [anon_sym_BANG_TILDE2] = ACTIONS(1760), + [anon_sym_like2] = ACTIONS(1760), + [anon_sym_not_DASHlike2] = ACTIONS(1760), + [anon_sym_STAR_STAR2] = ACTIONS(1760), + [anon_sym_PLUS_PLUS2] = ACTIONS(1760), + [anon_sym_SLASH2] = ACTIONS(1762), + [anon_sym_mod2] = ACTIONS(1760), + [anon_sym_SLASH_SLASH2] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1762), + [anon_sym_bit_DASHshl2] = ACTIONS(1760), + [anon_sym_bit_DASHshr2] = ACTIONS(1760), + [anon_sym_bit_DASHand2] = ACTIONS(1760), + [anon_sym_bit_DASHxor2] = ACTIONS(1760), + [anon_sym_bit_DASHor2] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(2746), + [aux_sym__immediate_decimal_token5] = ACTIONS(1864), + [anon_sym_err_GT] = ACTIONS(1762), + [anon_sym_out_GT] = ACTIONS(1762), + [anon_sym_e_GT] = ACTIONS(1762), + [anon_sym_o_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT] = ACTIONS(1762), + [anon_sym_err_GT_GT] = ACTIONS(1760), + [anon_sym_out_GT_GT] = ACTIONS(1760), + [anon_sym_e_GT_GT] = ACTIONS(1760), + [anon_sym_o_GT_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1110)] = { + [aux_sym__repeat_newline] = STATE(980), + [sym_comment] = STATE(1110), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1111)] = { + [aux_sym__repeat_newline] = STATE(982), + [sym_comment] = STATE(1111), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1112)] = { + [aux_sym__repeat_newline] = STATE(986), + [sym_comment] = STATE(1112), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1113)] = { + [sym_expr_unary] = STATE(2716), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_parenthesized] = STATE(2501), + [sym_val_range] = STATE(2716), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(2716), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(2517), + [sym_val_variable] = STATE(2497), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(2335), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(2547), + [sym__unquoted_with_expr] = STATE(2719), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(1113), [anon_sym_true] = ACTIONS(2748), [anon_sym_false] = ACTIONS(2748), [anon_sym_null] = ACTIONS(2750), @@ -128873,7 +129173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2754), [anon_sym_LPAREN] = ACTIONS(2756), [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(2760), [anon_sym_DOT_DOT] = ACTIONS(2762), [aux_sym_expr_unary_token1] = ACTIONS(2764), @@ -128883,55 +129183,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_decimal_token2] = ACTIONS(2770), [aux_sym__val_number_decimal_token3] = ACTIONS(2772), [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(1110)] = { - [sym_expr_unary] = STATE(2845), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2574), - [sym_val_range] = STATE(2845), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(2845), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2632), - [sym__unquoted_with_expr] = STATE(2850), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(1110), + [STATE(1114)] = { + [sym_expr_unary] = STATE(2720), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_parenthesized] = STATE(2502), + [sym_val_range] = STATE(2720), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(2720), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(2517), + [sym_val_variable] = STATE(2497), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(2335), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(2549), + [sym__unquoted_with_expr] = STATE(2725), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(1114), [anon_sym_true] = ACTIONS(2748), [anon_sym_false] = ACTIONS(2748), [anon_sym_null] = ACTIONS(2750), @@ -128941,7 +129241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2754), [anon_sym_LPAREN] = ACTIONS(2756), [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(2760), [anon_sym_DOT_DOT] = ACTIONS(2762), [aux_sym_expr_unary_token1] = ACTIONS(2764), @@ -128951,55 +129251,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_decimal_token2] = ACTIONS(2770), [aux_sym__val_number_decimal_token3] = ACTIONS(2772), [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(1111)] = { - [sym_expr_unary] = STATE(2851), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2520), - [sym_val_range] = STATE(2851), - [sym__val_range] = STATE(4499), - [sym__value] = STATE(2851), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2593), - [sym__unquoted_with_expr] = STATE(2853), - [sym__unquoted_anonymous_prefix] = STATE(4499), - [sym_comment] = STATE(1111), + [STATE(1115)] = { + [sym_expr_unary] = STATE(2727), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_parenthesized] = STATE(2503), + [sym_val_range] = STATE(2727), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(2727), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(2517), + [sym_val_variable] = STATE(2497), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(2335), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_unquoted] = STATE(2553), + [sym__unquoted_with_expr] = STATE(2732), + [sym__unquoted_anonymous_prefix] = STATE(4611), + [sym_comment] = STATE(1115), [anon_sym_true] = ACTIONS(2748), [anon_sym_false] = ACTIONS(2748), [anon_sym_null] = ACTIONS(2750), @@ -129009,7 +129309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2754), [anon_sym_LPAREN] = ACTIONS(2756), [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(2760), [anon_sym_DOT_DOT] = ACTIONS(2762), [aux_sym_expr_unary_token1] = ACTIONS(2764), @@ -129019,1218 +129319,946 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_decimal_token2] = ACTIONS(2770), [aux_sym__val_number_decimal_token3] = ACTIONS(2772), [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(1112)] = { - [sym_comment] = STATE(1112), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_RPAREN] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1113)] = { - [sym_comment] = STATE(1113), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1114)] = { - [sym_comment] = STATE(1114), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1115)] = { - [aux_sym__repeat_newline] = STATE(1007), - [sym_comment] = STATE(1115), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1914), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1116)] = { - [aux_sym__repeat_newline] = STATE(1009), + [aux_sym__repeat_newline] = STATE(990), [sym_comment] = STATE(1116), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1117)] = { + [aux_sym__repeat_newline] = STATE(992), [sym_comment] = STATE(1117), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [sym__newline] = ACTIONS(2493), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_err_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_GT_PIPE] = ACTIONS(2493), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2491), - [anon_sym_where] = ACTIONS(2493), - [aux_sym_expr_unary_token1] = ACTIONS(2493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2493), - [anon_sym_DOT_DOT_LT] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2491), - [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_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2491), - [anon_sym_0x] = ACTIONS(2491), - [sym_val_date] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_BQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2493), - [anon_sym_CARET] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2493), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1118)] = { + [aux_sym__repeat_newline] = STATE(994), [sym_comment] = STATE(1118), - [anon_sym_export] = ACTIONS(2776), - [anon_sym_alias] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2778), - [anon_sym_mut] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [aux_sym_cmd_identifier_token1] = ACTIONS(2776), - [anon_sym_def] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2778), - [anon_sym_export_DASHenv] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym_module] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_loop] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_catch] = ACTIONS(2778), - [anon_sym_match] = ACTIONS(2778), - [anon_sym_in] = ACTIONS(2776), - [anon_sym_true] = ACTIONS(2778), - [anon_sym_false] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2778), - [aux_sym_cmd_identifier_token3] = ACTIONS(2778), - [aux_sym_cmd_identifier_token4] = ACTIONS(2778), - [aux_sym_cmd_identifier_token5] = ACTIONS(2778), - [sym__newline] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2776), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(2776), - [anon_sym_where] = ACTIONS(2778), - [aux_sym_expr_unary_token1] = ACTIONS(2778), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2778), - [anon_sym_DOT_DOT_LT] = ACTIONS(2778), - [aux_sym__val_number_decimal_token1] = ACTIONS(2776), - [aux_sym__val_number_decimal_token2] = ACTIONS(2778), - [aux_sym__val_number_decimal_token3] = ACTIONS(2778), - [aux_sym__val_number_decimal_token4] = ACTIONS(2778), - [aux_sym__val_number_token1] = ACTIONS(2778), - [aux_sym__val_number_token2] = ACTIONS(2778), - [aux_sym__val_number_token3] = ACTIONS(2778), - [anon_sym_0b] = ACTIONS(2776), - [anon_sym_0o] = ACTIONS(2776), - [anon_sym_0x] = ACTIONS(2776), - [sym_val_date] = ACTIONS(2778), - [anon_sym_DQUOTE] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_BQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2778), - [anon_sym_CARET] = ACTIONS(2778), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2778), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1119)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), + [aux_sym__repeat_newline] = STATE(996), [sym_comment] = STATE(1119), - [ts_builtin_sym_end] = ACTIONS(2144), - [anon_sym_in] = ACTIONS(2144), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2146), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_has2] = ACTIONS(2144), - [anon_sym_not_DASHhas2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2146), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_like2] = ACTIONS(2144), - [anon_sym_not_DASHlike2] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2146), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1120)] = { - [aux_sym__repeat_newline] = STATE(1011), + [aux_sym__repeat_newline] = STATE(998), [sym_comment] = STATE(1120), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1121)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1001), [sym_comment] = STATE(1121), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2776), + [anon_sym_STAR2] = ACTIONS(2778), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2776), + [anon_sym_PLUS_PLUS2] = ACTIONS(2776), + [anon_sym_SLASH2] = ACTIONS(2778), + [anon_sym_mod2] = ACTIONS(2776), + [anon_sym_SLASH_SLASH2] = ACTIONS(2776), + [anon_sym_PLUS2] = ACTIONS(2778), + [anon_sym_bit_DASHshl2] = ACTIONS(2776), + [anon_sym_bit_DASHshr2] = ACTIONS(2776), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1122)] = { + [aux_sym__repeat_newline] = STATE(1002), [sym_comment] = STATE(1122), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2780), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [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(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1123)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1004), [sym_comment] = STATE(1123), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1124)] = { - [sym__expr_parenthesized_immediate] = STATE(5024), + [aux_sym__repeat_newline] = STATE(1006), [sym_comment] = STATE(1124), - [ts_builtin_sym_end] = ACTIONS(2148), - [anon_sym_in] = ACTIONS(2148), - [sym__newline] = ACTIONS(2148), - [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_GT2] = ACTIONS(2150), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_STAR2] = ACTIONS(2150), - [anon_sym_and2] = ACTIONS(2148), - [anon_sym_xor2] = ACTIONS(2148), - [anon_sym_or2] = ACTIONS(2148), - [anon_sym_not_DASHin2] = ACTIONS(2148), - [anon_sym_has2] = ACTIONS(2148), - [anon_sym_not_DASHhas2] = ACTIONS(2148), - [anon_sym_starts_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2148), - [anon_sym_ends_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2148), - [anon_sym_EQ_EQ2] = ACTIONS(2148), - [anon_sym_BANG_EQ2] = ACTIONS(2148), - [anon_sym_LT2] = ACTIONS(2150), - [anon_sym_LT_EQ2] = ACTIONS(2148), - [anon_sym_GT_EQ2] = ACTIONS(2148), - [anon_sym_EQ_TILDE2] = ACTIONS(2148), - [anon_sym_BANG_TILDE2] = ACTIONS(2148), - [anon_sym_like2] = ACTIONS(2148), - [anon_sym_not_DASHlike2] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2148), - [anon_sym_PLUS_PLUS2] = ACTIONS(2148), - [anon_sym_SLASH2] = ACTIONS(2150), - [anon_sym_mod2] = ACTIONS(2148), - [anon_sym_SLASH_SLASH2] = ACTIONS(2148), - [anon_sym_PLUS2] = ACTIONS(2150), - [anon_sym_bit_DASHshl2] = ACTIONS(2148), - [anon_sym_bit_DASHshr2] = ACTIONS(2148), - [anon_sym_bit_DASHand2] = ACTIONS(2148), - [anon_sym_bit_DASHxor2] = ACTIONS(2148), - [anon_sym_bit_DASHor2] = ACTIONS(2148), - [anon_sym_err_GT] = ACTIONS(2150), - [anon_sym_out_GT] = ACTIONS(2150), - [anon_sym_e_GT] = ACTIONS(2150), - [anon_sym_o_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT] = ACTIONS(2150), - [anon_sym_err_GT_GT] = ACTIONS(2148), - [anon_sym_out_GT_GT] = ACTIONS(2148), - [anon_sym_e_GT_GT] = ACTIONS(2148), - [anon_sym_o_GT_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1125)] = { - [aux_sym__repeat_newline] = STATE(4114), - [sym__match_pattern_expression] = STATE(4365), - [sym__match_pattern_value] = STATE(4515), - [sym__match_pattern_list_body] = STATE(4378), - [sym__match_pattern_list] = STATE(4516), - [sym__match_pattern_rest] = STATE(5040), - [sym__match_pattern_record] = STATE(4517), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4515), - [sym__val_range] = STATE(4853), - [sym_val_nothing] = STATE(4517), - [sym_val_bool] = STATE(4134), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4517), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4165), - [sym_val_duration] = STATE(4517), - [sym_val_filesize] = STATE(4517), - [sym_val_binary] = STATE(4517), - [sym_val_string] = STATE(4517), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(4951), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4517), - [sym__unquoted_in_list] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(4853), + [aux_sym__repeat_newline] = STATE(1008), [sym_comment] = STATE(1125), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3958), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1126)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [aux_sym__repeat_newline] = STATE(1011), [sym_comment] = STATE(1126), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2190), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2190), + [anon_sym_xor2] = ACTIONS(2190), + [anon_sym_or2] = ACTIONS(2190), + [anon_sym_not_DASHin2] = ACTIONS(2190), + [anon_sym_has2] = ACTIONS(2190), + [anon_sym_not_DASHhas2] = ACTIONS(2190), + [anon_sym_starts_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2190), + [anon_sym_ends_DASHwith2] = ACTIONS(2190), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2190), + [anon_sym_EQ_EQ2] = ACTIONS(2190), + [anon_sym_BANG_EQ2] = ACTIONS(2190), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2190), + [anon_sym_GT_EQ2] = ACTIONS(2190), + [anon_sym_EQ_TILDE2] = ACTIONS(2190), + [anon_sym_BANG_TILDE2] = ACTIONS(2190), + [anon_sym_like2] = ACTIONS(2190), + [anon_sym_not_DASHlike2] = ACTIONS(2190), + [anon_sym_STAR_STAR2] = ACTIONS(2190), + [anon_sym_PLUS_PLUS2] = ACTIONS(2190), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2190), + [anon_sym_SLASH_SLASH2] = ACTIONS(2190), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2190), + [anon_sym_bit_DASHshr2] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2190), + [anon_sym_bit_DASHxor2] = ACTIONS(2190), + [anon_sym_bit_DASHor2] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1127)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [sym__expression] = STATE(4682), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), [sym_comment] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2744), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2630), + [aux_sym_cmd_identifier_token3] = ACTIONS(2632), + [aux_sym_cmd_identifier_token4] = ACTIONS(2632), + [aux_sym_cmd_identifier_token5] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(2636), + [aux_sym__val_number_decimal_token4] = ACTIONS(2636), + [aux_sym__val_number_token1] = ACTIONS(2632), + [aux_sym__val_number_token2] = ACTIONS(2632), + [aux_sym__val_number_token3] = ACTIONS(2632), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2638), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_COLON2] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1128)] = { - [sym__expr_parenthesized_immediate] = STATE(4777), + [sym__expression] = STATE(4718), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), [sym_comment] = STATE(1128), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2744), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2630), + [aux_sym_cmd_identifier_token3] = ACTIONS(2632), + [aux_sym_cmd_identifier_token4] = ACTIONS(2632), + [aux_sym_cmd_identifier_token5] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(2636), + [aux_sym__val_number_decimal_token4] = ACTIONS(2636), + [aux_sym__val_number_token1] = ACTIONS(2632), + [aux_sym__val_number_token2] = ACTIONS(2632), + [aux_sym__val_number_token3] = ACTIONS(2632), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2638), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_COLON2] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1129)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4355), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(1356), + [sym__expression_parenthesized] = STATE(4275), + [sym_expr_unary] = STATE(1192), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary_parenthesized] = STATE(1192), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(822), + [sym_val_range] = STATE(1192), + [sym__value] = STATE(1192), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), [sym_comment] = STATE(1129), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(2726), [aux_sym_cmd_identifier_token3] = ACTIONS(189), [aux_sym_cmd_identifier_token4] = ACTIONS(189), [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), + [sym__newline] = ACTIONS(2634), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -130240,10 +130268,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1908), + [aux_sym__val_number_decimal_token3] = ACTIONS(1910), + [aux_sym__val_number_decimal_token4] = ACTIONS(1910), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -130260,478 +130288,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1130)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1088), [sym_comment] = STATE(1130), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2355), + [sym__newline] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(2355), + [anon_sym_err_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_GT_PIPE] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2355), + [anon_sym_RPAREN] = ACTIONS(2355), + [anon_sym_GT2] = ACTIONS(2357), + [anon_sym_DASH2] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2355), + [anon_sym_STAR2] = ACTIONS(2357), + [anon_sym_and2] = ACTIONS(2355), + [anon_sym_xor2] = ACTIONS(2355), + [anon_sym_or2] = ACTIONS(2355), + [anon_sym_not_DASHin2] = ACTIONS(2355), + [anon_sym_has2] = ACTIONS(2355), + [anon_sym_not_DASHhas2] = ACTIONS(2355), + [anon_sym_starts_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2355), + [anon_sym_ends_DASHwith2] = ACTIONS(2355), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2355), + [anon_sym_EQ_EQ2] = ACTIONS(2355), + [anon_sym_BANG_EQ2] = ACTIONS(2355), + [anon_sym_LT2] = ACTIONS(2357), + [anon_sym_LT_EQ2] = ACTIONS(2355), + [anon_sym_GT_EQ2] = ACTIONS(2355), + [anon_sym_EQ_TILDE2] = ACTIONS(2355), + [anon_sym_BANG_TILDE2] = ACTIONS(2355), + [anon_sym_like2] = ACTIONS(2355), + [anon_sym_not_DASHlike2] = ACTIONS(2355), + [anon_sym_STAR_STAR2] = ACTIONS(2355), + [anon_sym_PLUS_PLUS2] = ACTIONS(2355), + [anon_sym_SLASH2] = ACTIONS(2357), + [anon_sym_mod2] = ACTIONS(2355), + [anon_sym_SLASH_SLASH2] = ACTIONS(2355), + [anon_sym_PLUS2] = ACTIONS(2357), + [anon_sym_bit_DASHshl2] = ACTIONS(2355), + [anon_sym_bit_DASHshr2] = ACTIONS(2355), + [anon_sym_bit_DASHand2] = ACTIONS(2355), + [anon_sym_bit_DASHxor2] = ACTIONS(2355), + [anon_sym_bit_DASHor2] = ACTIONS(2355), + [anon_sym_err_GT] = ACTIONS(2357), + [anon_sym_out_GT] = ACTIONS(2357), + [anon_sym_e_GT] = ACTIONS(2357), + [anon_sym_o_GT] = ACTIONS(2357), + [anon_sym_err_PLUSout_GT] = ACTIONS(2357), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2357), + [anon_sym_o_PLUSe_GT] = ACTIONS(2357), + [anon_sym_e_PLUSo_GT] = ACTIONS(2357), + [anon_sym_err_GT_GT] = ACTIONS(2355), + [anon_sym_out_GT_GT] = ACTIONS(2355), + [anon_sym_e_GT_GT] = ACTIONS(2355), + [anon_sym_o_GT_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2355), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1131)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1131), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2742), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1132)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1132), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2576), + [anon_sym_xor2] = ACTIONS(2576), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2790), + [anon_sym_BANG_EQ2] = ACTIONS(2790), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2790), + [anon_sym_GT_EQ2] = ACTIONS(2790), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2794), + [anon_sym_PLUS_PLUS2] = ACTIONS(2794), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2796), + [anon_sym_SLASH_SLASH2] = ACTIONS(2796), [anon_sym_PLUS2] = ACTIONS(2798), [anon_sym_bit_DASHshl2] = ACTIONS(2800), [anon_sym_bit_DASHshr2] = ACTIONS(2800), [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1133)] = { - [sym_comment] = STATE(1133), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1134)] = { - [aux_sym__repeat_newline] = STATE(1198), - [sym_comment] = STATE(1134), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [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(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1135)] = { - [aux_sym__repeat_newline] = STATE(1190), - [sym_comment] = STATE(1135), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_bit_DASHxor2] = ACTIONS(2576), + [anon_sym_bit_DASHor2] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1136)] = { - [sym_comment] = STATE(1136), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2864), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [STATE(1132)] = { + [aux_sym__repeat_newline] = STATE(1212), + [sym_comment] = STATE(1132), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2831), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1137)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1137), + [STATE(1133)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1133), [anon_sym_in] = ACTIONS(2732), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), @@ -130745,9 +130505,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2734), + [anon_sym_DASH2] = ACTIONS(2732), + [anon_sym_STAR2] = ACTIONS(2833), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), @@ -130758,23 +130518,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), [anon_sym_ends_DASHwith2] = ACTIONS(2732), [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), + [anon_sym_EQ_EQ2] = ACTIONS(2732), + [anon_sym_BANG_EQ2] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2734), + [anon_sym_LT_EQ2] = ACTIONS(2732), + [anon_sym_GT_EQ2] = ACTIONS(2732), [anon_sym_EQ_TILDE2] = ACTIONS(2732), [anon_sym_BANG_TILDE2] = ACTIONS(2732), [anon_sym_like2] = ACTIONS(2732), [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2734), + [anon_sym_bit_DASHshl2] = ACTIONS(2732), + [anon_sym_bit_DASHshr2] = ACTIONS(2732), [anon_sym_bit_DASHand2] = ACTIONS(2732), [anon_sym_bit_DASHxor2] = ACTIONS(2732), [anon_sym_bit_DASHor2] = ACTIONS(2732), @@ -130796,78 +130556,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1138)] = { - [sym_comment] = STATE(1138), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2864), - [anon_sym_xor2] = ACTIONS(2866), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), + [STATE(1134)] = { + [sym__expression] = STATE(4768), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_comment] = STATE(1134), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2630), + [aux_sym_cmd_identifier_token3] = ACTIONS(2632), + [aux_sym_cmd_identifier_token4] = ACTIONS(2632), + [aux_sym_cmd_identifier_token5] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(2636), + [aux_sym__val_number_decimal_token4] = ACTIONS(2636), + [aux_sym__val_number_token1] = ACTIONS(2632), + [aux_sym__val_number_token2] = ACTIONS(2632), + [aux_sym__val_number_token3] = ACTIONS(2632), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2638), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1139)] = { - [aux_sym__repeat_newline] = STATE(1200), - [sym_comment] = STATE(1139), + [STATE(1135)] = { + [aux_sym__repeat_newline] = STATE(1189), + [sym_comment] = STATE(1135), [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), + [sym__newline] = ACTIONS(2841), [anon_sym_SEMI] = ACTIONS(2728), [anon_sym_PIPE] = ACTIONS(2728), [anon_sym_err_GT_PIPE] = ACTIONS(2728), @@ -130880,8 +130640,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), [anon_sym_RPAREN] = ACTIONS(2728), [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2730), [anon_sym_and2] = ACTIONS(2728), [anon_sym_xor2] = ACTIONS(2728), [anon_sym_or2] = ACTIONS(2728), @@ -130901,14 +130661,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2728), [anon_sym_like2] = ACTIONS(2728), [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2730), + [anon_sym_mod2] = ACTIONS(2728), + [anon_sym_SLASH_SLASH2] = ACTIONS(2728), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), [anon_sym_bit_DASHand2] = ACTIONS(2728), [anon_sym_bit_DASHxor2] = ACTIONS(2728), [anon_sym_bit_DASHor2] = ACTIONS(2728), @@ -130930,76 +130690,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1140)] = { - [sym_comment] = STATE(1140), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [STATE(1136)] = { + [aux_sym__repeat_newline] = STATE(1133), + [sym_comment] = STATE(1136), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1141)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1141), + [STATE(1137)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1137), [anon_sym_in] = ACTIONS(2732), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), @@ -131014,8 +130774,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2732), + [anon_sym_STAR2] = ACTIONS(2734), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), @@ -131035,14 +130795,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2732), [anon_sym_like2] = ACTIONS(2732), [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2734), + [anon_sym_mod2] = ACTIONS(2732), + [anon_sym_SLASH_SLASH2] = ACTIONS(2732), + [anon_sym_PLUS2] = ACTIONS(2734), + [anon_sym_bit_DASHshl2] = ACTIONS(2732), + [anon_sym_bit_DASHshr2] = ACTIONS(2732), [anon_sym_bit_DASHand2] = ACTIONS(2732), [anon_sym_bit_DASHxor2] = ACTIONS(2732), [anon_sym_bit_DASHor2] = ACTIONS(2732), @@ -131064,78 +130824,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1142)] = { - [sym_comment] = STATE(1142), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [STATE(1138)] = { + [sym_comment] = STATE(1138), + [anon_sym_in] = ACTIONS(2576), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2578), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2576), + [anon_sym_xor2] = ACTIONS(2576), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2576), + [anon_sym_has2] = ACTIONS(2576), + [anon_sym_not_DASHhas2] = ACTIONS(2576), + [anon_sym_starts_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2576), + [anon_sym_ends_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2576), + [anon_sym_EQ_EQ2] = ACTIONS(2576), + [anon_sym_BANG_EQ2] = ACTIONS(2576), + [anon_sym_LT2] = ACTIONS(2578), + [anon_sym_LT_EQ2] = ACTIONS(2576), + [anon_sym_GT_EQ2] = ACTIONS(2576), + [anon_sym_EQ_TILDE2] = ACTIONS(2576), + [anon_sym_BANG_TILDE2] = ACTIONS(2576), + [anon_sym_like2] = ACTIONS(2576), + [anon_sym_not_DASHlike2] = ACTIONS(2576), + [anon_sym_STAR_STAR2] = ACTIONS(2794), + [anon_sym_PLUS_PLUS2] = ACTIONS(2794), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2796), + [anon_sym_SLASH_SLASH2] = ACTIONS(2796), + [anon_sym_PLUS2] = ACTIONS(2798), + [anon_sym_bit_DASHshl2] = ACTIONS(2800), + [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_bit_DASHand2] = ACTIONS(2576), + [anon_sym_bit_DASHxor2] = ACTIONS(2576), + [anon_sym_bit_DASHor2] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1143)] = { - [aux_sym__repeat_newline] = STATE(1131), - [sym_comment] = STATE(1143), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), + [STATE(1139)] = { + [aux_sym__repeat_newline] = STATE(1191), + [sym_comment] = STATE(1139), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2841), [anon_sym_SEMI] = ACTIONS(2728), [anon_sym_PIPE] = ACTIONS(2728), [anon_sym_err_GT_PIPE] = ACTIONS(2728), @@ -131147,39 +130907,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), [anon_sym_and2] = ACTIONS(2728), [anon_sym_xor2] = ACTIONS(2728), [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2831), [anon_sym_err_GT] = ACTIONS(2730), [anon_sym_out_GT] = ACTIONS(2730), [anon_sym_e_GT] = ACTIONS(2730), @@ -131198,144 +130958,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1144)] = { - [sym_comment] = STATE(1144), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [STATE(1140)] = { + [aux_sym__repeat_newline] = STATE(1137), + [sym_comment] = STATE(1140), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1145)] = { - [sym_comment] = STATE(1145), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [STATE(1141)] = { + [sym_comment] = STATE(1141), + [ts_builtin_sym_end] = ACTIONS(2110), + [anon_sym_in] = ACTIONS(2110), + [sym__newline] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_err_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_GT_PIPE] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2110), + [anon_sym_GT2] = ACTIONS(2112), + [anon_sym_DASH2] = ACTIONS(2110), + [anon_sym_STAR2] = ACTIONS(2112), + [anon_sym_and2] = ACTIONS(2110), + [anon_sym_xor2] = ACTIONS(2110), + [anon_sym_or2] = ACTIONS(2110), + [anon_sym_not_DASHin2] = ACTIONS(2110), + [anon_sym_has2] = ACTIONS(2110), + [anon_sym_not_DASHhas2] = ACTIONS(2110), + [anon_sym_starts_DASHwith2] = ACTIONS(2110), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2110), + [anon_sym_ends_DASHwith2] = ACTIONS(2110), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2110), + [anon_sym_EQ_EQ2] = ACTIONS(2110), + [anon_sym_BANG_EQ2] = ACTIONS(2110), + [anon_sym_LT2] = ACTIONS(2112), + [anon_sym_LT_EQ2] = ACTIONS(2110), + [anon_sym_GT_EQ2] = ACTIONS(2110), + [anon_sym_EQ_TILDE2] = ACTIONS(2110), + [anon_sym_BANG_TILDE2] = ACTIONS(2110), + [anon_sym_like2] = ACTIONS(2110), + [anon_sym_not_DASHlike2] = ACTIONS(2110), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_STAR_STAR2] = ACTIONS(2110), + [anon_sym_PLUS_PLUS2] = ACTIONS(2110), + [anon_sym_SLASH2] = ACTIONS(2112), + [anon_sym_mod2] = ACTIONS(2110), + [anon_sym_SLASH_SLASH2] = ACTIONS(2110), + [anon_sym_PLUS2] = ACTIONS(2112), + [anon_sym_bit_DASHshl2] = ACTIONS(2110), + [anon_sym_bit_DASHshr2] = ACTIONS(2110), + [anon_sym_bit_DASHand2] = ACTIONS(2110), + [anon_sym_bit_DASHxor2] = ACTIONS(2110), + [anon_sym_bit_DASHor2] = ACTIONS(2110), + [anon_sym_err_GT] = ACTIONS(2112), + [anon_sym_out_GT] = ACTIONS(2112), + [anon_sym_e_GT] = ACTIONS(2112), + [anon_sym_o_GT] = ACTIONS(2112), + [anon_sym_err_PLUSout_GT] = ACTIONS(2112), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2112), + [anon_sym_o_PLUSe_GT] = ACTIONS(2112), + [anon_sym_e_PLUSo_GT] = ACTIONS(2112), + [anon_sym_err_GT_GT] = ACTIONS(2110), + [anon_sym_out_GT_GT] = ACTIONS(2110), + [anon_sym_e_GT_GT] = ACTIONS(2110), + [anon_sym_o_GT_GT] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2110), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1146)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1146), - [anon_sym_in] = ACTIONS(2732), + [STATE(1142)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1142), + [anon_sym_in] = ACTIONS(2847), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -131348,39 +131108,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2732), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2734), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), + [anon_sym_bit_DASHor2] = ACTIONS(2865), [anon_sym_err_GT] = ACTIONS(2734), [anon_sym_out_GT] = ACTIONS(2734), [anon_sym_e_GT] = ACTIONS(2734), @@ -131399,78 +131159,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1147)] = { - [sym_comment] = STATE(1147), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [STATE(1143)] = { + [sym_comment] = STATE(1143), + [ts_builtin_sym_end] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [sym__newline] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_GT2] = ACTIONS(2070), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_STAR2] = ACTIONS(2070), + [anon_sym_and2] = ACTIONS(2068), + [anon_sym_xor2] = ACTIONS(2068), + [anon_sym_or2] = ACTIONS(2068), + [anon_sym_not_DASHin2] = ACTIONS(2068), + [anon_sym_has2] = ACTIONS(2068), + [anon_sym_not_DASHhas2] = ACTIONS(2068), + [anon_sym_starts_DASHwith2] = ACTIONS(2068), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2068), + [anon_sym_ends_DASHwith2] = ACTIONS(2068), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2068), + [anon_sym_EQ_EQ2] = ACTIONS(2068), + [anon_sym_BANG_EQ2] = ACTIONS(2068), + [anon_sym_LT2] = ACTIONS(2070), + [anon_sym_LT_EQ2] = ACTIONS(2068), + [anon_sym_GT_EQ2] = ACTIONS(2068), + [anon_sym_EQ_TILDE2] = ACTIONS(2068), + [anon_sym_BANG_TILDE2] = ACTIONS(2068), + [anon_sym_like2] = ACTIONS(2068), + [anon_sym_not_DASHlike2] = ACTIONS(2068), + [anon_sym_STAR_STAR2] = ACTIONS(2068), + [anon_sym_PLUS_PLUS2] = ACTIONS(2068), + [anon_sym_SLASH2] = ACTIONS(2070), + [anon_sym_mod2] = ACTIONS(2068), + [anon_sym_SLASH_SLASH2] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2070), + [anon_sym_bit_DASHshl2] = ACTIONS(2068), + [anon_sym_bit_DASHshr2] = ACTIONS(2068), + [anon_sym_bit_DASHand2] = ACTIONS(2068), + [anon_sym_bit_DASHxor2] = ACTIONS(2068), + [anon_sym_bit_DASHor2] = ACTIONS(2068), + [anon_sym_LBRACK2] = ACTIONS(2867), + [anon_sym_err_GT] = ACTIONS(2070), + [anon_sym_out_GT] = ACTIONS(2070), + [anon_sym_e_GT] = ACTIONS(2070), + [anon_sym_o_GT] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT] = ACTIONS(2070), + [anon_sym_err_GT_GT] = ACTIONS(2068), + [anon_sym_out_GT_GT] = ACTIONS(2068), + [anon_sym_e_GT_GT] = ACTIONS(2068), + [anon_sym_o_GT_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2068), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1148)] = { - [aux_sym__repeat_newline] = STATE(1204), - [sym_comment] = STATE(1148), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), + [STATE(1144)] = { + [aux_sym__repeat_newline] = STATE(1193), + [sym_comment] = STATE(1144), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2841), [anon_sym_SEMI] = ACTIONS(2728), [anon_sym_PIPE] = ACTIONS(2728), [anon_sym_err_GT_PIPE] = ACTIONS(2728), @@ -131482,39 +131242,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2730), - [anon_sym_and2] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2869), [anon_sym_xor2] = ACTIONS(2728), [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2730), - [anon_sym_mod2] = ACTIONS(2728), - [anon_sym_SLASH_SLASH2] = ACTIONS(2728), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2831), [anon_sym_err_GT] = ACTIONS(2730), [anon_sym_out_GT] = ACTIONS(2730), [anon_sym_e_GT] = ACTIONS(2730), @@ -131533,66 +131293,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1149)] = { - [sym__ctrl_match_body] = STATE(4904), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), - [sym_comment] = STATE(1149), + [STATE(1145)] = { + [sym__ctrl_match_body] = STATE(4899), + [sym_match_arm] = STATE(4388), + [sym_default_arm] = STATE(4388), + [sym_match_pattern] = STATE(4984), + [sym__match_pattern] = STATE(3767), + [sym__match_pattern_expression] = STATE(4302), + [sym__match_pattern_value] = STATE(4076), + [sym__match_pattern_list] = STATE(4274), + [sym__match_pattern_record] = STATE(4284), + [sym_expr_parenthesized] = STATE(3727), + [sym_val_range] = STATE(4076), + [sym__val_range] = STATE(4927), + [sym_val_nothing] = STATE(4284), + [sym_val_bool] = STATE(4026), + [sym_val_variable] = STATE(3627), + [sym_val_number] = STATE(4284), + [sym__val_number_decimal] = STATE(3488), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(4284), + [sym_val_filesize] = STATE(4284), + [sym_val_binary] = STATE(4284), + [sym_val_string] = STATE(4284), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_table] = STATE(4284), + [sym_unquoted] = STATE(4082), + [sym__unquoted_anonymous_prefix] = STATE(4927), + [sym_comment] = STATE(1145), [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2882), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), + [aux_sym__ctrl_match_body_repeat1] = STATE(1368), + [anon_sym_true] = ACTIONS(2871), + [anon_sym_false] = ACTIONS(2871), + [anon_sym_null] = ACTIONS(2873), + [aux_sym_cmd_identifier_token3] = ACTIONS(2875), + [aux_sym_cmd_identifier_token4] = ACTIONS(2875), + [aux_sym_cmd_identifier_token5] = ACTIONS(2875), + [sym__newline] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_LPAREN] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(2881), + [anon_sym_LBRACE] = ACTIONS(2883), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym__] = ACTIONS(2887), + [anon_sym_DOT_DOT] = ACTIONS(2889), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), + [anon_sym_DOT_DOT_LT] = ACTIONS(2891), + [aux_sym__val_number_decimal_token1] = ACTIONS(2893), + [aux_sym__val_number_decimal_token2] = ACTIONS(2895), + [aux_sym__val_number_decimal_token3] = ACTIONS(2897), + [aux_sym__val_number_decimal_token4] = ACTIONS(2897), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), + [sym_val_date] = ACTIONS(2899), [anon_sym_DQUOTE] = ACTIONS(1786), [anon_sym_SQUOTE] = ACTIONS(1788), [anon_sym_BQUOTE] = ACTIONS(1790), @@ -131600,10 +131360,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(1150)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1150), - [anon_sym_in] = ACTIONS(2732), + [STATE(1146)] = { + [sym__ctrl_match_body] = STATE(4919), + [sym_match_arm] = STATE(4388), + [sym_default_arm] = STATE(4388), + [sym_match_pattern] = STATE(4984), + [sym__match_pattern] = STATE(3767), + [sym__match_pattern_expression] = STATE(4302), + [sym__match_pattern_value] = STATE(4076), + [sym__match_pattern_list] = STATE(4274), + [sym__match_pattern_record] = STATE(4284), + [sym_expr_parenthesized] = STATE(3727), + [sym_val_range] = STATE(4076), + [sym__val_range] = STATE(4927), + [sym_val_nothing] = STATE(4284), + [sym_val_bool] = STATE(4026), + [sym_val_variable] = STATE(3627), + [sym_val_number] = STATE(4284), + [sym__val_number_decimal] = STATE(3488), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(4284), + [sym_val_filesize] = STATE(4284), + [sym_val_binary] = STATE(4284), + [sym_val_string] = STATE(4284), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_table] = STATE(4284), + [sym_unquoted] = STATE(4082), + [sym__unquoted_anonymous_prefix] = STATE(4927), + [sym_comment] = STATE(1146), + [aux_sym__types_body_repeat1] = STATE(1347), + [aux_sym__ctrl_match_body_repeat1] = STATE(1368), + [anon_sym_true] = ACTIONS(2871), + [anon_sym_false] = ACTIONS(2871), + [anon_sym_null] = ACTIONS(2873), + [aux_sym_cmd_identifier_token3] = ACTIONS(2875), + [aux_sym_cmd_identifier_token4] = ACTIONS(2875), + [aux_sym_cmd_identifier_token5] = ACTIONS(2875), + [sym__newline] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_LPAREN] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(2881), + [anon_sym_LBRACE] = ACTIONS(2883), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym__] = ACTIONS(2887), + [anon_sym_DOT_DOT] = ACTIONS(2889), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), + [anon_sym_DOT_DOT_LT] = ACTIONS(2891), + [aux_sym__val_number_decimal_token1] = ACTIONS(2893), + [aux_sym__val_number_decimal_token2] = ACTIONS(2895), + [aux_sym__val_number_decimal_token3] = ACTIONS(2897), + [aux_sym__val_number_decimal_token4] = ACTIONS(2897), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2899), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), + }, + [STATE(1147)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1147), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_err_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_GT_PIPE] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2670), + [anon_sym_xor2] = ACTIONS(2670), + [anon_sym_or2] = ACTIONS(2670), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), + [anon_sym_bit_DASHor2] = ACTIONS(2865), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2670), + [anon_sym_out_GT_GT] = ACTIONS(2670), + [anon_sym_e_GT_GT] = ACTIONS(2670), + [anon_sym_o_GT_GT] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1148)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1148), + [anon_sym_in] = ACTIONS(2847), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -131616,39 +131510,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2732), - [anon_sym_STAR2] = ACTIONS(2734), - [anon_sym_and2] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2903), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2734), - [anon_sym_mod2] = ACTIONS(2732), - [anon_sym_SLASH_SLASH2] = ACTIONS(2732), - [anon_sym_PLUS2] = ACTIONS(2734), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), + [anon_sym_bit_DASHor2] = ACTIONS(2865), [anon_sym_err_GT] = ACTIONS(2734), [anon_sym_out_GT] = ACTIONS(2734), [anon_sym_e_GT] = ACTIONS(2734), @@ -131667,547 +131561,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1151)] = { - [sym__ctrl_match_body] = STATE(4907), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), - [sym_comment] = STATE(1151), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(1152)] = { - [aux_sym__repeat_newline] = STATE(1206), - [sym_comment] = STATE(1152), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [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(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1153)] = { - [sym_comment] = STATE(1153), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1154)] = { - [aux_sym__repeat_newline] = STATE(1150), - [sym_comment] = STATE(1154), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2714), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2714), - [anon_sym_mod2] = ACTIONS(2712), - [anon_sym_SLASH_SLASH2] = ACTIONS(2712), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1155)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1155), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1156)] = { - [aux_sym__repeat_newline] = STATE(1213), - [sym_comment] = STATE(1156), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1157)] = { - [aux_sym__repeat_newline] = STATE(1208), - [sym_comment] = STATE(1157), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [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(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1158)] = { - [aux_sym__repeat_newline] = STATE(1214), - [sym_comment] = STATE(1158), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1159)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1159), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), + [STATE(1149)] = { + [aux_sym__repeat_newline] = STATE(1142), + [sym_comment] = STATE(1149), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2706), [anon_sym_PIPE] = ACTIONS(2706), [anon_sym_err_GT_PIPE] = ACTIONS(2706), @@ -132219,39 +131577,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), [anon_sym_and2] = ACTIONS(2706), [anon_sym_xor2] = ACTIONS(2706), [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2831), [anon_sym_err_GT] = ACTIONS(2708), [anon_sym_out_GT] = ACTIONS(2708), [anon_sym_e_GT] = ACTIONS(2708), @@ -132270,145 +131628,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1160)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1160), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1161)] = { - [aux_sym__repeat_newline] = STATE(1155), - [sym_comment] = STATE(1161), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1162)] = { - [aux_sym__repeat_newline] = STATE(1210), - [sym_comment] = STATE(1162), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), + [STATE(1150)] = { + [aux_sym__repeat_newline] = STATE(1195), + [sym_comment] = STATE(1150), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2905), [anon_sym_SEMI] = ACTIONS(2728), [anon_sym_PIPE] = ACTIONS(2728), [anon_sym_err_GT_PIPE] = ACTIONS(2728), @@ -132420,39 +131644,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2869), + [anon_sym_xor2] = ACTIONS(2907), [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2831), [anon_sym_err_GT] = ACTIONS(2730), [anon_sym_out_GT] = ACTIONS(2730), [anon_sym_e_GT] = ACTIONS(2730), @@ -132471,144 +131695,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1163)] = { - [sym_comment] = STATE(1163), - [ts_builtin_sym_end] = ACTIONS(2501), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1164)] = { - [aux_sym__repeat_newline] = STATE(1160), - [sym_comment] = STATE(1164), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [STATE(1151)] = { + [sym_comment] = STATE(1151), + [anon_sym_in] = ACTIONS(2576), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2578), + [anon_sym_DASH2] = ACTIONS(2576), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2576), + [anon_sym_xor2] = ACTIONS(2576), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2576), + [anon_sym_has2] = ACTIONS(2576), + [anon_sym_not_DASHhas2] = ACTIONS(2576), + [anon_sym_starts_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2576), + [anon_sym_ends_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2576), + [anon_sym_EQ_EQ2] = ACTIONS(2576), + [anon_sym_BANG_EQ2] = ACTIONS(2576), + [anon_sym_LT2] = ACTIONS(2578), + [anon_sym_LT_EQ2] = ACTIONS(2576), + [anon_sym_GT_EQ2] = ACTIONS(2576), + [anon_sym_EQ_TILDE2] = ACTIONS(2576), + [anon_sym_BANG_TILDE2] = ACTIONS(2576), + [anon_sym_like2] = ACTIONS(2576), + [anon_sym_not_DASHlike2] = ACTIONS(2576), + [anon_sym_STAR_STAR2] = ACTIONS(2794), + [anon_sym_PLUS_PLUS2] = ACTIONS(2794), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2796), + [anon_sym_SLASH_SLASH2] = ACTIONS(2796), + [anon_sym_PLUS2] = ACTIONS(2578), + [anon_sym_bit_DASHshl2] = ACTIONS(2576), + [anon_sym_bit_DASHshr2] = ACTIONS(2576), + [anon_sym_bit_DASHand2] = ACTIONS(2576), + [anon_sym_bit_DASHxor2] = ACTIONS(2576), + [anon_sym_bit_DASHor2] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1165)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1165), - [anon_sym_in] = ACTIONS(2788), + [STATE(1152)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1152), + [anon_sym_in] = ACTIONS(2847), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -132621,39 +131778,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2903), + [anon_sym_xor2] = ACTIONS(2909), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), + [anon_sym_bit_DASHor2] = ACTIONS(2865), [anon_sym_err_GT] = ACTIONS(2734), [anon_sym_out_GT] = ACTIONS(2734), [anon_sym_e_GT] = ACTIONS(2734), @@ -132672,78 +131829,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1166)] = { - [sym_comment] = STATE(1166), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_err_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_GT_PIPE] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_err_GT] = ACTIONS(2278), - [anon_sym_out_GT] = ACTIONS(2278), - [anon_sym_e_GT] = ACTIONS(2278), - [anon_sym_o_GT] = ACTIONS(2278), - [anon_sym_err_PLUSout_GT] = ACTIONS(2278), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), - [anon_sym_o_PLUSe_GT] = ACTIONS(2278), - [anon_sym_e_PLUSo_GT] = ACTIONS(2278), - [anon_sym_err_GT_GT] = ACTIONS(2276), - [anon_sym_out_GT_GT] = ACTIONS(2276), - [anon_sym_e_GT_GT] = ACTIONS(2276), - [anon_sym_o_GT_GT] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), + [STATE(1153)] = { + [aux_sym__repeat_newline] = STATE(1214), + [sym_comment] = STATE(1153), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2869), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2831), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1167)] = { - [aux_sym__repeat_newline] = STATE(1212), - [sym_comment] = STATE(1167), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), + [STATE(1154)] = { + [aux_sym__repeat_newline] = STATE(1197), + [sym_comment] = STATE(1154), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2841), [anon_sym_SEMI] = ACTIONS(2728), [anon_sym_PIPE] = ACTIONS(2728), [anon_sym_err_GT_PIPE] = ACTIONS(2728), @@ -132755,36 +131912,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), [anon_sym_and2] = ACTIONS(2728), [anon_sym_xor2] = ACTIONS(2728), [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), [anon_sym_EQ_TILDE2] = ACTIONS(2728), [anon_sym_BANG_TILDE2] = ACTIONS(2728), [anon_sym_like2] = ACTIONS(2728), [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), [anon_sym_bit_DASHand2] = ACTIONS(2728), [anon_sym_bit_DASHxor2] = ACTIONS(2728), [anon_sym_bit_DASHor2] = ACTIONS(2728), @@ -132806,144 +131963,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1168)] = { - [aux_sym__repeat_newline] = STATE(1219), - [sym_comment] = STATE(1168), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2704), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2704), - [anon_sym_mod2] = ACTIONS(2702), - [anon_sym_SLASH_SLASH2] = ACTIONS(2702), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [STATE(1155)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1155), + [anon_sym_in] = ACTIONS(2670), + [sym__newline] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_err_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_GT_PIPE] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2670), + [anon_sym_xor2] = ACTIONS(2670), + [anon_sym_or2] = ACTIONS(2670), + [anon_sym_not_DASHin2] = ACTIONS(2670), + [anon_sym_has2] = ACTIONS(2670), + [anon_sym_not_DASHhas2] = ACTIONS(2670), + [anon_sym_starts_DASHwith2] = ACTIONS(2670), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), + [anon_sym_ends_DASHwith2] = ACTIONS(2670), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2670), + [anon_sym_BANG_TILDE2] = ACTIONS(2670), + [anon_sym_like2] = ACTIONS(2670), + [anon_sym_not_DASHlike2] = ACTIONS(2670), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2670), + [anon_sym_bit_DASHxor2] = ACTIONS(2670), + [anon_sym_bit_DASHor2] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2670), + [anon_sym_out_GT_GT] = ACTIONS(2670), + [anon_sym_e_GT_GT] = ACTIONS(2670), + [anon_sym_o_GT_GT] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1169)] = { - [sym_comment] = STATE(1169), - [ts_builtin_sym_end] = ACTIONS(2128), - [anon_sym_in] = ACTIONS(2128), - [sym__newline] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_err_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_GT_PIPE] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), - [anon_sym_GT2] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_STAR2] = ACTIONS(2130), - [anon_sym_and2] = ACTIONS(2128), - [anon_sym_xor2] = ACTIONS(2128), - [anon_sym_or2] = ACTIONS(2128), - [anon_sym_not_DASHin2] = ACTIONS(2128), - [anon_sym_has2] = ACTIONS(2128), - [anon_sym_not_DASHhas2] = ACTIONS(2128), - [anon_sym_starts_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2128), - [anon_sym_ends_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2128), - [anon_sym_EQ_EQ2] = ACTIONS(2128), - [anon_sym_BANG_EQ2] = ACTIONS(2128), - [anon_sym_LT2] = ACTIONS(2130), - [anon_sym_LT_EQ2] = ACTIONS(2128), - [anon_sym_GT_EQ2] = ACTIONS(2128), - [anon_sym_EQ_TILDE2] = ACTIONS(2128), - [anon_sym_BANG_TILDE2] = ACTIONS(2128), - [anon_sym_like2] = ACTIONS(2128), - [anon_sym_not_DASHlike2] = ACTIONS(2128), - [anon_sym_STAR_STAR2] = ACTIONS(2128), - [anon_sym_PLUS_PLUS2] = ACTIONS(2128), - [anon_sym_SLASH2] = ACTIONS(2130), - [anon_sym_mod2] = ACTIONS(2128), - [anon_sym_SLASH_SLASH2] = ACTIONS(2128), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_bit_DASHshl2] = ACTIONS(2128), - [anon_sym_bit_DASHshr2] = ACTIONS(2128), - [anon_sym_bit_DASHand2] = ACTIONS(2128), - [anon_sym_bit_DASHxor2] = ACTIONS(2128), - [anon_sym_bit_DASHor2] = ACTIONS(2128), - [anon_sym_LBRACK2] = ACTIONS(2920), - [anon_sym_err_GT] = ACTIONS(2130), - [anon_sym_out_GT] = ACTIONS(2130), - [anon_sym_e_GT] = ACTIONS(2130), - [anon_sym_o_GT] = ACTIONS(2130), - [anon_sym_err_PLUSout_GT] = ACTIONS(2130), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), - [anon_sym_o_PLUSe_GT] = ACTIONS(2130), - [anon_sym_e_PLUSo_GT] = ACTIONS(2130), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), - [anon_sym_POUND] = ACTIONS(3), + [STATE(1156)] = { + [sym__expression] = STATE(4685), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_comment] = STATE(1156), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2630), + [aux_sym_cmd_identifier_token3] = ACTIONS(2632), + [aux_sym_cmd_identifier_token4] = ACTIONS(2632), + [aux_sym_cmd_identifier_token5] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(2636), + [aux_sym__val_number_decimal_token4] = ACTIONS(2636), + [aux_sym__val_number_token1] = ACTIONS(2632), + [aux_sym__val_number_token2] = ACTIONS(2632), + [aux_sym__val_number_token3] = ACTIONS(2632), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2638), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1170)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1170), - [anon_sym_in] = ACTIONS(2788), + [STATE(1157)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1157), + [anon_sym_in] = ACTIONS(2847), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -132956,36 +132113,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), [anon_sym_EQ_TILDE2] = ACTIONS(2732), [anon_sym_BANG_TILDE2] = ACTIONS(2732), [anon_sym_like2] = ACTIONS(2732), [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), [anon_sym_bit_DASHand2] = ACTIONS(2732), [anon_sym_bit_DASHxor2] = ACTIONS(2732), [anon_sym_bit_DASHor2] = ACTIONS(2732), @@ -133007,145 +132164,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1171)] = { - [aux_sym__repeat_newline] = STATE(1165), - [sym_comment] = STATE(1171), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1172)] = { - [sym_comment] = STATE(1172), - [ts_builtin_sym_end] = ACTIONS(2635), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1173)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1173), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), + [STATE(1158)] = { + [aux_sym__repeat_newline] = STATE(1148), + [sym_comment] = STATE(1158), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2706), [anon_sym_PIPE] = ACTIONS(2706), [anon_sym_err_GT_PIPE] = ACTIONS(2706), @@ -133157,39 +132180,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2708), - [anon_sym_and2] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2869), [anon_sym_xor2] = ACTIONS(2706), [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2708), - [anon_sym_mod2] = ACTIONS(2706), - [anon_sym_SLASH_SLASH2] = ACTIONS(2706), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2831), [anon_sym_err_GT] = ACTIONS(2708), [anon_sym_out_GT] = ACTIONS(2708), [anon_sym_e_GT] = ACTIONS(2708), @@ -133208,78 +132231,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1174)] = { - [aux_sym__repeat_newline] = STATE(1170), - [sym_comment] = STATE(1174), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [STATE(1159)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1159), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_err_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_GT_PIPE] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2903), + [anon_sym_xor2] = ACTIONS(2670), + [anon_sym_or2] = ACTIONS(2670), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), + [anon_sym_bit_DASHor2] = ACTIONS(2865), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2670), + [anon_sym_out_GT_GT] = ACTIONS(2670), + [anon_sym_e_GT_GT] = ACTIONS(2670), + [anon_sym_o_GT_GT] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1175)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1175), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), + [STATE(1160)] = { + [sym_comment] = STATE(1160), + [anon_sym_in] = ACTIONS(2576), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2578), + [anon_sym_DASH2] = ACTIONS(2576), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2578), + [anon_sym_and2] = ACTIONS(2576), + [anon_sym_xor2] = ACTIONS(2576), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2576), + [anon_sym_has2] = ACTIONS(2576), + [anon_sym_not_DASHhas2] = ACTIONS(2576), + [anon_sym_starts_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2576), + [anon_sym_ends_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2576), + [anon_sym_EQ_EQ2] = ACTIONS(2576), + [anon_sym_BANG_EQ2] = ACTIONS(2576), + [anon_sym_LT2] = ACTIONS(2578), + [anon_sym_LT_EQ2] = ACTIONS(2576), + [anon_sym_GT_EQ2] = ACTIONS(2576), + [anon_sym_EQ_TILDE2] = ACTIONS(2576), + [anon_sym_BANG_TILDE2] = ACTIONS(2576), + [anon_sym_like2] = ACTIONS(2576), + [anon_sym_not_DASHlike2] = ACTIONS(2576), + [anon_sym_STAR_STAR2] = ACTIONS(2794), + [anon_sym_PLUS_PLUS2] = ACTIONS(2794), + [anon_sym_SLASH2] = ACTIONS(2578), + [anon_sym_mod2] = ACTIONS(2576), + [anon_sym_SLASH_SLASH2] = ACTIONS(2576), + [anon_sym_PLUS2] = ACTIONS(2578), + [anon_sym_bit_DASHshl2] = ACTIONS(2576), + [anon_sym_bit_DASHshr2] = ACTIONS(2576), + [anon_sym_bit_DASHand2] = ACTIONS(2576), + [anon_sym_bit_DASHxor2] = ACTIONS(2576), + [anon_sym_bit_DASHor2] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1161)] = { + [aux_sym__repeat_newline] = STATE(1216), + [sym_comment] = STATE(1161), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2869), + [anon_sym_xor2] = ACTIONS(2907), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2831), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1162)] = { + [aux_sym__repeat_newline] = STATE(1152), + [sym_comment] = STATE(1162), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2905), [anon_sym_SEMI] = ACTIONS(2706), [anon_sym_PIPE] = ACTIONS(2706), [anon_sym_err_GT_PIPE] = ACTIONS(2706), @@ -133291,39 +132448,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2869), + [anon_sym_xor2] = ACTIONS(2907), [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2831), [anon_sym_err_GT] = ACTIONS(2708), [anon_sym_out_GT] = ACTIONS(2708), [anon_sym_e_GT] = ACTIONS(2708), @@ -133342,78 +132499,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1176)] = { - [aux_sym__repeat_newline] = STATE(1243), - [sym_comment] = STATE(1176), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1177)] = { - [aux_sym__repeat_newline] = STATE(1216), - [sym_comment] = STATE(1177), + [STATE(1163)] = { + [aux_sym__repeat_newline] = STATE(1201), + [sym_comment] = STATE(1163), [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), + [sym__newline] = ACTIONS(2841), [anon_sym_SEMI] = ACTIONS(2728), [anon_sym_PIPE] = ACTIONS(2728), [anon_sym_err_GT_PIPE] = ACTIONS(2728), @@ -133426,8 +132516,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), [anon_sym_RPAREN] = ACTIONS(2728), [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), [anon_sym_and2] = ACTIONS(2728), [anon_sym_xor2] = ACTIONS(2728), [anon_sym_or2] = ACTIONS(2728), @@ -133447,12 +132537,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2728), [anon_sym_like2] = ACTIONS(2728), [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), [anon_sym_bit_DASHshl2] = ACTIONS(2728), [anon_sym_bit_DASHshr2] = ACTIONS(2728), [anon_sym_bit_DASHand2] = ACTIONS(2728), @@ -133476,76 +132566,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1178)] = { - [aux_sym__repeat_newline] = STATE(1238), - [sym_comment] = STATE(1178), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [STATE(1164)] = { + [sym_comment] = STATE(1164), + [anon_sym_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2576), + [anon_sym_xor2] = ACTIONS(2576), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2790), + [anon_sym_BANG_EQ2] = ACTIONS(2790), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2790), + [anon_sym_GT_EQ2] = ACTIONS(2790), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2794), + [anon_sym_PLUS_PLUS2] = ACTIONS(2794), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2796), + [anon_sym_SLASH_SLASH2] = ACTIONS(2796), + [anon_sym_PLUS2] = ACTIONS(2798), + [anon_sym_bit_DASHshl2] = ACTIONS(2800), + [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2911), + [anon_sym_bit_DASHor2] = ACTIONS(2913), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1179)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1179), + [STATE(1165)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1165), [anon_sym_in] = ACTIONS(2732), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), @@ -133560,8 +132650,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), @@ -133581,12 +132671,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2732), [anon_sym_like2] = ACTIONS(2732), [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), [anon_sym_bit_DASHshl2] = ACTIONS(2732), [anon_sym_bit_DASHshr2] = ACTIONS(2732), [anon_sym_bit_DASHand2] = ACTIONS(2732), @@ -133610,78 +132700,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1180)] = { - [aux_sym__repeat_newline] = STATE(1224), - [sym_comment] = STATE(1180), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [STATE(1166)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1166), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_err_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_GT_PIPE] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2903), + [anon_sym_xor2] = ACTIONS(2909), + [anon_sym_or2] = ACTIONS(2670), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), + [anon_sym_bit_DASHor2] = ACTIONS(2865), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2670), + [anon_sym_out_GT_GT] = ACTIONS(2670), + [anon_sym_e_GT_GT] = ACTIONS(2670), + [anon_sym_o_GT_GT] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1181)] = { - [aux_sym__repeat_newline] = STATE(1218), - [sym_comment] = STATE(1181), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), + [STATE(1167)] = { + [aux_sym__repeat_newline] = STATE(1262), + [sym_comment] = STATE(1167), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2841), [anon_sym_SEMI] = ACTIONS(2728), [anon_sym_PIPE] = ACTIONS(2728), [anon_sym_err_GT_PIPE] = ACTIONS(2728), @@ -133693,36 +132783,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), [anon_sym_and2] = ACTIONS(2728), [anon_sym_xor2] = ACTIONS(2728), [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), [anon_sym_bit_DASHand2] = ACTIONS(2728), [anon_sym_bit_DASHxor2] = ACTIONS(2728), [anon_sym_bit_DASHor2] = ACTIONS(2728), @@ -133744,78 +132834,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1182)] = { - [aux_sym__repeat_newline] = STATE(1244), - [sym_comment] = STATE(1182), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1183)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1183), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), + [STATE(1168)] = { + [aux_sym__repeat_newline] = STATE(1157), + [sym_comment] = STATE(1168), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2706), [anon_sym_PIPE] = ACTIONS(2706), [anon_sym_err_GT_PIPE] = ACTIONS(2706), @@ -133827,36 +132850,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), [anon_sym_and2] = ACTIONS(2706), [anon_sym_xor2] = ACTIONS(2706), [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), [anon_sym_EQ_TILDE2] = ACTIONS(2706), [anon_sym_BANG_TILDE2] = ACTIONS(2706), [anon_sym_like2] = ACTIONS(2706), [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), [anon_sym_bit_DASHand2] = ACTIONS(2706), [anon_sym_bit_DASHxor2] = ACTIONS(2706), [anon_sym_bit_DASHor2] = ACTIONS(2706), @@ -133878,10 +132901,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1184)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1184), - [anon_sym_in] = ACTIONS(2788), + [STATE(1169)] = { + [sym_comment] = STATE(1169), + [anon_sym_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2915), + [anon_sym_xor2] = ACTIONS(2576), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2790), + [anon_sym_BANG_EQ2] = ACTIONS(2790), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2790), + [anon_sym_GT_EQ2] = ACTIONS(2790), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2794), + [anon_sym_PLUS_PLUS2] = ACTIONS(2794), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2796), + [anon_sym_SLASH_SLASH2] = ACTIONS(2796), + [anon_sym_PLUS2] = ACTIONS(2798), + [anon_sym_bit_DASHshl2] = ACTIONS(2800), + [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2911), + [anon_sym_bit_DASHor2] = ACTIONS(2913), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1170)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1170), + [anon_sym_in] = ACTIONS(2847), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -133894,36 +132984,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), [anon_sym_bit_DASHand2] = ACTIONS(2732), [anon_sym_bit_DASHxor2] = ACTIONS(2732), [anon_sym_bit_DASHor2] = ACTIONS(2732), @@ -133945,78 +133035,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1185)] = { - [aux_sym__repeat_newline] = STATE(1179), - [sym_comment] = STATE(1185), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [STATE(1171)] = { + [aux_sym__repeat_newline] = STATE(1218), + [sym_comment] = STATE(1171), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1186)] = { - [aux_sym__repeat_newline] = STATE(1227), - [sym_comment] = STATE(1186), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), + [STATE(1172)] = { + [aux_sym__repeat_newline] = STATE(1205), + [sym_comment] = STATE(1172), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2841), [anon_sym_SEMI] = ACTIONS(2728), [anon_sym_PIPE] = ACTIONS(2728), [anon_sym_err_GT_PIPE] = ACTIONS(2728), @@ -134028,37 +133118,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), [anon_sym_and2] = ACTIONS(2728), [anon_sym_xor2] = ACTIONS(2728), [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), [anon_sym_bit_DASHxor2] = ACTIONS(2728), [anon_sym_bit_DASHor2] = ACTIONS(2728), [anon_sym_err_GT] = ACTIONS(2730), @@ -134079,144 +133169,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1187)] = { - [aux_sym__repeat_newline] = STATE(1209), - [sym_comment] = STATE(1187), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1188)] = { - [aux_sym__repeat_newline] = STATE(1246), - [sym_comment] = STATE(1188), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [STATE(1173)] = { + [aux_sym__repeat_newline] = STATE(1200), + [sym_comment] = STATE(1173), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1189)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1189), - [anon_sym_in] = ACTIONS(2788), + [STATE(1174)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1174), + [anon_sym_in] = ACTIONS(2847), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -134229,37 +133252,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), [anon_sym_bit_DASHxor2] = ACTIONS(2732), [anon_sym_bit_DASHor2] = ACTIONS(2732), [anon_sym_err_GT] = ACTIONS(2734), @@ -134280,11 +133303,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1190)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1190), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), + [STATE(1175)] = { + [aux_sym__repeat_newline] = STATE(1165), + [sym_comment] = STATE(1175), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2706), [anon_sym_PIPE] = ACTIONS(2706), [anon_sym_err_GT_PIPE] = ACTIONS(2706), @@ -134296,39 +133319,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), [anon_sym_and2] = ACTIONS(2706), [anon_sym_xor2] = ACTIONS(2706), [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), [anon_sym_err_GT] = ACTIONS(2708), [anon_sym_out_GT] = ACTIONS(2708), [anon_sym_e_GT] = ACTIONS(2708), @@ -134347,11 +133370,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1191)] = { - [aux_sym__repeat_newline] = STATE(1229), - [sym_comment] = STATE(1191), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), + [STATE(1176)] = { + [aux_sym__repeat_newline] = STATE(1207), + [sym_comment] = STATE(1176), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2841), [anon_sym_SEMI] = ACTIONS(2728), [anon_sym_PIPE] = ACTIONS(2728), [anon_sym_err_GT_PIPE] = ACTIONS(2728), @@ -134363,38 +133386,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), [anon_sym_and2] = ACTIONS(2728), [anon_sym_xor2] = ACTIONS(2728), [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), [anon_sym_bit_DASHor2] = ACTIONS(2728), [anon_sym_err_GT] = ACTIONS(2730), [anon_sym_out_GT] = ACTIONS(2730), @@ -134414,144 +133437,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1192)] = { - [aux_sym__repeat_newline] = STATE(1184), - [sym_comment] = STATE(1192), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1193)] = { - [aux_sym__repeat_newline] = STATE(1215), - [sym_comment] = STATE(1193), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [STATE(1177)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1177), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_err_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_GT_PIPE] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2670), + [anon_sym_xor2] = ACTIONS(2670), + [anon_sym_or2] = ACTIONS(2670), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2670), + [anon_sym_BANG_TILDE2] = ACTIONS(2670), + [anon_sym_like2] = ACTIONS(2670), + [anon_sym_not_DASHlike2] = ACTIONS(2670), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2670), + [anon_sym_bit_DASHxor2] = ACTIONS(2670), + [anon_sym_bit_DASHor2] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2670), + [anon_sym_out_GT_GT] = ACTIONS(2670), + [anon_sym_e_GT_GT] = ACTIONS(2670), + [anon_sym_o_GT_GT] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1194)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1194), - [anon_sym_in] = ACTIONS(2788), + [STATE(1178)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1178), + [anon_sym_in] = ACTIONS(2847), [sym__newline] = ACTIONS(2732), [anon_sym_SEMI] = ACTIONS(2732), [anon_sym_PIPE] = ACTIONS(2732), @@ -134564,38 +133520,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), [anon_sym_and2] = ACTIONS(2732), [anon_sym_xor2] = ACTIONS(2732), [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), [anon_sym_bit_DASHor2] = ACTIONS(2732), [anon_sym_err_GT] = ACTIONS(2734), [anon_sym_out_GT] = ACTIONS(2734), @@ -134615,78 +133571,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1195)] = { - [aux_sym__repeat_newline] = STATE(1189), - [sym_comment] = STATE(1195), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1196)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1196), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), + [STATE(1179)] = { + [aux_sym__repeat_newline] = STATE(1170), + [sym_comment] = STATE(1179), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2706), [anon_sym_PIPE] = ACTIONS(2706), [anon_sym_err_GT_PIPE] = ACTIONS(2706), @@ -134698,37 +133587,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), [anon_sym_and2] = ACTIONS(2706), [anon_sym_xor2] = ACTIONS(2706), [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1180)] = { + [sym_comment] = STATE(1180), + [anon_sym_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2915), + [anon_sym_xor2] = ACTIONS(2917), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2790), + [anon_sym_BANG_EQ2] = ACTIONS(2790), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2790), + [anon_sym_GT_EQ2] = ACTIONS(2790), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2794), + [anon_sym_PLUS_PLUS2] = ACTIONS(2794), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2796), + [anon_sym_SLASH_SLASH2] = ACTIONS(2796), [anon_sym_PLUS2] = ACTIONS(2798), [anon_sym_bit_DASHshl2] = ACTIONS(2800), [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2911), + [anon_sym_bit_DASHor2] = ACTIONS(2913), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1181)] = { + [aux_sym__repeat_newline] = STATE(1174), + [sym_comment] = STATE(1181), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), [anon_sym_bit_DASHxor2] = ACTIONS(2706), [anon_sym_bit_DASHor2] = ACTIONS(2706), [anon_sym_err_GT] = ACTIONS(2708), @@ -134749,76 +133772,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1197)] = { - [aux_sym__repeat_newline] = STATE(1228), - [sym_comment] = STATE(1197), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [STATE(1182)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1182), + [anon_sym_in] = ACTIONS(2670), + [sym__newline] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_err_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_GT_PIPE] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_GT2] = ACTIONS(2672), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2670), + [anon_sym_xor2] = ACTIONS(2670), + [anon_sym_or2] = ACTIONS(2670), + [anon_sym_not_DASHin2] = ACTIONS(2670), + [anon_sym_has2] = ACTIONS(2670), + [anon_sym_not_DASHhas2] = ACTIONS(2670), + [anon_sym_starts_DASHwith2] = ACTIONS(2670), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), + [anon_sym_ends_DASHwith2] = ACTIONS(2670), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), + [anon_sym_EQ_EQ2] = ACTIONS(2670), + [anon_sym_BANG_EQ2] = ACTIONS(2670), + [anon_sym_LT2] = ACTIONS(2672), + [anon_sym_LT_EQ2] = ACTIONS(2670), + [anon_sym_GT_EQ2] = ACTIONS(2670), + [anon_sym_EQ_TILDE2] = ACTIONS(2670), + [anon_sym_BANG_TILDE2] = ACTIONS(2670), + [anon_sym_like2] = ACTIONS(2670), + [anon_sym_not_DASHlike2] = ACTIONS(2670), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2670), + [anon_sym_bit_DASHxor2] = ACTIONS(2670), + [anon_sym_bit_DASHor2] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2670), + [anon_sym_out_GT_GT] = ACTIONS(2670), + [anon_sym_e_GT_GT] = ACTIONS(2670), + [anon_sym_o_GT_GT] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1198)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1198), + [STATE(1183)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1183), [anon_sym_in] = ACTIONS(2740), [sym__newline] = ACTIONS(2740), [anon_sym_SEMI] = ACTIONS(2740), @@ -134832,9 +133855,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), [anon_sym_and2] = ACTIONS(2740), [anon_sym_xor2] = ACTIONS(2740), [anon_sym_or2] = ACTIONS(2740), @@ -134845,23 +133868,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), [anon_sym_ends_DASHwith2] = ACTIONS(2740), [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), [anon_sym_EQ_TILDE2] = ACTIONS(2740), [anon_sym_BANG_TILDE2] = ACTIONS(2740), [anon_sym_like2] = ACTIONS(2740), [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), [anon_sym_bit_DASHand2] = ACTIONS(2740), [anon_sym_bit_DASHxor2] = ACTIONS(2740), [anon_sym_bit_DASHor2] = ACTIONS(2740), @@ -134883,76 +133906,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1199)] = { - [aux_sym__repeat_newline] = STATE(1194), - [sym_comment] = STATE(1199), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [STATE(1184)] = { + [aux_sym__repeat_newline] = STATE(1178), + [sym_comment] = STATE(1184), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1200)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1200), + [STATE(1185)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1185), [anon_sym_in] = ACTIONS(2740), [sym__newline] = ACTIONS(2740), [anon_sym_SEMI] = ACTIONS(2740), @@ -134967,8 +133990,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), [anon_sym_RPAREN] = ACTIONS(2740), [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), [anon_sym_and2] = ACTIONS(2740), [anon_sym_xor2] = ACTIONS(2740), [anon_sym_or2] = ACTIONS(2740), @@ -134988,14 +134011,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2740), [anon_sym_like2] = ACTIONS(2740), [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), [anon_sym_bit_DASHand2] = ACTIONS(2740), [anon_sym_bit_DASHxor2] = ACTIONS(2740), [anon_sym_bit_DASHor2] = ACTIONS(2740), @@ -135017,210 +134040,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1201)] = { - [aux_sym__repeat_newline] = STATE(1248), - [sym_comment] = STATE(1201), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1202)] = { - [sym_comment] = STATE(1202), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_err_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_GT_PIPE] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2287), - [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [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(2287), - [anon_sym_out_GT_GT] = ACTIONS(2287), - [anon_sym_e_GT_GT] = ACTIONS(2287), - [anon_sym_o_GT_GT] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1203)] = { - [sym_comment] = STATE(1203), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2535), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2535), - [anon_sym_mod2] = ACTIONS(2533), - [anon_sym_SLASH_SLASH2] = ACTIONS(2533), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [STATE(1186)] = { + [sym_comment] = STATE(1186), + [anon_sym_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2576), + [anon_sym_xor2] = ACTIONS(2576), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2790), + [anon_sym_BANG_EQ2] = ACTIONS(2790), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2790), + [anon_sym_GT_EQ2] = ACTIONS(2790), + [anon_sym_EQ_TILDE2] = ACTIONS(2576), + [anon_sym_BANG_TILDE2] = ACTIONS(2576), + [anon_sym_like2] = ACTIONS(2576), + [anon_sym_not_DASHlike2] = ACTIONS(2576), + [anon_sym_STAR_STAR2] = ACTIONS(2794), + [anon_sym_PLUS_PLUS2] = ACTIONS(2794), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2796), + [anon_sym_SLASH_SLASH2] = ACTIONS(2796), + [anon_sym_PLUS2] = ACTIONS(2798), + [anon_sym_bit_DASHshl2] = ACTIONS(2800), + [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_bit_DASHand2] = ACTIONS(2576), + [anon_sym_bit_DASHxor2] = ACTIONS(2576), + [anon_sym_bit_DASHor2] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1204)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1204), + [STATE(1187)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1187), [anon_sym_in] = ACTIONS(2740), [sym__newline] = ACTIONS(2740), [anon_sym_SEMI] = ACTIONS(2740), @@ -135236,7 +134125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(2740), [anon_sym_GT2] = ACTIONS(2742), [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2742), + [anon_sym_STAR2] = ACTIONS(2833), [anon_sym_and2] = ACTIONS(2740), [anon_sym_xor2] = ACTIONS(2740), [anon_sym_or2] = ACTIONS(2740), @@ -135256,11 +134145,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2740), [anon_sym_like2] = ACTIONS(2740), [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2742), - [anon_sym_mod2] = ACTIONS(2740), - [anon_sym_SLASH_SLASH2] = ACTIONS(2740), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), [anon_sym_PLUS2] = ACTIONS(2742), [anon_sym_bit_DASHshl2] = ACTIONS(2740), [anon_sym_bit_DASHshr2] = ACTIONS(2740), @@ -135285,77 +134174,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1205)] = { - [sym_comment] = STATE(1205), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1820), + [STATE(1188)] = { + [aux_sym__repeat_newline] = STATE(1204), + [sym_comment] = STATE(1188), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2666), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2668), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1206)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1206), - [anon_sym_in] = ACTIONS(2788), + [STATE(1189)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1189), + [anon_sym_in] = ACTIONS(2740), [sym__newline] = ACTIONS(2740), [anon_sym_SEMI] = ACTIONS(2740), [anon_sym_PIPE] = ACTIONS(2740), @@ -135368,39 +134257,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2742), + [anon_sym_DASH2] = ACTIONS(2740), + [anon_sym_STAR2] = ACTIONS(2742), [anon_sym_and2] = ACTIONS(2740), [anon_sym_xor2] = ACTIONS(2740), [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_not_DASHin2] = ACTIONS(2740), + [anon_sym_has2] = ACTIONS(2740), + [anon_sym_not_DASHhas2] = ACTIONS(2740), + [anon_sym_starts_DASHwith2] = ACTIONS(2740), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), + [anon_sym_ends_DASHwith2] = ACTIONS(2740), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), + [anon_sym_EQ_EQ2] = ACTIONS(2740), + [anon_sym_BANG_EQ2] = ACTIONS(2740), + [anon_sym_LT2] = ACTIONS(2742), + [anon_sym_LT_EQ2] = ACTIONS(2740), + [anon_sym_GT_EQ2] = ACTIONS(2740), + [anon_sym_EQ_TILDE2] = ACTIONS(2740), + [anon_sym_BANG_TILDE2] = ACTIONS(2740), + [anon_sym_like2] = ACTIONS(2740), + [anon_sym_not_DASHlike2] = ACTIONS(2740), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2742), + [anon_sym_mod2] = ACTIONS(2740), + [anon_sym_SLASH_SLASH2] = ACTIONS(2740), + [anon_sym_PLUS2] = ACTIONS(2742), + [anon_sym_bit_DASHshl2] = ACTIONS(2740), + [anon_sym_bit_DASHshr2] = ACTIONS(2740), + [anon_sym_bit_DASHand2] = ACTIONS(2740), + [anon_sym_bit_DASHxor2] = ACTIONS(2740), + [anon_sym_bit_DASHor2] = ACTIONS(2740), [anon_sym_err_GT] = ACTIONS(2742), [anon_sym_out_GT] = ACTIONS(2742), [anon_sym_e_GT] = ACTIONS(2742), @@ -135419,77 +134308,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1207)] = { - [sym_comment] = STATE(1207), - [ts_builtin_sym_end] = ACTIONS(968), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), + [STATE(1190)] = { + [sym_comment] = STATE(1190), + [anon_sym_in] = ACTIONS(2576), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2578), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2576), + [anon_sym_xor2] = ACTIONS(2576), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2576), + [anon_sym_has2] = ACTIONS(2576), + [anon_sym_not_DASHhas2] = ACTIONS(2576), + [anon_sym_starts_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2576), + [anon_sym_ends_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2576), + [anon_sym_EQ_EQ2] = ACTIONS(2576), + [anon_sym_BANG_EQ2] = ACTIONS(2576), + [anon_sym_LT2] = ACTIONS(2578), + [anon_sym_LT_EQ2] = ACTIONS(2576), + [anon_sym_GT_EQ2] = ACTIONS(2576), + [anon_sym_EQ_TILDE2] = ACTIONS(2576), + [anon_sym_BANG_TILDE2] = ACTIONS(2576), + [anon_sym_like2] = ACTIONS(2576), + [anon_sym_not_DASHlike2] = ACTIONS(2576), + [anon_sym_STAR_STAR2] = ACTIONS(2794), + [anon_sym_PLUS_PLUS2] = ACTIONS(2794), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2796), + [anon_sym_SLASH_SLASH2] = ACTIONS(2796), + [anon_sym_PLUS2] = ACTIONS(2798), + [anon_sym_bit_DASHshl2] = ACTIONS(2576), + [anon_sym_bit_DASHshr2] = ACTIONS(2576), + [anon_sym_bit_DASHand2] = ACTIONS(2576), + [anon_sym_bit_DASHxor2] = ACTIONS(2576), + [anon_sym_bit_DASHor2] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1208)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1208), - [anon_sym_in] = ACTIONS(2788), + [STATE(1191)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1191), + [anon_sym_in] = ACTIONS(2847), [sym__newline] = ACTIONS(2740), [anon_sym_SEMI] = ACTIONS(2740), [anon_sym_PIPE] = ACTIONS(2740), @@ -135502,39 +134391,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2740), [anon_sym_xor2] = ACTIONS(2740), [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), + [anon_sym_bit_DASHor2] = ACTIONS(2865), [anon_sym_err_GT] = ACTIONS(2742), [anon_sym_out_GT] = ACTIONS(2742), [anon_sym_e_GT] = ACTIONS(2742), @@ -135553,77 +134442,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1209)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1209), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [STATE(1192)] = { + [sym_comment] = STATE(1192), + [anon_sym_in] = ACTIONS(2186), + [sym__newline] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_err_GT_PIPE] = ACTIONS(2463), + [anon_sym_out_GT_PIPE] = ACTIONS(2463), + [anon_sym_e_GT_PIPE] = ACTIONS(2463), + [anon_sym_o_GT_PIPE] = ACTIONS(2463), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2463), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2463), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2463), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2463), + [anon_sym_RPAREN] = ACTIONS(2463), + [anon_sym_GT2] = ACTIONS(2188), + [anon_sym_DASH2] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_STAR2] = ACTIONS(2188), + [anon_sym_and2] = ACTIONS(2186), + [anon_sym_xor2] = ACTIONS(2186), + [anon_sym_or2] = ACTIONS(2186), + [anon_sym_not_DASHin2] = ACTIONS(2186), + [anon_sym_has2] = ACTIONS(2186), + [anon_sym_not_DASHhas2] = ACTIONS(2186), + [anon_sym_starts_DASHwith2] = ACTIONS(2186), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2186), + [anon_sym_ends_DASHwith2] = ACTIONS(2186), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2186), + [anon_sym_EQ_EQ2] = ACTIONS(2186), + [anon_sym_BANG_EQ2] = ACTIONS(2186), + [anon_sym_LT2] = ACTIONS(2188), + [anon_sym_LT_EQ2] = ACTIONS(2186), + [anon_sym_GT_EQ2] = ACTIONS(2186), + [anon_sym_EQ_TILDE2] = ACTIONS(2186), + [anon_sym_BANG_TILDE2] = ACTIONS(2186), + [anon_sym_like2] = ACTIONS(2186), + [anon_sym_not_DASHlike2] = ACTIONS(2186), + [anon_sym_STAR_STAR2] = ACTIONS(2186), + [anon_sym_PLUS_PLUS2] = ACTIONS(2186), + [anon_sym_SLASH2] = ACTIONS(2188), + [anon_sym_mod2] = ACTIONS(2186), + [anon_sym_SLASH_SLASH2] = ACTIONS(2186), + [anon_sym_PLUS2] = ACTIONS(2188), + [anon_sym_bit_DASHshl2] = ACTIONS(2186), + [anon_sym_bit_DASHshr2] = ACTIONS(2186), + [anon_sym_bit_DASHand2] = ACTIONS(2186), + [anon_sym_bit_DASHxor2] = ACTIONS(2186), + [anon_sym_bit_DASHor2] = ACTIONS(2186), + [anon_sym_err_GT] = ACTIONS(2465), + [anon_sym_out_GT] = ACTIONS(2465), + [anon_sym_e_GT] = ACTIONS(2465), + [anon_sym_o_GT] = ACTIONS(2465), + [anon_sym_err_PLUSout_GT] = ACTIONS(2465), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2465), + [anon_sym_o_PLUSe_GT] = ACTIONS(2465), + [anon_sym_e_PLUSo_GT] = ACTIONS(2465), + [anon_sym_err_GT_GT] = ACTIONS(2463), + [anon_sym_out_GT_GT] = ACTIONS(2463), + [anon_sym_e_GT_GT] = ACTIONS(2463), + [anon_sym_o_GT_GT] = ACTIONS(2463), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2463), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2463), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2463), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2463), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1210)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1210), - [anon_sym_in] = ACTIONS(2788), + [STATE(1193)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1193), + [anon_sym_in] = ACTIONS(2847), [sym__newline] = ACTIONS(2740), [anon_sym_SEMI] = ACTIONS(2740), [anon_sym_PIPE] = ACTIONS(2740), @@ -135636,39 +134525,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2903), + [anon_sym_xor2] = ACTIONS(2740), [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), + [anon_sym_bit_DASHor2] = ACTIONS(2865), [anon_sym_err_GT] = ACTIONS(2742), [anon_sym_out_GT] = ACTIONS(2742), [anon_sym_e_GT] = ACTIONS(2742), @@ -135687,77 +134576,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1211)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1211), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [STATE(1194)] = { + [aux_sym__repeat_newline] = STATE(1229), + [sym_comment] = STATE(1194), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1212)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1212), - [anon_sym_in] = ACTIONS(2788), + [STATE(1195)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1195), + [anon_sym_in] = ACTIONS(2847), [sym__newline] = ACTIONS(2740), [anon_sym_SEMI] = ACTIONS(2740), [anon_sym_PIPE] = ACTIONS(2740), @@ -135770,39 +134659,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2903), + [anon_sym_xor2] = ACTIONS(2909), [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), + [anon_sym_bit_DASHor2] = ACTIONS(2865), [anon_sym_err_GT] = ACTIONS(2742), [anon_sym_out_GT] = ACTIONS(2742), [anon_sym_e_GT] = ACTIONS(2742), @@ -135821,211 +134710,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1213)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1213), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1214)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1214), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [STATE(1196)] = { + [sym_comment] = STATE(1196), + [anon_sym_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2576), + [anon_sym_xor2] = ACTIONS(2576), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2790), + [anon_sym_BANG_EQ2] = ACTIONS(2790), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2790), + [anon_sym_GT_EQ2] = ACTIONS(2790), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2794), + [anon_sym_PLUS_PLUS2] = ACTIONS(2794), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2796), + [anon_sym_SLASH_SLASH2] = ACTIONS(2796), [anon_sym_PLUS2] = ACTIONS(2798), [anon_sym_bit_DASHshl2] = ACTIONS(2800), [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1215)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1215), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_bit_DASHand2] = ACTIONS(2576), + [anon_sym_bit_DASHxor2] = ACTIONS(2576), + [anon_sym_bit_DASHor2] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1216)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1216), - [anon_sym_in] = ACTIONS(2740), + [STATE(1197)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1197), + [anon_sym_in] = ACTIONS(2847), [sym__newline] = ACTIONS(2740), [anon_sym_SEMI] = ACTIONS(2740), [anon_sym_PIPE] = ACTIONS(2740), @@ -136038,36 +134793,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), [anon_sym_and2] = ACTIONS(2740), [anon_sym_xor2] = ACTIONS(2740), [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), [anon_sym_EQ_TILDE2] = ACTIONS(2740), [anon_sym_BANG_TILDE2] = ACTIONS(2740), [anon_sym_like2] = ACTIONS(2740), [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), [anon_sym_bit_DASHand2] = ACTIONS(2740), [anon_sym_bit_DASHxor2] = ACTIONS(2740), [anon_sym_bit_DASHor2] = ACTIONS(2740), @@ -136089,77 +134844,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1217)] = { - [aux_sym__repeat_newline] = STATE(1132), - [sym_comment] = STATE(1217), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [STATE(1198)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1198), + [anon_sym_in] = ACTIONS(2718), + [sym__newline] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2718), + [anon_sym_has2] = ACTIONS(2718), + [anon_sym_not_DASHhas2] = ACTIONS(2718), + [anon_sym_starts_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), + [anon_sym_ends_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2718), + [anon_sym_BANG_TILDE2] = ACTIONS(2718), + [anon_sym_like2] = ACTIONS(2718), + [anon_sym_not_DASHlike2] = ACTIONS(2718), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1218)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1218), - [anon_sym_in] = ACTIONS(2788), + [STATE(1199)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1199), + [anon_sym_in] = ACTIONS(2670), + [sym__newline] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_err_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_GT_PIPE] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_GT2] = ACTIONS(2672), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2670), + [anon_sym_xor2] = ACTIONS(2670), + [anon_sym_or2] = ACTIONS(2670), + [anon_sym_not_DASHin2] = ACTIONS(2670), + [anon_sym_has2] = ACTIONS(2670), + [anon_sym_not_DASHhas2] = ACTIONS(2670), + [anon_sym_starts_DASHwith2] = ACTIONS(2670), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), + [anon_sym_ends_DASHwith2] = ACTIONS(2670), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), + [anon_sym_EQ_EQ2] = ACTIONS(2670), + [anon_sym_BANG_EQ2] = ACTIONS(2670), + [anon_sym_LT2] = ACTIONS(2672), + [anon_sym_LT_EQ2] = ACTIONS(2670), + [anon_sym_GT_EQ2] = ACTIONS(2670), + [anon_sym_EQ_TILDE2] = ACTIONS(2670), + [anon_sym_BANG_TILDE2] = ACTIONS(2670), + [anon_sym_like2] = ACTIONS(2670), + [anon_sym_not_DASHlike2] = ACTIONS(2670), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2670), + [anon_sym_bit_DASHshr2] = ACTIONS(2670), + [anon_sym_bit_DASHand2] = ACTIONS(2670), + [anon_sym_bit_DASHxor2] = ACTIONS(2670), + [anon_sym_bit_DASHor2] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2670), + [anon_sym_out_GT_GT] = ACTIONS(2670), + [anon_sym_e_GT_GT] = ACTIONS(2670), + [anon_sym_o_GT_GT] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1200)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1200), + [anon_sym_in] = ACTIONS(2718), + [sym__newline] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2720), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2718), + [anon_sym_has2] = ACTIONS(2718), + [anon_sym_not_DASHhas2] = ACTIONS(2718), + [anon_sym_starts_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), + [anon_sym_ends_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), + [anon_sym_EQ_EQ2] = ACTIONS(2718), + [anon_sym_BANG_EQ2] = ACTIONS(2718), + [anon_sym_LT2] = ACTIONS(2720), + [anon_sym_LT_EQ2] = ACTIONS(2718), + [anon_sym_GT_EQ2] = ACTIONS(2718), + [anon_sym_EQ_TILDE2] = ACTIONS(2718), + [anon_sym_BANG_TILDE2] = ACTIONS(2718), + [anon_sym_like2] = ACTIONS(2718), + [anon_sym_not_DASHlike2] = ACTIONS(2718), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1201)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1201), + [anon_sym_in] = ACTIONS(2740), [sym__newline] = ACTIONS(2740), [anon_sym_SEMI] = ACTIONS(2740), [anon_sym_PIPE] = ACTIONS(2740), @@ -136172,36 +135061,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2742), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), [anon_sym_and2] = ACTIONS(2740), [anon_sym_xor2] = ACTIONS(2740), [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_not_DASHin2] = ACTIONS(2740), + [anon_sym_has2] = ACTIONS(2740), + [anon_sym_not_DASHhas2] = ACTIONS(2740), + [anon_sym_starts_DASHwith2] = ACTIONS(2740), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), + [anon_sym_ends_DASHwith2] = ACTIONS(2740), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), + [anon_sym_EQ_EQ2] = ACTIONS(2740), + [anon_sym_BANG_EQ2] = ACTIONS(2740), + [anon_sym_LT2] = ACTIONS(2742), + [anon_sym_LT_EQ2] = ACTIONS(2740), + [anon_sym_GT_EQ2] = ACTIONS(2740), + [anon_sym_EQ_TILDE2] = ACTIONS(2740), + [anon_sym_BANG_TILDE2] = ACTIONS(2740), + [anon_sym_like2] = ACTIONS(2740), + [anon_sym_not_DASHlike2] = ACTIONS(2740), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2740), + [anon_sym_bit_DASHshr2] = ACTIONS(2740), [anon_sym_bit_DASHand2] = ACTIONS(2740), [anon_sym_bit_DASHxor2] = ACTIONS(2740), [anon_sym_bit_DASHor2] = ACTIONS(2740), @@ -136223,212 +135112,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1219)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1219), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2722), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2722), - [anon_sym_mod2] = ACTIONS(2720), - [anon_sym_SLASH_SLASH2] = ACTIONS(2720), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1220)] = { - [sym_comment] = STATE(1220), - [ts_builtin_sym_end] = ACTIONS(2092), - [anon_sym_in] = ACTIONS(2092), - [sym__newline] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_err_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_GT_PIPE] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), - [anon_sym_GT2] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2092), - [anon_sym_STAR2] = ACTIONS(2094), - [anon_sym_and2] = ACTIONS(2092), - [anon_sym_xor2] = ACTIONS(2092), - [anon_sym_or2] = ACTIONS(2092), - [anon_sym_not_DASHin2] = ACTIONS(2092), - [anon_sym_has2] = ACTIONS(2092), - [anon_sym_not_DASHhas2] = ACTIONS(2092), - [anon_sym_starts_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2092), - [anon_sym_ends_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2092), - [anon_sym_EQ_EQ2] = ACTIONS(2092), - [anon_sym_BANG_EQ2] = ACTIONS(2092), - [anon_sym_LT2] = ACTIONS(2094), - [anon_sym_LT_EQ2] = ACTIONS(2092), - [anon_sym_GT_EQ2] = ACTIONS(2092), - [anon_sym_EQ_TILDE2] = ACTIONS(2092), - [anon_sym_BANG_TILDE2] = ACTIONS(2092), - [anon_sym_like2] = ACTIONS(2092), - [anon_sym_not_DASHlike2] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1221)] = { - [aux_sym__repeat_newline] = STATE(1159), - [sym_comment] = STATE(1221), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1222)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1222), + [STATE(1202)] = { + [aux_sym__repeat_newline] = STATE(1257), + [sym_comment] = STATE(1202), [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), + [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2706), [anon_sym_PIPE] = ACTIONS(2706), [anon_sym_err_GT_PIPE] = ACTIONS(2706), @@ -136441,8 +135129,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), [anon_sym_RPAREN] = ACTIONS(2706), [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), [anon_sym_and2] = ACTIONS(2706), [anon_sym_xor2] = ACTIONS(2706), [anon_sym_or2] = ACTIONS(2706), @@ -136462,14 +135150,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2706), [anon_sym_like2] = ACTIONS(2706), [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), [anon_sym_bit_DASHand2] = ACTIONS(2706), [anon_sym_bit_DASHxor2] = ACTIONS(2706), [anon_sym_bit_DASHor2] = ACTIONS(2706), @@ -136491,278 +135179,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1223)] = { - [sym_comment] = STATE(1223), - [ts_builtin_sym_end] = ACTIONS(2084), - [anon_sym_in] = ACTIONS(2084), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_GT2] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2084), - [anon_sym_STAR2] = ACTIONS(2086), - [anon_sym_and2] = ACTIONS(2084), - [anon_sym_xor2] = ACTIONS(2084), - [anon_sym_or2] = ACTIONS(2084), - [anon_sym_not_DASHin2] = ACTIONS(2084), - [anon_sym_has2] = ACTIONS(2084), - [anon_sym_not_DASHhas2] = ACTIONS(2084), - [anon_sym_starts_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2084), - [anon_sym_ends_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2084), - [anon_sym_EQ_EQ2] = ACTIONS(2084), - [anon_sym_BANG_EQ2] = ACTIONS(2084), - [anon_sym_LT2] = ACTIONS(2086), - [anon_sym_LT_EQ2] = ACTIONS(2084), - [anon_sym_GT_EQ2] = ACTIONS(2084), - [anon_sym_EQ_TILDE2] = ACTIONS(2084), - [anon_sym_BANG_TILDE2] = ACTIONS(2084), - [anon_sym_like2] = ACTIONS(2084), - [anon_sym_not_DASHlike2] = ACTIONS(2084), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_STAR_STAR2] = ACTIONS(2084), - [anon_sym_PLUS_PLUS2] = ACTIONS(2084), - [anon_sym_SLASH2] = ACTIONS(2086), - [anon_sym_mod2] = ACTIONS(2084), - [anon_sym_SLASH_SLASH2] = ACTIONS(2084), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_bit_DASHshl2] = ACTIONS(2084), - [anon_sym_bit_DASHshr2] = ACTIONS(2084), - [anon_sym_bit_DASHand2] = ACTIONS(2084), - [anon_sym_bit_DASHxor2] = ACTIONS(2084), - [anon_sym_bit_DASHor2] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1224)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1224), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1225)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1225), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [STATE(1203)] = { + [aux_sym__repeat_newline] = STATE(1187), + [sym_comment] = STATE(1203), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2728), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2730), + [anon_sym_bit_DASHshl2] = ACTIONS(2728), + [anon_sym_bit_DASHshr2] = ACTIONS(2728), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [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(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1226)] = { - [aux_sym__repeat_newline] = STATE(1183), - [sym_comment] = STATE(1226), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [STATE(1204)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1204), + [anon_sym_in] = ACTIONS(2718), + [sym__newline] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2720), + [anon_sym_DASH2] = ACTIONS(2718), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2718), + [anon_sym_has2] = ACTIONS(2718), + [anon_sym_not_DASHhas2] = ACTIONS(2718), + [anon_sym_starts_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), + [anon_sym_ends_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), + [anon_sym_EQ_EQ2] = ACTIONS(2718), + [anon_sym_BANG_EQ2] = ACTIONS(2718), + [anon_sym_LT2] = ACTIONS(2720), + [anon_sym_LT_EQ2] = ACTIONS(2718), + [anon_sym_GT_EQ2] = ACTIONS(2718), + [anon_sym_EQ_TILDE2] = ACTIONS(2718), + [anon_sym_BANG_TILDE2] = ACTIONS(2718), + [anon_sym_like2] = ACTIONS(2718), + [anon_sym_not_DASHlike2] = ACTIONS(2718), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2720), + [anon_sym_bit_DASHshl2] = ACTIONS(2718), + [anon_sym_bit_DASHshr2] = ACTIONS(2718), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1227)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1227), - [anon_sym_in] = ACTIONS(2788), + [STATE(1205)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1205), + [anon_sym_in] = ACTIONS(2847), [sym__newline] = ACTIONS(2740), [anon_sym_SEMI] = ACTIONS(2740), [anon_sym_PIPE] = ACTIONS(2740), @@ -136775,37 +135329,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), [anon_sym_and2] = ACTIONS(2740), [anon_sym_xor2] = ACTIONS(2740), [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), [anon_sym_bit_DASHxor2] = ACTIONS(2740), [anon_sym_bit_DASHor2] = ACTIONS(2740), [anon_sym_err_GT] = ACTIONS(2742), @@ -136826,77 +135380,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1228)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1228), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [STATE(1206)] = { + [aux_sym__repeat_newline] = STATE(1231), + [sym_comment] = STATE(1206), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1229)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1229), - [anon_sym_in] = ACTIONS(2788), + [STATE(1207)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1207), + [anon_sym_in] = ACTIONS(2847), [sym__newline] = ACTIONS(2740), [anon_sym_SEMI] = ACTIONS(2740), [anon_sym_PIPE] = ACTIONS(2740), @@ -136909,38 +135463,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), [anon_sym_and2] = ACTIONS(2740), [anon_sym_xor2] = ACTIONS(2740), [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), [anon_sym_bit_DASHor2] = ACTIONS(2740), [anon_sym_err_GT] = ACTIONS(2742), [anon_sym_out_GT] = ACTIONS(2742), @@ -136960,45 +135514,2390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1208)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1208), + [anon_sym_in] = ACTIONS(2718), + [sym__newline] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2720), + [anon_sym_DASH2] = ACTIONS(2718), + [anon_sym_STAR2] = ACTIONS(2720), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2718), + [anon_sym_has2] = ACTIONS(2718), + [anon_sym_not_DASHhas2] = ACTIONS(2718), + [anon_sym_starts_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), + [anon_sym_ends_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), + [anon_sym_EQ_EQ2] = ACTIONS(2718), + [anon_sym_BANG_EQ2] = ACTIONS(2718), + [anon_sym_LT2] = ACTIONS(2720), + [anon_sym_LT_EQ2] = ACTIONS(2718), + [anon_sym_GT_EQ2] = ACTIONS(2718), + [anon_sym_EQ_TILDE2] = ACTIONS(2718), + [anon_sym_BANG_TILDE2] = ACTIONS(2718), + [anon_sym_like2] = ACTIONS(2718), + [anon_sym_not_DASHlike2] = ACTIONS(2718), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2720), + [anon_sym_mod2] = ACTIONS(2718), + [anon_sym_SLASH_SLASH2] = ACTIONS(2718), + [anon_sym_PLUS2] = ACTIONS(2720), + [anon_sym_bit_DASHshl2] = ACTIONS(2718), + [anon_sym_bit_DASHshr2] = ACTIONS(2718), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1209)] = { + [sym_comment] = STATE(1209), + [aux_sym_cmd_identifier_token2] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2493), + [sym__newline] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_err_GT_PIPE] = ACTIONS(2491), + [anon_sym_out_GT_PIPE] = ACTIONS(2491), + [anon_sym_e_GT_PIPE] = ACTIONS(2491), + [anon_sym_o_GT_PIPE] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2491), + [anon_sym_GT2] = ACTIONS(2493), + [anon_sym_DASH2] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_STAR2] = ACTIONS(2493), + [anon_sym_and2] = ACTIONS(2493), + [anon_sym_xor2] = ACTIONS(2493), + [anon_sym_or2] = ACTIONS(2493), + [anon_sym_not_DASHin2] = ACTIONS(2493), + [anon_sym_has2] = ACTIONS(2493), + [anon_sym_not_DASHhas2] = ACTIONS(2493), + [anon_sym_starts_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2493), + [anon_sym_ends_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2493), + [anon_sym_EQ_EQ2] = ACTIONS(2491), + [anon_sym_BANG_EQ2] = ACTIONS(2491), + [anon_sym_LT2] = ACTIONS(2493), + [anon_sym_LT_EQ2] = ACTIONS(2491), + [anon_sym_GT_EQ2] = ACTIONS(2491), + [anon_sym_EQ_TILDE2] = ACTIONS(2491), + [anon_sym_BANG_TILDE2] = ACTIONS(2493), + [anon_sym_like2] = ACTIONS(2493), + [anon_sym_not_DASHlike2] = ACTIONS(2493), + [anon_sym_STAR_STAR2] = ACTIONS(2493), + [anon_sym_PLUS_PLUS2] = ACTIONS(2493), + [anon_sym_SLASH2] = ACTIONS(2493), + [anon_sym_mod2] = ACTIONS(2493), + [anon_sym_SLASH_SLASH2] = ACTIONS(2493), + [anon_sym_PLUS2] = ACTIONS(2493), + [anon_sym_bit_DASHshl2] = ACTIONS(2493), + [anon_sym_bit_DASHshr2] = ACTIONS(2493), + [anon_sym_bit_DASHand2] = ACTIONS(2493), + [anon_sym_bit_DASHxor2] = ACTIONS(2493), + [anon_sym_bit_DASHor2] = ACTIONS(2493), + [anon_sym_err_GT] = ACTIONS(2493), + [anon_sym_out_GT] = ACTIONS(2493), + [anon_sym_e_GT] = ACTIONS(2493), + [anon_sym_o_GT] = ACTIONS(2493), + [anon_sym_err_PLUSout_GT] = ACTIONS(2493), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2493), + [anon_sym_o_PLUSe_GT] = ACTIONS(2493), + [anon_sym_e_PLUSo_GT] = ACTIONS(2493), + [anon_sym_err_GT_GT] = ACTIONS(2491), + [anon_sym_out_GT_GT] = ACTIONS(2491), + [anon_sym_e_GT_GT] = ACTIONS(2491), + [anon_sym_o_GT_GT] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2491), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1210)] = { + [sym_comment] = STATE(1210), + [aux_sym_cmd_identifier_token2] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2642), + [sym__newline] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_err_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_GT_PIPE] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2640), + [anon_sym_GT2] = ACTIONS(2642), + [anon_sym_DASH2] = ACTIONS(2642), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_STAR2] = ACTIONS(2642), + [anon_sym_and2] = ACTIONS(2642), + [anon_sym_xor2] = ACTIONS(2642), + [anon_sym_or2] = ACTIONS(2642), + [anon_sym_not_DASHin2] = ACTIONS(2642), + [anon_sym_has2] = ACTIONS(2642), + [anon_sym_not_DASHhas2] = ACTIONS(2642), + [anon_sym_starts_DASHwith2] = ACTIONS(2642), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2642), + [anon_sym_ends_DASHwith2] = ACTIONS(2642), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2642), + [anon_sym_EQ_EQ2] = ACTIONS(2640), + [anon_sym_BANG_EQ2] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2642), + [anon_sym_LT_EQ2] = ACTIONS(2640), + [anon_sym_GT_EQ2] = ACTIONS(2640), + [anon_sym_EQ_TILDE2] = ACTIONS(2640), + [anon_sym_BANG_TILDE2] = ACTIONS(2642), + [anon_sym_like2] = ACTIONS(2642), + [anon_sym_not_DASHlike2] = ACTIONS(2642), + [anon_sym_STAR_STAR2] = ACTIONS(2642), + [anon_sym_PLUS_PLUS2] = ACTIONS(2642), + [anon_sym_SLASH2] = ACTIONS(2642), + [anon_sym_mod2] = ACTIONS(2642), + [anon_sym_SLASH_SLASH2] = ACTIONS(2642), + [anon_sym_PLUS2] = ACTIONS(2642), + [anon_sym_bit_DASHshl2] = ACTIONS(2642), + [anon_sym_bit_DASHshr2] = ACTIONS(2642), + [anon_sym_bit_DASHand2] = ACTIONS(2642), + [anon_sym_bit_DASHxor2] = ACTIONS(2642), + [anon_sym_bit_DASHor2] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2642), + [anon_sym_out_GT] = ACTIONS(2642), + [anon_sym_e_GT] = ACTIONS(2642), + [anon_sym_o_GT] = ACTIONS(2642), + [anon_sym_err_PLUSout_GT] = ACTIONS(2642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2642), + [anon_sym_o_PLUSe_GT] = ACTIONS(2642), + [anon_sym_e_PLUSo_GT] = ACTIONS(2642), + [anon_sym_err_GT_GT] = ACTIONS(2640), + [anon_sym_out_GT_GT] = ACTIONS(2640), + [anon_sym_e_GT_GT] = ACTIONS(2640), + [anon_sym_o_GT_GT] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1211)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1211), + [anon_sym_in] = ACTIONS(2670), + [sym__newline] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_err_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_GT_PIPE] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_GT2] = ACTIONS(2672), + [anon_sym_DASH2] = ACTIONS(2670), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2670), + [anon_sym_xor2] = ACTIONS(2670), + [anon_sym_or2] = ACTIONS(2670), + [anon_sym_not_DASHin2] = ACTIONS(2670), + [anon_sym_has2] = ACTIONS(2670), + [anon_sym_not_DASHhas2] = ACTIONS(2670), + [anon_sym_starts_DASHwith2] = ACTIONS(2670), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), + [anon_sym_ends_DASHwith2] = ACTIONS(2670), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), + [anon_sym_EQ_EQ2] = ACTIONS(2670), + [anon_sym_BANG_EQ2] = ACTIONS(2670), + [anon_sym_LT2] = ACTIONS(2672), + [anon_sym_LT_EQ2] = ACTIONS(2670), + [anon_sym_GT_EQ2] = ACTIONS(2670), + [anon_sym_EQ_TILDE2] = ACTIONS(2670), + [anon_sym_BANG_TILDE2] = ACTIONS(2670), + [anon_sym_like2] = ACTIONS(2670), + [anon_sym_not_DASHlike2] = ACTIONS(2670), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2672), + [anon_sym_bit_DASHshl2] = ACTIONS(2670), + [anon_sym_bit_DASHshr2] = ACTIONS(2670), + [anon_sym_bit_DASHand2] = ACTIONS(2670), + [anon_sym_bit_DASHxor2] = ACTIONS(2670), + [anon_sym_bit_DASHor2] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2670), + [anon_sym_out_GT_GT] = ACTIONS(2670), + [anon_sym_e_GT_GT] = ACTIONS(2670), + [anon_sym_o_GT_GT] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1212)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1212), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), + [anon_sym_bit_DASHor2] = ACTIONS(2865), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1213)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1213), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_err_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_GT_PIPE] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2670), + [anon_sym_xor2] = ACTIONS(2670), + [anon_sym_or2] = ACTIONS(2670), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2670), + [anon_sym_bit_DASHxor2] = ACTIONS(2670), + [anon_sym_bit_DASHor2] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2670), + [anon_sym_out_GT_GT] = ACTIONS(2670), + [anon_sym_e_GT_GT] = ACTIONS(2670), + [anon_sym_o_GT_GT] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1214)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1214), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2903), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), + [anon_sym_bit_DASHor2] = ACTIONS(2865), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1215)] = { + [sym_comment] = STATE(1215), + [anon_sym_in] = ACTIONS(2782), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2576), + [anon_sym_xor2] = ACTIONS(2576), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2782), + [anon_sym_has2] = ACTIONS(2782), + [anon_sym_not_DASHhas2] = ACTIONS(2782), + [anon_sym_starts_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2782), + [anon_sym_ends_DASHwith2] = ACTIONS(2782), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2782), + [anon_sym_EQ_EQ2] = ACTIONS(2790), + [anon_sym_BANG_EQ2] = ACTIONS(2790), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2790), + [anon_sym_GT_EQ2] = ACTIONS(2790), + [anon_sym_EQ_TILDE2] = ACTIONS(2792), + [anon_sym_BANG_TILDE2] = ACTIONS(2792), + [anon_sym_like2] = ACTIONS(2792), + [anon_sym_not_DASHlike2] = ACTIONS(2792), + [anon_sym_STAR_STAR2] = ACTIONS(2794), + [anon_sym_PLUS_PLUS2] = ACTIONS(2794), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2796), + [anon_sym_SLASH_SLASH2] = ACTIONS(2796), + [anon_sym_PLUS2] = ACTIONS(2798), + [anon_sym_bit_DASHshl2] = ACTIONS(2800), + [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_bit_DASHand2] = ACTIONS(2802), + [anon_sym_bit_DASHxor2] = ACTIONS(2911), + [anon_sym_bit_DASHor2] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1216)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1216), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2903), + [anon_sym_xor2] = ACTIONS(2909), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), + [anon_sym_bit_DASHor2] = ACTIONS(2865), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1217)] = { + [aux_sym__repeat_newline] = STATE(1234), + [sym_comment] = STATE(1217), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1218)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1218), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2718), + [anon_sym_BANG_TILDE2] = ACTIONS(2718), + [anon_sym_like2] = ACTIONS(2718), + [anon_sym_not_DASHlike2] = ACTIONS(2718), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1219)] = { + [sym_comment] = STATE(1219), + [ts_builtin_sym_end] = ACTIONS(2491), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_in] = ACTIONS(2493), + [sym__newline] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_err_GT_PIPE] = ACTIONS(2491), + [anon_sym_out_GT_PIPE] = ACTIONS(2491), + [anon_sym_e_GT_PIPE] = ACTIONS(2491), + [anon_sym_o_GT_PIPE] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2491), + [anon_sym_GT2] = ACTIONS(2493), + [anon_sym_DASH2] = ACTIONS(2493), + [anon_sym_STAR2] = ACTIONS(2493), + [anon_sym_and2] = ACTIONS(2493), + [anon_sym_xor2] = ACTIONS(2493), + [anon_sym_or2] = ACTIONS(2493), + [anon_sym_not_DASHin2] = ACTIONS(2493), + [anon_sym_has2] = ACTIONS(2493), + [anon_sym_not_DASHhas2] = ACTIONS(2493), + [anon_sym_starts_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2493), + [anon_sym_ends_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2493), + [anon_sym_EQ_EQ2] = ACTIONS(2491), + [anon_sym_BANG_EQ2] = ACTIONS(2491), + [anon_sym_LT2] = ACTIONS(2493), + [anon_sym_LT_EQ2] = ACTIONS(2491), + [anon_sym_GT_EQ2] = ACTIONS(2491), + [anon_sym_EQ_TILDE2] = ACTIONS(2491), + [anon_sym_BANG_TILDE2] = ACTIONS(2493), + [anon_sym_like2] = ACTIONS(2493), + [anon_sym_not_DASHlike2] = ACTIONS(2493), + [anon_sym_STAR_STAR2] = ACTIONS(2493), + [anon_sym_PLUS_PLUS2] = ACTIONS(2493), + [anon_sym_SLASH2] = ACTIONS(2493), + [anon_sym_mod2] = ACTIONS(2493), + [anon_sym_SLASH_SLASH2] = ACTIONS(2493), + [anon_sym_PLUS2] = ACTIONS(2493), + [anon_sym_bit_DASHshl2] = ACTIONS(2493), + [anon_sym_bit_DASHshr2] = ACTIONS(2493), + [anon_sym_bit_DASHand2] = ACTIONS(2493), + [anon_sym_bit_DASHxor2] = ACTIONS(2493), + [anon_sym_bit_DASHor2] = ACTIONS(2493), + [anon_sym_err_GT] = ACTIONS(2493), + [anon_sym_out_GT] = ACTIONS(2493), + [anon_sym_e_GT] = ACTIONS(2493), + [anon_sym_o_GT] = ACTIONS(2493), + [anon_sym_err_PLUSout_GT] = ACTIONS(2493), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2493), + [anon_sym_o_PLUSe_GT] = ACTIONS(2493), + [anon_sym_e_PLUSo_GT] = ACTIONS(2493), + [anon_sym_err_GT_GT] = ACTIONS(2491), + [anon_sym_out_GT_GT] = ACTIONS(2491), + [anon_sym_e_GT_GT] = ACTIONS(2491), + [anon_sym_o_GT_GT] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2491), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1220)] = { + [sym_comment] = STATE(1220), + [ts_builtin_sym_end] = ACTIONS(2640), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_in] = ACTIONS(2642), + [sym__newline] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_err_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_GT_PIPE] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2640), + [anon_sym_GT2] = ACTIONS(2642), + [anon_sym_DASH2] = ACTIONS(2642), + [anon_sym_STAR2] = ACTIONS(2642), + [anon_sym_and2] = ACTIONS(2642), + [anon_sym_xor2] = ACTIONS(2642), + [anon_sym_or2] = ACTIONS(2642), + [anon_sym_not_DASHin2] = ACTIONS(2642), + [anon_sym_has2] = ACTIONS(2642), + [anon_sym_not_DASHhas2] = ACTIONS(2642), + [anon_sym_starts_DASHwith2] = ACTIONS(2642), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2642), + [anon_sym_ends_DASHwith2] = ACTIONS(2642), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2642), + [anon_sym_EQ_EQ2] = ACTIONS(2640), + [anon_sym_BANG_EQ2] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2642), + [anon_sym_LT_EQ2] = ACTIONS(2640), + [anon_sym_GT_EQ2] = ACTIONS(2640), + [anon_sym_EQ_TILDE2] = ACTIONS(2640), + [anon_sym_BANG_TILDE2] = ACTIONS(2642), + [anon_sym_like2] = ACTIONS(2642), + [anon_sym_not_DASHlike2] = ACTIONS(2642), + [anon_sym_STAR_STAR2] = ACTIONS(2642), + [anon_sym_PLUS_PLUS2] = ACTIONS(2642), + [anon_sym_SLASH2] = ACTIONS(2642), + [anon_sym_mod2] = ACTIONS(2642), + [anon_sym_SLASH_SLASH2] = ACTIONS(2642), + [anon_sym_PLUS2] = ACTIONS(2642), + [anon_sym_bit_DASHshl2] = ACTIONS(2642), + [anon_sym_bit_DASHshr2] = ACTIONS(2642), + [anon_sym_bit_DASHand2] = ACTIONS(2642), + [anon_sym_bit_DASHxor2] = ACTIONS(2642), + [anon_sym_bit_DASHor2] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2642), + [anon_sym_out_GT] = ACTIONS(2642), + [anon_sym_e_GT] = ACTIONS(2642), + [anon_sym_o_GT] = ACTIONS(2642), + [anon_sym_err_PLUSout_GT] = ACTIONS(2642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2642), + [anon_sym_o_PLUSe_GT] = ACTIONS(2642), + [anon_sym_e_PLUSo_GT] = ACTIONS(2642), + [anon_sym_err_GT_GT] = ACTIONS(2640), + [anon_sym_out_GT_GT] = ACTIONS(2640), + [anon_sym_e_GT_GT] = ACTIONS(2640), + [anon_sym_o_GT_GT] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1221)] = { + [sym_comment] = STATE(1221), + [ts_builtin_sym_end] = ACTIONS(960), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_in] = ACTIONS(860), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(860), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(860), + [anon_sym_xor2] = ACTIONS(860), + [anon_sym_or2] = ACTIONS(860), + [anon_sym_not_DASHin2] = ACTIONS(860), + [anon_sym_has2] = ACTIONS(860), + [anon_sym_not_DASHhas2] = ACTIONS(860), + [anon_sym_starts_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(860), + [anon_sym_ends_DASHwith2] = ACTIONS(860), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(860), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(860), + [anon_sym_like2] = ACTIONS(860), + [anon_sym_not_DASHlike2] = ACTIONS(860), + [anon_sym_STAR_STAR2] = ACTIONS(860), + [anon_sym_PLUS_PLUS2] = ACTIONS(860), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(860), + [anon_sym_SLASH_SLASH2] = ACTIONS(860), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(860), + [anon_sym_bit_DASHshr2] = ACTIONS(860), + [anon_sym_bit_DASHand2] = ACTIONS(860), + [anon_sym_bit_DASHxor2] = ACTIONS(860), + [anon_sym_bit_DASHor2] = ACTIONS(860), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1222)] = { + [aux_sym__repeat_newline] = STATE(1208), + [sym_comment] = STATE(1222), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2666), + [anon_sym_STAR2] = ACTIONS(2668), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2668), + [anon_sym_mod2] = ACTIONS(2666), + [anon_sym_SLASH_SLASH2] = ACTIONS(2666), + [anon_sym_PLUS2] = ACTIONS(2668), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1223)] = { + [sym_comment] = STATE(1223), + [anon_sym_in] = ACTIONS(2186), + [sym__newline] = ACTIONS(2186), + [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_RPAREN] = ACTIONS(2186), + [anon_sym_GT2] = ACTIONS(2188), + [anon_sym_DASH2] = ACTIONS(2186), + [anon_sym_LBRACE] = ACTIONS(2186), + [anon_sym_STAR2] = ACTIONS(2188), + [anon_sym_and2] = ACTIONS(2186), + [anon_sym_xor2] = ACTIONS(2186), + [anon_sym_or2] = ACTIONS(2186), + [anon_sym_not_DASHin2] = ACTIONS(2186), + [anon_sym_has2] = ACTIONS(2186), + [anon_sym_not_DASHhas2] = ACTIONS(2186), + [anon_sym_starts_DASHwith2] = ACTIONS(2186), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2186), + [anon_sym_ends_DASHwith2] = ACTIONS(2186), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2186), + [anon_sym_EQ_EQ2] = ACTIONS(2186), + [anon_sym_BANG_EQ2] = ACTIONS(2186), + [anon_sym_LT2] = ACTIONS(2188), + [anon_sym_LT_EQ2] = ACTIONS(2186), + [anon_sym_GT_EQ2] = ACTIONS(2186), + [anon_sym_EQ_TILDE2] = ACTIONS(2186), + [anon_sym_BANG_TILDE2] = ACTIONS(2186), + [anon_sym_like2] = ACTIONS(2186), + [anon_sym_not_DASHlike2] = ACTIONS(2186), + [anon_sym_STAR_STAR2] = ACTIONS(2186), + [anon_sym_PLUS_PLUS2] = ACTIONS(2186), + [anon_sym_SLASH2] = ACTIONS(2188), + [anon_sym_mod2] = ACTIONS(2186), + [anon_sym_SLASH_SLASH2] = ACTIONS(2186), + [anon_sym_PLUS2] = ACTIONS(2188), + [anon_sym_bit_DASHshl2] = ACTIONS(2186), + [anon_sym_bit_DASHshr2] = ACTIONS(2186), + [anon_sym_bit_DASHand2] = ACTIONS(2186), + [anon_sym_bit_DASHxor2] = ACTIONS(2186), + [anon_sym_bit_DASHor2] = ACTIONS(2186), + [anon_sym_err_GT] = ACTIONS(2188), + [anon_sym_out_GT] = ACTIONS(2188), + [anon_sym_e_GT] = ACTIONS(2188), + [anon_sym_o_GT] = ACTIONS(2188), + [anon_sym_err_PLUSout_GT] = ACTIONS(2188), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2188), + [anon_sym_o_PLUSe_GT] = ACTIONS(2188), + [anon_sym_e_PLUSo_GT] = ACTIONS(2188), + [anon_sym_err_GT_GT] = ACTIONS(2186), + [anon_sym_out_GT_GT] = ACTIONS(2186), + [anon_sym_e_GT_GT] = ACTIONS(2186), + [anon_sym_o_GT_GT] = ACTIONS(2186), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2186), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2186), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2186), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2186), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1224)] = { + [aux_sym__repeat_newline] = STATE(1155), + [sym_comment] = STATE(1224), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1225)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1225), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_err_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_GT_PIPE] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2670), + [anon_sym_xor2] = ACTIONS(2670), + [anon_sym_or2] = ACTIONS(2670), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2670), + [anon_sym_bit_DASHor2] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2670), + [anon_sym_out_GT_GT] = ACTIONS(2670), + [anon_sym_e_GT_GT] = ACTIONS(2670), + [anon_sym_o_GT_GT] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1226)] = { + [aux_sym__repeat_newline] = STATE(1182), + [sym_comment] = STATE(1226), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1227)] = { + [sym_comment] = STATE(1227), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1613), + [anon_sym_DASH2] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1613), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1613), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1706), + [anon_sym_SLASH2] = ACTIONS(1613), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1613), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_COLON2] = ACTIONS(1708), + [anon_sym_err_GT] = ACTIONS(1613), + [anon_sym_out_GT] = ACTIONS(1613), + [anon_sym_e_GT] = ACTIONS(1613), + [anon_sym_o_GT] = ACTIONS(1613), + [anon_sym_err_PLUSout_GT] = ACTIONS(1613), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1613), + [anon_sym_o_PLUSe_GT] = ACTIONS(1613), + [anon_sym_e_PLUSo_GT] = ACTIONS(1613), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1228)] = { + [aux_sym__repeat_newline] = STATE(1211), + [sym_comment] = STATE(1228), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2776), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2778), + [anon_sym_bit_DASHshl2] = ACTIONS(2776), + [anon_sym_bit_DASHshr2] = ACTIONS(2776), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1229)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1229), + [anon_sym_in] = ACTIONS(2718), + [sym__newline] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2720), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2718), + [anon_sym_has2] = ACTIONS(2718), + [anon_sym_not_DASHhas2] = ACTIONS(2718), + [anon_sym_starts_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2718), + [anon_sym_ends_DASHwith2] = ACTIONS(2718), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2718), + [anon_sym_EQ_EQ2] = ACTIONS(2718), + [anon_sym_BANG_EQ2] = ACTIONS(2718), + [anon_sym_LT2] = ACTIONS(2720), + [anon_sym_LT_EQ2] = ACTIONS(2718), + [anon_sym_GT_EQ2] = ACTIONS(2718), + [anon_sym_EQ_TILDE2] = ACTIONS(2718), + [anon_sym_BANG_TILDE2] = ACTIONS(2718), + [anon_sym_like2] = ACTIONS(2718), + [anon_sym_not_DASHlike2] = ACTIONS(2718), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2718), + [anon_sym_bit_DASHshr2] = ACTIONS(2718), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1230)] = { - [sym__expression] = STATE(4724), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(1238), [sym_comment] = STATE(1230), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1231)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1231), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2718), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1232)] = { + [sym_comment] = STATE(1232), + [ts_builtin_sym_end] = ACTIONS(960), + [anon_sym_in] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(860), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_STAR2] = ACTIONS(860), + [anon_sym_and2] = ACTIONS(960), + [anon_sym_xor2] = ACTIONS(960), + [anon_sym_or2] = ACTIONS(960), + [anon_sym_not_DASHin2] = ACTIONS(960), + [anon_sym_has2] = ACTIONS(960), + [anon_sym_not_DASHhas2] = ACTIONS(960), + [anon_sym_starts_DASHwith2] = ACTIONS(960), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(960), + [anon_sym_ends_DASHwith2] = ACTIONS(960), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(960), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(860), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(960), + [anon_sym_like2] = ACTIONS(960), + [anon_sym_not_DASHlike2] = ACTIONS(960), + [anon_sym_STAR_STAR2] = ACTIONS(960), + [anon_sym_PLUS_PLUS2] = ACTIONS(960), + [anon_sym_SLASH2] = ACTIONS(860), + [anon_sym_mod2] = ACTIONS(960), + [anon_sym_SLASH_SLASH2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(860), + [anon_sym_bit_DASHshl2] = ACTIONS(960), + [anon_sym_bit_DASHshr2] = ACTIONS(960), + [anon_sym_bit_DASHand2] = ACTIONS(960), + [anon_sym_bit_DASHxor2] = ACTIONS(960), + [anon_sym_bit_DASHor2] = ACTIONS(960), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [sym__unquoted_pattern] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1233)] = { + [aux_sym__repeat_newline] = STATE(1236), + [sym_comment] = STATE(1233), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2776), + [anon_sym_STAR2] = ACTIONS(2778), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2778), + [anon_sym_mod2] = ACTIONS(2776), + [anon_sym_SLASH_SLASH2] = ACTIONS(2776), + [anon_sym_PLUS2] = ACTIONS(2778), + [anon_sym_bit_DASHshl2] = ACTIONS(2776), + [anon_sym_bit_DASHshr2] = ACTIONS(2776), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1234)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1234), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2718), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1235)] = { + [aux_sym__repeat_newline] = STATE(1147), + [sym_comment] = STATE(1235), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2831), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1236)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1236), + [anon_sym_in] = ACTIONS(2670), + [sym__newline] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_err_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_GT_PIPE] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_GT2] = ACTIONS(2672), + [anon_sym_DASH2] = ACTIONS(2670), + [anon_sym_STAR2] = ACTIONS(2672), + [anon_sym_and2] = ACTIONS(2670), + [anon_sym_xor2] = ACTIONS(2670), + [anon_sym_or2] = ACTIONS(2670), + [anon_sym_not_DASHin2] = ACTIONS(2670), + [anon_sym_has2] = ACTIONS(2670), + [anon_sym_not_DASHhas2] = ACTIONS(2670), + [anon_sym_starts_DASHwith2] = ACTIONS(2670), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), + [anon_sym_ends_DASHwith2] = ACTIONS(2670), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), + [anon_sym_EQ_EQ2] = ACTIONS(2670), + [anon_sym_BANG_EQ2] = ACTIONS(2670), + [anon_sym_LT2] = ACTIONS(2672), + [anon_sym_LT_EQ2] = ACTIONS(2670), + [anon_sym_GT_EQ2] = ACTIONS(2670), + [anon_sym_EQ_TILDE2] = ACTIONS(2670), + [anon_sym_BANG_TILDE2] = ACTIONS(2670), + [anon_sym_like2] = ACTIONS(2670), + [anon_sym_not_DASHlike2] = ACTIONS(2670), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2672), + [anon_sym_mod2] = ACTIONS(2670), + [anon_sym_SLASH_SLASH2] = ACTIONS(2670), + [anon_sym_PLUS2] = ACTIONS(2672), + [anon_sym_bit_DASHshl2] = ACTIONS(2670), + [anon_sym_bit_DASHshr2] = ACTIONS(2670), + [anon_sym_bit_DASHand2] = ACTIONS(2670), + [anon_sym_bit_DASHxor2] = ACTIONS(2670), + [anon_sym_bit_DASHor2] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2670), + [anon_sym_out_GT_GT] = ACTIONS(2670), + [anon_sym_e_GT_GT] = ACTIONS(2670), + [anon_sym_o_GT_GT] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1237)] = { + [aux_sym__repeat_newline] = STATE(1159), + [sym_comment] = STATE(1237), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2869), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2831), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1238)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1238), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_err_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_GT_PIPE] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2718), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2718), + [anon_sym_xor2] = ACTIONS(2718), + [anon_sym_or2] = ACTIONS(2718), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), + [anon_sym_bit_DASHor2] = ACTIONS(2718), + [anon_sym_err_GT] = ACTIONS(2720), + [anon_sym_out_GT] = ACTIONS(2720), + [anon_sym_e_GT] = ACTIONS(2720), + [anon_sym_o_GT] = ACTIONS(2720), + [anon_sym_err_PLUSout_GT] = ACTIONS(2720), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2720), + [anon_sym_o_PLUSe_GT] = ACTIONS(2720), + [anon_sym_e_PLUSo_GT] = ACTIONS(2720), + [anon_sym_err_GT_GT] = ACTIONS(2718), + [anon_sym_out_GT_GT] = ACTIONS(2718), + [anon_sym_e_GT_GT] = ACTIONS(2718), + [anon_sym_o_GT_GT] = ACTIONS(2718), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2718), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2718), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2718), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1239)] = { + [aux_sym__repeat_newline] = STATE(1166), + [sym_comment] = STATE(1239), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2869), + [anon_sym_xor2] = ACTIONS(2907), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2831), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1240)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1240), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_err_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_GT_PIPE] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2670), + [anon_sym_xor2] = ACTIONS(2670), + [anon_sym_or2] = ACTIONS(2670), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2861), + [anon_sym_bit_DASHxor2] = ACTIONS(2863), + [anon_sym_bit_DASHor2] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2670), + [anon_sym_out_GT_GT] = ACTIONS(2670), + [anon_sym_e_GT_GT] = ACTIONS(2670), + [anon_sym_o_GT_GT] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1241)] = { + [aux_sym__repeat_newline] = STATE(1177), + [sym_comment] = STATE(1241), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1242)] = { + [aux_sym__repeat_newline] = STATE(1183), + [sym_comment] = STATE(1242), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [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(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1243)] = { + [sym__expression] = STATE(4682), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_comment] = STATE(1243), + [aux_sym_cmd_identifier_token2] = ACTIONS(2626), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2630), + [aux_sym_cmd_identifier_token3] = ACTIONS(2632), + [aux_sym_cmd_identifier_token4] = ACTIONS(2632), + [aux_sym_cmd_identifier_token5] = ACTIONS(2632), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -137008,17 +137907,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(2636), + [aux_sym__val_number_decimal_token4] = ACTIONS(2636), + [aux_sym__val_number_token1] = ACTIONS(2632), + [aux_sym__val_number_token2] = ACTIONS(2632), + [aux_sym__val_number_token3] = ACTIONS(2632), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2638), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -137027,112 +137926,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1231)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1231), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1232)] = { - [sym__expression] = STATE(4726), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), + [STATE(1244)] = { + [sym__expression] = STATE(4718), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1232), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_comment] = STATE(1244), + [aux_sym_cmd_identifier_token2] = ACTIONS(2626), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2630), + [aux_sym_cmd_identifier_token3] = ACTIONS(2632), + [aux_sym_cmd_identifier_token4] = ACTIONS(2632), + [aux_sym_cmd_identifier_token5] = ACTIONS(2632), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -137142,17 +137974,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(2636), + [aux_sym__val_number_decimal_token4] = ACTIONS(2636), + [aux_sym__val_number_token1] = ACTIONS(2632), + [aux_sym__val_number_token2] = ACTIONS(2632), + [aux_sym__val_number_token3] = ACTIONS(2632), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2638), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -137161,334 +137993,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1233)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1233), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1234)] = { - [aux_sym__repeat_newline] = STATE(1231), - [sym_comment] = STATE(1234), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1235)] = { - [aux_sym__repeat_newline] = STATE(1196), - [sym_comment] = STATE(1235), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [STATE(1245)] = { + [sym__ctrl_match_body] = STATE(5036), + [sym_match_arm] = STATE(4388), + [sym_default_arm] = STATE(4388), + [sym_match_pattern] = STATE(4984), + [sym__match_pattern] = STATE(3767), + [sym__match_pattern_expression] = STATE(4302), + [sym__match_pattern_value] = STATE(4076), + [sym__match_pattern_list] = STATE(4274), + [sym__match_pattern_record] = STATE(4284), + [sym_expr_parenthesized] = STATE(3727), + [sym_val_range] = STATE(4076), + [sym__val_range] = STATE(4927), + [sym_val_nothing] = STATE(4284), + [sym_val_bool] = STATE(4026), + [sym_val_variable] = STATE(3627), + [sym_val_number] = STATE(4284), + [sym__val_number_decimal] = STATE(3488), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(4284), + [sym_val_filesize] = STATE(4284), + [sym_val_binary] = STATE(4284), + [sym_val_string] = STATE(4284), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_table] = STATE(4284), + [sym_unquoted] = STATE(4082), + [sym__unquoted_anonymous_prefix] = STATE(4927), + [sym_comment] = STATE(1245), + [aux_sym__types_body_repeat1] = STATE(1347), + [aux_sym__ctrl_match_body_repeat1] = STATE(1368), + [anon_sym_true] = ACTIONS(2871), + [anon_sym_false] = ACTIONS(2871), + [anon_sym_null] = ACTIONS(2873), + [aux_sym_cmd_identifier_token3] = ACTIONS(2875), + [aux_sym_cmd_identifier_token4] = ACTIONS(2875), + [aux_sym_cmd_identifier_token5] = ACTIONS(2875), + [sym__newline] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_LPAREN] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(2881), + [anon_sym_LBRACE] = ACTIONS(2883), + [anon_sym_RBRACE] = ACTIONS(2922), + [anon_sym__] = ACTIONS(2887), + [anon_sym_DOT_DOT] = ACTIONS(2889), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), + [anon_sym_DOT_DOT_LT] = ACTIONS(2891), + [aux_sym__val_number_decimal_token1] = ACTIONS(2893), + [aux_sym__val_number_decimal_token2] = ACTIONS(2895), + [aux_sym__val_number_decimal_token3] = ACTIONS(2897), + [aux_sym__val_number_decimal_token4] = ACTIONS(2897), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2899), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [aux_sym_unquoted_token1] = ACTIONS(1914), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(1236)] = { - [aux_sym__repeat_newline] = STATE(1137), - [sym_comment] = STATE(1236), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [STATE(1246)] = { + [aux_sym__repeat_newline] = STATE(1199), + [sym_comment] = STATE(1246), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2776), + [anon_sym_bit_DASHshr2] = ACTIONS(2776), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1237)] = { - [sym__ctrl_match_body] = STATE(5168), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), - [sym_comment] = STATE(1237), + [STATE(1247)] = { + [sym__ctrl_match_body] = STATE(4861), + [sym_match_arm] = STATE(4388), + [sym_default_arm] = STATE(4388), + [sym_match_pattern] = STATE(4984), + [sym__match_pattern] = STATE(3767), + [sym__match_pattern_expression] = STATE(4302), + [sym__match_pattern_value] = STATE(4076), + [sym__match_pattern_list] = STATE(4274), + [sym__match_pattern_record] = STATE(4284), + [sym_expr_parenthesized] = STATE(3727), + [sym_val_range] = STATE(4076), + [sym__val_range] = STATE(4927), + [sym_val_nothing] = STATE(4284), + [sym_val_bool] = STATE(4026), + [sym_val_variable] = STATE(3627), + [sym_val_number] = STATE(4284), + [sym__val_number_decimal] = STATE(3488), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(4284), + [sym_val_filesize] = STATE(4284), + [sym_val_binary] = STATE(4284), + [sym_val_string] = STATE(4284), + [sym__raw_str] = STATE(2234), + [sym__str_double_quotes] = STATE(2234), + [sym__str_single_quotes] = STATE(2234), + [sym__str_back_ticks] = STATE(2234), + [sym_val_table] = STATE(4284), + [sym_unquoted] = STATE(4082), + [sym__unquoted_anonymous_prefix] = STATE(4927), + [sym_comment] = STATE(1247), [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2922), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), + [aux_sym__ctrl_match_body_repeat1] = STATE(1368), + [anon_sym_true] = ACTIONS(2871), + [anon_sym_false] = ACTIONS(2871), + [anon_sym_null] = ACTIONS(2873), + [aux_sym_cmd_identifier_token3] = ACTIONS(2875), + [aux_sym_cmd_identifier_token4] = ACTIONS(2875), + [aux_sym_cmd_identifier_token5] = ACTIONS(2875), + [sym__newline] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_LPAREN] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(2881), + [anon_sym_LBRACE] = ACTIONS(2883), + [anon_sym_RBRACE] = ACTIONS(2924), + [anon_sym__] = ACTIONS(2887), + [anon_sym_DOT_DOT] = ACTIONS(2889), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2891), + [anon_sym_DOT_DOT_LT] = ACTIONS(2891), + [aux_sym__val_number_decimal_token1] = ACTIONS(2893), + [aux_sym__val_number_decimal_token2] = ACTIONS(2895), + [aux_sym__val_number_decimal_token3] = ACTIONS(2897), + [aux_sym__val_number_decimal_token4] = ACTIONS(2897), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), + [sym_val_date] = ACTIONS(2899), [anon_sym_DQUOTE] = ACTIONS(1786), [anon_sym_SQUOTE] = ACTIONS(1788), [anon_sym_BQUOTE] = ACTIONS(1790), @@ -137496,346 +138194,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(1238)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1238), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), + [STATE(1248)] = { + [sym_comment] = STATE(1248), + [anon_sym_in] = ACTIONS(2576), + [sym__newline] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_err_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_GT_PIPE] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_GT2] = ACTIONS(2784), + [anon_sym_DASH2] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR2] = ACTIONS(2788), + [anon_sym_and2] = ACTIONS(2576), + [anon_sym_xor2] = ACTIONS(2576), + [anon_sym_or2] = ACTIONS(2576), + [anon_sym_not_DASHin2] = ACTIONS(2576), + [anon_sym_has2] = ACTIONS(2576), + [anon_sym_not_DASHhas2] = ACTIONS(2576), + [anon_sym_starts_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2576), + [anon_sym_ends_DASHwith2] = ACTIONS(2576), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2576), + [anon_sym_EQ_EQ2] = ACTIONS(2790), + [anon_sym_BANG_EQ2] = ACTIONS(2790), + [anon_sym_LT2] = ACTIONS(2784), + [anon_sym_LT_EQ2] = ACTIONS(2790), + [anon_sym_GT_EQ2] = ACTIONS(2790), + [anon_sym_EQ_TILDE2] = ACTIONS(2576), + [anon_sym_BANG_TILDE2] = ACTIONS(2576), + [anon_sym_like2] = ACTIONS(2576), + [anon_sym_not_DASHlike2] = ACTIONS(2576), + [anon_sym_STAR_STAR2] = ACTIONS(2794), + [anon_sym_PLUS_PLUS2] = ACTIONS(2794), + [anon_sym_SLASH2] = ACTIONS(2788), + [anon_sym_mod2] = ACTIONS(2796), + [anon_sym_SLASH_SLASH2] = ACTIONS(2796), [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_bit_DASHshl2] = ACTIONS(2800), + [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_bit_DASHand2] = ACTIONS(2576), + [anon_sym_bit_DASHxor2] = ACTIONS(2576), + [anon_sym_bit_DASHor2] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(2578), + [anon_sym_out_GT] = ACTIONS(2578), + [anon_sym_e_GT] = ACTIONS(2578), + [anon_sym_o_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT] = ACTIONS(2578), + [anon_sym_err_GT_GT] = ACTIONS(2576), + [anon_sym_out_GT_GT] = ACTIONS(2576), + [anon_sym_e_GT_GT] = ACTIONS(2576), + [anon_sym_o_GT_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2576), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1239)] = { - [sym_comment] = STATE(1239), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1240)] = { - [sym__expression] = STATE(4737), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1240), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(1249)] = { + [aux_sym__repeat_newline] = STATE(1213), + [sym_comment] = STATE(1249), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1241)] = { - [aux_sym__repeat_newline] = STATE(1211), - [sym_comment] = STATE(1241), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [STATE(1250)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_comment] = STATE(1250), + [anon_sym_in] = ACTIONS(2732), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2732), + [anon_sym_has2] = ACTIONS(2732), + [anon_sym_not_DASHhas2] = ACTIONS(2732), + [anon_sym_starts_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), + [anon_sym_ends_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2732), + [anon_sym_BANG_TILDE2] = ACTIONS(2732), + [anon_sym_like2] = ACTIONS(2732), + [anon_sym_not_DASHlike2] = ACTIONS(2732), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2732), + [anon_sym_bit_DASHxor2] = ACTIONS(2732), + [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1242)] = { - [sym_comment] = STATE(1242), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), + [STATE(1251)] = { + [aux_sym__repeat_newline] = STATE(1225), + [sym_comment] = STATE(1251), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1243)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1243), + [STATE(1252)] = { + [aux_sym__repeat_newline] = STATE(1250), + [sym_comment] = STATE(1252), [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), + [sym__newline] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2706), [anon_sym_PIPE] = ACTIONS(2706), [anon_sym_err_GT_PIPE] = ACTIONS(2706), @@ -137847,9 +138478,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), [anon_sym_and2] = ACTIONS(2706), [anon_sym_xor2] = ACTIONS(2706), [anon_sym_or2] = ACTIONS(2706), @@ -137860,23 +138491,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), [anon_sym_ends_DASHwith2] = ACTIONS(2706), [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), [anon_sym_EQ_TILDE2] = ACTIONS(2706), [anon_sym_BANG_TILDE2] = ACTIONS(2706), [anon_sym_like2] = ACTIONS(2706), [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), [anon_sym_bit_DASHand2] = ACTIONS(2706), [anon_sym_bit_DASHxor2] = ACTIONS(2706), [anon_sym_bit_DASHor2] = ACTIONS(2706), @@ -137898,916 +138529,447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1244)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1244), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1245)] = { - [aux_sym__repeat_newline] = STATE(1225), - [sym_comment] = STATE(1245), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1246)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1246), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1247)] = { - [sym_comment] = STATE(1247), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1248)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1248), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1249)] = { - [aux_sym__repeat_newline] = STATE(1141), - [sym_comment] = STATE(1249), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1250)] = { - [aux_sym__repeat_newline] = STATE(1222), - [sym_comment] = STATE(1250), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1251)] = { - [sym_comment] = STATE(1251), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1252)] = { - [sym_comment] = STATE(1252), - [anon_sym_export] = ACTIONS(2924), - [anon_sym_alias] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_mut] = ACTIONS(2928), - [anon_sym_const] = ACTIONS(2928), - [aux_sym_cmd_identifier_token1] = ACTIONS(2924), - [anon_sym_def] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_export_DASHenv] = ACTIONS(2928), - [anon_sym_extern] = ACTIONS(2928), - [anon_sym_module] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_loop] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_else] = ACTIONS(2928), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_catch] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_in] = ACTIONS(2924), - [anon_sym_true] = ACTIONS(2928), - [anon_sym_false] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2928), - [aux_sym_cmd_identifier_token3] = ACTIONS(2928), - [aux_sym_cmd_identifier_token4] = ACTIONS(2928), - [aux_sym_cmd_identifier_token5] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_AT] = ACTIONS(2932), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_DASH2] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_RBRACE] = ACTIONS(2932), - [anon_sym_DOT_DOT] = ACTIONS(2935), - [anon_sym_where] = ACTIONS(2932), - [aux_sym_expr_unary_token1] = ACTIONS(2932), - [anon_sym_PLUS2] = ACTIONS(2938), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2932), - [anon_sym_DOT_DOT_LT] = ACTIONS(2932), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2940), - [aux_sym__val_number_decimal_token1] = ACTIONS(2924), - [aux_sym__val_number_decimal_token2] = ACTIONS(2928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2928), - [aux_sym__val_number_decimal_token4] = ACTIONS(2928), - [aux_sym__val_number_token1] = ACTIONS(2928), - [aux_sym__val_number_token2] = ACTIONS(2928), - [aux_sym__val_number_token3] = ACTIONS(2928), - [anon_sym_0b] = ACTIONS(2935), - [anon_sym_0o] = ACTIONS(2935), - [anon_sym_0x] = ACTIONS(2935), - [sym_val_date] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2940), - [anon_sym_CARET] = ACTIONS(2932), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2928), - }, [STATE(1253)] = { - [aux_sym__repeat_newline] = STATE(1146), + [aux_sym__repeat_newline] = STATE(1240), [sym_comment] = STATE(1253), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2817), + [anon_sym_BANG_TILDE2] = ACTIONS(2817), + [anon_sym_like2] = ACTIONS(2817), + [anon_sym_not_DASHlike2] = ACTIONS(2817), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2827), + [anon_sym_bit_DASHxor2] = ACTIONS(2829), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1254)] = { + [aux_sym__repeat_newline] = STATE(1185), [sym_comment] = STATE(1254), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2728), + [sym__newline] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_err_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_GT_PIPE] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_GT2] = ACTIONS(2730), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2728), + [anon_sym_xor2] = ACTIONS(2728), + [anon_sym_or2] = ACTIONS(2728), + [anon_sym_not_DASHin2] = ACTIONS(2728), + [anon_sym_has2] = ACTIONS(2728), + [anon_sym_not_DASHhas2] = ACTIONS(2728), + [anon_sym_starts_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), + [anon_sym_ends_DASHwith2] = ACTIONS(2728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), + [anon_sym_EQ_EQ2] = ACTIONS(2728), + [anon_sym_BANG_EQ2] = ACTIONS(2728), + [anon_sym_LT2] = ACTIONS(2730), + [anon_sym_LT_EQ2] = ACTIONS(2728), + [anon_sym_GT_EQ2] = ACTIONS(2728), + [anon_sym_EQ_TILDE2] = ACTIONS(2728), + [anon_sym_BANG_TILDE2] = ACTIONS(2728), + [anon_sym_like2] = ACTIONS(2728), + [anon_sym_not_DASHlike2] = ACTIONS(2728), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2728), + [anon_sym_bit_DASHor2] = ACTIONS(2728), + [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(2728), + [anon_sym_out_GT_GT] = ACTIONS(2728), + [anon_sym_e_GT_GT] = ACTIONS(2728), + [anon_sym_o_GT_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1255)] = { - [aux_sym__repeat_newline] = STATE(1173), + [aux_sym__repeat_newline] = STATE(1198), [sym_comment] = STATE(1255), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2746), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2746), - [anon_sym_mod2] = ACTIONS(2744), - [anon_sym_SLASH_SLASH2] = ACTIONS(2744), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2809), + [anon_sym_DASH2] = ACTIONS(2811), + [anon_sym_STAR2] = ACTIONS(2813), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2815), + [anon_sym_BANG_EQ2] = ACTIONS(2815), + [anon_sym_LT2] = ACTIONS(2809), + [anon_sym_LT_EQ2] = ACTIONS(2815), + [anon_sym_GT_EQ2] = ACTIONS(2815), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2819), + [anon_sym_PLUS_PLUS2] = ACTIONS(2819), + [anon_sym_SLASH2] = ACTIONS(2813), + [anon_sym_mod2] = ACTIONS(2821), + [anon_sym_SLASH_SLASH2] = ACTIONS(2821), + [anon_sym_PLUS2] = ACTIONS(2823), + [anon_sym_bit_DASHshl2] = ACTIONS(2825), + [anon_sym_bit_DASHshr2] = ACTIONS(2825), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1256)] = { - [sym__expression] = STATE(4756), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), [sym_comment] = STATE(1256), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(2102), + [anon_sym_in] = ACTIONS(2102), + [sym__newline] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_err_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_GT_PIPE] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2102), + [anon_sym_GT2] = ACTIONS(2104), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_STAR2] = ACTIONS(2104), + [anon_sym_and2] = ACTIONS(2102), + [anon_sym_xor2] = ACTIONS(2102), + [anon_sym_or2] = ACTIONS(2102), + [anon_sym_not_DASHin2] = ACTIONS(2102), + [anon_sym_has2] = ACTIONS(2102), + [anon_sym_not_DASHhas2] = ACTIONS(2102), + [anon_sym_starts_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2102), + [anon_sym_ends_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2102), + [anon_sym_EQ_EQ2] = ACTIONS(2102), + [anon_sym_BANG_EQ2] = ACTIONS(2102), + [anon_sym_LT2] = ACTIONS(2104), + [anon_sym_LT_EQ2] = ACTIONS(2102), + [anon_sym_GT_EQ2] = ACTIONS(2102), + [anon_sym_EQ_TILDE2] = ACTIONS(2102), + [anon_sym_BANG_TILDE2] = ACTIONS(2102), + [anon_sym_like2] = ACTIONS(2102), + [anon_sym_not_DASHlike2] = ACTIONS(2102), + [anon_sym_LPAREN2] = ACTIONS(2102), + [anon_sym_STAR_STAR2] = ACTIONS(2102), + [anon_sym_PLUS_PLUS2] = ACTIONS(2102), + [anon_sym_SLASH2] = ACTIONS(2104), + [anon_sym_mod2] = ACTIONS(2102), + [anon_sym_SLASH_SLASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_bit_DASHshl2] = ACTIONS(2102), + [anon_sym_bit_DASHshr2] = ACTIONS(2102), + [anon_sym_bit_DASHand2] = ACTIONS(2102), + [anon_sym_bit_DASHxor2] = ACTIONS(2102), + [anon_sym_bit_DASHor2] = ACTIONS(2102), + [anon_sym_err_GT] = ACTIONS(2104), + [anon_sym_out_GT] = ACTIONS(2104), + [anon_sym_e_GT] = ACTIONS(2104), + [anon_sym_o_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT] = ACTIONS(2104), + [anon_sym_err_GT_GT] = ACTIONS(2102), + [anon_sym_out_GT_GT] = ACTIONS(2102), + [anon_sym_e_GT_GT] = ACTIONS(2102), + [anon_sym_o_GT_GT] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2102), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1257)] = { - [sym__expression] = STATE(4763), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1257), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [anon_sym_in] = ACTIONS(2732), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2734), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2732), + [anon_sym_has2] = ACTIONS(2732), + [anon_sym_not_DASHhas2] = ACTIONS(2732), + [anon_sym_starts_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), + [anon_sym_ends_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), + [anon_sym_EQ_EQ2] = ACTIONS(2732), + [anon_sym_BANG_EQ2] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2734), + [anon_sym_LT_EQ2] = ACTIONS(2732), + [anon_sym_GT_EQ2] = ACTIONS(2732), + [anon_sym_EQ_TILDE2] = ACTIONS(2732), + [anon_sym_BANG_TILDE2] = ACTIONS(2732), + [anon_sym_like2] = ACTIONS(2732), + [anon_sym_not_DASHlike2] = ACTIONS(2732), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2732), + [anon_sym_bit_DASHxor2] = ACTIONS(2732), + [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1258)] = { + [sym_comment] = STATE(1258), + [anon_sym_export] = ACTIONS(2926), + [anon_sym_alias] = ACTIONS(2930), + [anon_sym_let] = ACTIONS(2930), + [anon_sym_mut] = ACTIONS(2930), + [anon_sym_const] = ACTIONS(2930), + [aux_sym_cmd_identifier_token1] = ACTIONS(2926), + [anon_sym_def] = ACTIONS(2930), + [anon_sym_use] = ACTIONS(2930), + [anon_sym_export_DASHenv] = ACTIONS(2930), + [anon_sym_extern] = ACTIONS(2930), + [anon_sym_module] = ACTIONS(2930), + [anon_sym_for] = ACTIONS(2930), + [anon_sym_loop] = ACTIONS(2930), + [anon_sym_while] = ACTIONS(2930), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_else] = ACTIONS(2930), + [anon_sym_try] = ACTIONS(2930), + [anon_sym_catch] = ACTIONS(2930), + [anon_sym_match] = ACTIONS(2930), + [anon_sym_in] = ACTIONS(2926), + [anon_sym_true] = ACTIONS(2930), + [anon_sym_false] = ACTIONS(2930), + [anon_sym_null] = ACTIONS(2930), + [aux_sym_cmd_identifier_token3] = ACTIONS(2930), + [aux_sym_cmd_identifier_token4] = ACTIONS(2930), + [aux_sym_cmd_identifier_token5] = ACTIONS(2930), + [sym__newline] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_AT] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_DOLLAR] = ACTIONS(2926), + [anon_sym_DASH2] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_RBRACE] = ACTIONS(2934), + [anon_sym_DOT_DOT] = ACTIONS(2937), + [anon_sym_where] = ACTIONS(2934), + [aux_sym_expr_unary_token1] = ACTIONS(2934), + [anon_sym_PLUS2] = ACTIONS(2940), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2934), + [anon_sym_DOT_DOT_LT] = ACTIONS(2934), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2942), + [aux_sym__val_number_decimal_token1] = ACTIONS(2926), + [aux_sym__val_number_decimal_token2] = ACTIONS(2930), + [aux_sym__val_number_decimal_token3] = ACTIONS(2930), + [aux_sym__val_number_decimal_token4] = ACTIONS(2930), + [aux_sym__val_number_token1] = ACTIONS(2930), + [aux_sym__val_number_token2] = ACTIONS(2930), + [aux_sym__val_number_token3] = ACTIONS(2930), + [anon_sym_0b] = ACTIONS(2937), + [anon_sym_0o] = ACTIONS(2937), + [anon_sym_0x] = ACTIONS(2937), + [sym_val_date] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [anon_sym_BQUOTE] = ACTIONS(2930), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2930), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2930), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2942), + [anon_sym_CARET] = ACTIONS(2934), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2930), + }, + [STATE(1259)] = { + [sym__expression] = STATE(4737), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), + [sym__expr_binary_expression] = STATE(2215), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_comment] = STATE(1259), + [aux_sym_cmd_identifier_token2] = ACTIONS(2626), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2630), + [aux_sym_cmd_identifier_token3] = ACTIONS(2632), + [aux_sym_cmd_identifier_token4] = ACTIONS(2632), + [aux_sym_cmd_identifier_token5] = ACTIONS(2632), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -138817,17 +138979,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(2636), + [aux_sym__val_number_decimal_token4] = ACTIONS(2636), + [aux_sym__val_number_token1] = ACTIONS(2632), + [aux_sym__val_number_token2] = ACTIONS(2632), + [aux_sym__val_number_token3] = ACTIONS(2632), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2638), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138836,45 +138998,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1258)] = { - [sym__expression] = STATE(4776), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), + [STATE(1260)] = { + [sym__expression] = STATE(4758), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1258), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_comment] = STATE(1260), + [aux_sym_cmd_identifier_token2] = ACTIONS(2626), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2630), + [aux_sym_cmd_identifier_token3] = ACTIONS(2632), + [aux_sym_cmd_identifier_token4] = ACTIONS(2632), + [aux_sym_cmd_identifier_token5] = ACTIONS(2632), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -138884,17 +139046,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(2636), + [aux_sym__val_number_decimal_token4] = ACTIONS(2636), + [aux_sym__val_number_token1] = ACTIONS(2632), + [aux_sym__val_number_token2] = ACTIONS(2632), + [aux_sym__val_number_token3] = ACTIONS(2632), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2638), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138903,45 +139065,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1259)] = { - [sym__expression] = STATE(4779), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), + [STATE(1261)] = { + [sym__expression] = STATE(4761), + [sym_expr_unary] = STATE(939), + [sym__expr_unary_minus] = STATE(901), + [sym_expr_binary] = STATE(939), [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1259), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(939), + [sym__value] = STATE(939), + [sym_val_nothing] = STATE(938), + [sym_val_bool] = STATE(938), + [sym_val_variable] = STATE(709), + [sym_val_cellpath] = STATE(938), + [sym_val_number] = STATE(938), + [sym__val_number_decimal] = STATE(1841), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(938), + [sym_val_filesize] = STATE(938), + [sym_val_binary] = STATE(938), + [sym_val_string] = STATE(938), + [sym__raw_str] = STATE(419), + [sym__str_double_quotes] = STATE(419), + [sym__str_single_quotes] = STATE(419), + [sym__str_back_ticks] = STATE(419), + [sym_val_interpolated] = STATE(938), + [sym__inter_single_quotes] = STATE(786), + [sym__inter_double_quotes] = STATE(787), + [sym_val_list] = STATE(938), + [sym_val_record] = STATE(938), + [sym_val_table] = STATE(938), + [sym_val_closure] = STATE(938), + [sym_comment] = STATE(1261), + [aux_sym_cmd_identifier_token2] = ACTIONS(2626), + [anon_sym_true] = ACTIONS(2628), + [anon_sym_false] = ACTIONS(2628), + [anon_sym_null] = ACTIONS(2630), + [aux_sym_cmd_identifier_token3] = ACTIONS(2632), + [aux_sym_cmd_identifier_token4] = ACTIONS(2632), + [aux_sym_cmd_identifier_token5] = ACTIONS(2632), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1022), @@ -138951,17 +139113,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1906), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(2636), + [aux_sym__val_number_decimal_token4] = ACTIONS(2636), + [aux_sym__val_number_token1] = ACTIONS(2632), + [aux_sym__val_number_token2] = ACTIONS(2632), + [aux_sym__val_number_token3] = ACTIONS(2632), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2638), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138970,221 +139132,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1260)] = { - [sym__ctrl_match_body] = STATE(5167), - [sym_match_arm] = STATE(4607), - [sym_default_arm] = STATE(4607), - [sym_match_pattern] = STATE(5173), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4285), - [sym__match_pattern_value] = STATE(4299), - [sym__match_pattern_list] = STATE(4302), - [sym__match_pattern_record] = STATE(4309), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4299), - [sym__val_range] = STATE(4884), - [sym_val_nothing] = STATE(4309), - [sym_val_bool] = STATE(4016), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4309), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4309), - [sym_val_filesize] = STATE(4309), - [sym_val_binary] = STATE(4309), - [sym_val_string] = STATE(4309), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4309), - [sym_unquoted] = STATE(4293), - [sym__unquoted_anonymous_prefix] = STATE(4884), - [sym_comment] = STATE(1260), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(1261)] = { - [aux_sym__repeat_newline] = STATE(1233), - [sym_comment] = STATE(1261), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1262)] = { - [aux_sym__repeat_newline] = STATE(1175), + [aux_sym__repeat_newline] = STATE(656), [sym_comment] = STATE(1262), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2847), + [sym__newline] = ACTIONS(2740), + [anon_sym_SEMI] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_err_GT_PIPE] = ACTIONS(2740), + [anon_sym_out_GT_PIPE] = ACTIONS(2740), + [anon_sym_e_GT_PIPE] = ACTIONS(2740), + [anon_sym_o_GT_PIPE] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), + [anon_sym_RPAREN] = ACTIONS(2740), + [anon_sym_GT2] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2851), + [anon_sym_STAR2] = ACTIONS(2833), + [anon_sym_and2] = ACTIONS(2740), + [anon_sym_xor2] = ACTIONS(2740), + [anon_sym_or2] = ACTIONS(2740), + [anon_sym_not_DASHin2] = ACTIONS(2847), + [anon_sym_has2] = ACTIONS(2847), + [anon_sym_not_DASHhas2] = ACTIONS(2847), + [anon_sym_starts_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2847), + [anon_sym_ends_DASHwith2] = ACTIONS(2847), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2847), + [anon_sym_EQ_EQ2] = ACTIONS(2853), + [anon_sym_BANG_EQ2] = ACTIONS(2853), + [anon_sym_LT2] = ACTIONS(2849), + [anon_sym_LT_EQ2] = ACTIONS(2853), + [anon_sym_GT_EQ2] = ACTIONS(2853), + [anon_sym_EQ_TILDE2] = ACTIONS(2855), + [anon_sym_BANG_TILDE2] = ACTIONS(2855), + [anon_sym_like2] = ACTIONS(2855), + [anon_sym_not_DASHlike2] = ACTIONS(2855), + [anon_sym_STAR_STAR2] = ACTIONS(2835), + [anon_sym_PLUS_PLUS2] = ACTIONS(2835), + [anon_sym_SLASH2] = ACTIONS(2833), + [anon_sym_mod2] = ACTIONS(2837), + [anon_sym_SLASH_SLASH2] = ACTIONS(2837), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_bit_DASHshl2] = ACTIONS(2859), + [anon_sym_bit_DASHshr2] = ACTIONS(2859), + [anon_sym_bit_DASHand2] = ACTIONS(2740), + [anon_sym_bit_DASHxor2] = ACTIONS(2740), + [anon_sym_bit_DASHor2] = ACTIONS(2740), + [anon_sym_err_GT] = ACTIONS(2742), + [anon_sym_out_GT] = ACTIONS(2742), + [anon_sym_e_GT] = ACTIONS(2742), + [anon_sym_o_GT] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT] = ACTIONS(2742), + [anon_sym_err_GT_GT] = ACTIONS(2740), + [anon_sym_out_GT_GT] = ACTIONS(2740), + [anon_sym_e_GT_GT] = ACTIONS(2740), + [anon_sym_o_GT_GT] = ACTIONS(2740), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), [anon_sym_POUND] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 4, + [0] = 19, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2952), 1, + anon_sym_and2, + ACTIONS(2954), 1, + anon_sym_xor2, + ACTIONS(2964), 1, + anon_sym_PLUS2, + ACTIONS(2968), 1, + anon_sym_bit_DASHand2, + ACTIONS(2970), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2972), 1, + anon_sym_bit_DASHor2, STATE(1263), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(2946), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(2950), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2960), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2962), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2966), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2956), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2958), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2578), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139193,9 +139255,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(2272), 49, - ts_builtin_sym_end, + ACTIONS(2944), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2576), 21, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -139207,34 +139277,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_DASH2, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -139243,12 +139286,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, - [73] = 4, + [103] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1264), 1, sym_comment, - ACTIONS(2154), 13, + ACTIONS(860), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139262,7 +139305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2152), 49, + ACTIONS(960), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139312,12 +139355,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, - [146] = 4, + [176] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1265), 1, sym_comment, - ACTIONS(2220), 13, + ACTIONS(1613), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139331,7 +139374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2218), 49, + ACTIONS(1706), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139381,12 +139424,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, - [219] = 4, + [249] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1266), 1, sym_comment, - ACTIONS(1966), 13, + ACTIONS(2224), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139400,7 +139443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1964), 49, + ACTIONS(2222), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139450,100 +139493,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, - [292] = 17, + [322] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, - anon_sym_bit_DASHor2, STATE(1267), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 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(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [391] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1268), 1, - sym_comment, - ACTIONS(2138), 5, + ACTIONS(2078), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2140), 8, + ACTIONS(2080), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139552,7 +139513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2136), 20, + ACTIONS(2076), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -139573,7 +139534,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(2134), 29, + ACTIONS(2074), 29, anon_sym_in, anon_sym_DASH2, anon_sym_and2, @@ -139603,12 +139564,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [468] = 4, + [399] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1269), 1, + STATE(1268), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(2365), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139622,7 +139583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(2363), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139672,12 +139633,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, - [541] = 4, + [472] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1270), 1, + STATE(1269), 1, sym_comment, - ACTIONS(2517), 13, + ACTIONS(2533), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139691,7 +139652,7 @@ 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), 49, + ACTIONS(2531), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139741,12 +139702,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, - [614] = 4, + [545] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1271), 1, + STATE(1270), 1, sym_comment, - ACTIONS(2078), 13, + ACTIONS(2497), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139760,7 +139721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2076), 49, + ACTIONS(2495), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139810,12 +139771,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, - [687] = 4, + [618] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1272), 1, + STATE(1271), 1, sym_comment, - ACTIONS(2593), 13, + ACTIONS(1938), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139829,7 +139790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2591), 49, + ACTIONS(1936), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139879,12 +139840,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, - [760] = 4, + [691] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1272), 1, + sym_comment, + ACTIONS(2501), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2499), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [764] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1273), 1, sym_comment, - ACTIONS(2204), 13, + ACTIONS(2505), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139898,7 +139928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2202), 49, + ACTIONS(2503), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139948,12 +139978,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, - [833] = 4, + [837] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1274), 1, sym_comment, - ACTIONS(2521), 13, + ACTIONS(2212), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139967,7 +139997,7 @@ 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), 49, + ACTIONS(2210), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140017,97 +140047,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [906] = 37, + [910] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(157), 1, + ACTIONS(2976), 1, + anon_sym_null, + ACTIONS(2980), 1, + sym__newline, + ACTIONS(2982), 1, anon_sym_LBRACK, - ACTIONS(159), 1, + ACTIONS(2984), 1, anon_sym_LPAREN, - ACTIONS(165), 1, + ACTIONS(2986), 1, + anon_sym_DOLLAR, + ACTIONS(2988), 1, anon_sym_LBRACE, - ACTIONS(191), 1, + ACTIONS(2990), 1, + anon_sym_DOT_DOT, + ACTIONS(2994), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2996), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3002), 1, anon_sym_0b, - ACTIONS(195), 1, + ACTIONS(3006), 1, sym_val_date, - ACTIONS(197), 1, + ACTIONS(3008), 1, anon_sym_DQUOTE, - ACTIONS(199), 1, + ACTIONS(3010), 1, anon_sym_SQUOTE, - ACTIONS(201), 1, + ACTIONS(3012), 1, anon_sym_BQUOTE, - ACTIONS(203), 1, + ACTIONS(3014), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, + ACTIONS(3016), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, + ACTIONS(3018), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3020), 1, sym_raw_string_begin, - ACTIONS(287), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(2406), 1, - aux_sym_expr_unary_token1, - ACTIONS(2410), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2412), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, - anon_sym_null, - ACTIONS(2970), 1, - anon_sym_DOT_DOT, - STATE(694), 1, - sym__val_number, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(945), 1, - sym__expr_unary_minus, STATE(1275), 1, sym_comment, - STATE(1875), 1, + STATE(2223), 1, + aux_sym__repeat_newline, + STATE(2453), 1, sym__val_number_decimal, - STATE(1955), 1, - sym_expr_parenthesized, - STATE(1959), 1, + STATE(2826), 1, sym_val_variable, - STATE(2216), 1, - sym__expr_binary_expression, - STATE(5030), 1, - sym__expression, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2398), 2, + STATE(2856), 1, + sym_expr_parenthesized, + STATE(3002), 1, + sym__unquoted_in_record, + STATE(3052), 1, + sym_val_bool, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3062), 1, + sym__inter_double_quotes, + STATE(3068), 1, + sym__val_number, + ACTIONS(2974), 2, anon_sym_true, anon_sym_false, - ACTIONS(2414), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(2972), 2, + ACTIONS(2992), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(415), 4, + ACTIONS(2998), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3004), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4603), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2978), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3000), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3291), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2575), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(944), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, + STATE(3066), 12, + sym_val_nothing, + sym_val_cellpath, + 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, + [1053] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2976), 1, + anon_sym_null, + ACTIONS(2980), 1, + sym__newline, + ACTIONS(2982), 1, + anon_sym_LBRACK, + ACTIONS(2984), 1, + anon_sym_LPAREN, + ACTIONS(2986), 1, + anon_sym_DOLLAR, + ACTIONS(2988), 1, + anon_sym_LBRACE, + ACTIONS(2990), 1, + anon_sym_DOT_DOT, + ACTIONS(2994), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2996), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3002), 1, + anon_sym_0b, + ACTIONS(3006), 1, + sym_val_date, + ACTIONS(3008), 1, + anon_sym_DQUOTE, + ACTIONS(3010), 1, + anon_sym_SQUOTE, + ACTIONS(3012), 1, + anon_sym_BQUOTE, + ACTIONS(3014), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3016), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3018), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3020), 1, + sym_raw_string_begin, + STATE(1276), 1, + sym_comment, + STATE(1300), 1, + aux_sym__repeat_newline, + STATE(2453), 1, + sym__val_number_decimal, + STATE(2826), 1, + sym_val_variable, + STATE(2856), 1, + sym_expr_parenthesized, + STATE(3002), 1, + sym__unquoted_in_record, + STATE(3052), 1, + sym_val_bool, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3062), 1, + sym__inter_double_quotes, + STATE(3068), 1, + sym__val_number, + ACTIONS(2974), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2992), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2998), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3004), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4603), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2978), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + ACTIONS(3000), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(943), 13, + STATE(3291), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2575), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3066), 12, sym_val_nothing, - sym_val_bool, sym_val_cellpath, sym_val_number, sym_val_duration, @@ -140119,27 +140255,17 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [1045] = 9, + [1196] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1276), 1, + STATE(1277), 1, sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 10, + ACTIONS(2517), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140148,7 +140274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 44, + ACTIONS(2515), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140162,6 +140288,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -140180,6 +140307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -140193,12 +140324,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, - [1128] = 4, + [1269] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1277), 1, + STATE(1278), 1, sym_comment, - ACTIONS(2507), 13, + ACTIONS(2228), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140212,7 +140343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2505), 49, + ACTIONS(2226), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140262,95 +140393,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, - [1201] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, - anon_sym_bit_DASHor2, - ACTIONS(2974), 1, - anon_sym_and2, - STATE(1278), 1, - sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 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(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 22, - 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_xor2, - anon_sym_or2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1302] = 4, + [1342] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1279), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(2232), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140364,7 +140412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2222), 49, + ACTIONS(2230), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140414,12 +140462,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, - [1375] = 4, + [1415] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1280), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2236), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140433,7 +140481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2234), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140483,12 +140531,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, - [1448] = 4, + [1488] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1281), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2240), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140502,7 +140550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2238), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140552,12 +140600,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, - [1521] = 4, + [1561] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1282), 1, sym_comment, - ACTIONS(2535), 13, + ACTIONS(2244), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140571,7 +140619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 49, + ACTIONS(2242), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140621,36 +140669,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, - [1594] = 13, + [1634] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, STATE(1283), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2248), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140659,17 +140688,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(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 30, + ACTIONS(2246), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -140681,13 +140702,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -140699,12 +140738,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, - [1685] = 4, + [1707] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1284), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2361), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140718,7 +140757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2359), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140768,12 +140807,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, - [1758] = 4, + [1780] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1285), 1, sym_comment, - ACTIONS(2605), 13, + ACTIONS(2606), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140787,7 +140826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2603), 49, + ACTIONS(2604), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140837,43 +140876,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, - [1831] = 15, + [1853] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, STATE(1286), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2078), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140882,17 +140895,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(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 25, + ACTIONS(2074), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -140904,9 +140909,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -140917,124 +140945,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, - [1926] = 39, + [1926] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2964), 1, + anon_sym_PLUS2, STATE(1287), 1, sym_comment, - STATE(1329), 1, - aux_sym__repeat_newline, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2871), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2980), 1, - sym_val_bool, - STATE(3024), 1, - sym__unquoted_in_record, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3260), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - 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, - [2069] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1288), 1, - sym_comment, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 13, + ACTIONS(2946), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(2950), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2960), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2962), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2966), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2956), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2578), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141043,7 +140983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 47, + ACTIONS(2576), 38, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141057,7 +140997,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -141068,18 +141007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -141091,12 +141022,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, - [2144] = 4, + [2015] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1289), 1, + STATE(1288), 1, sym_comment, - ACTIONS(868), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141110,7 +141041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(968), 49, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141160,17 +141091,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, - [2217] = 4, + [2088] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1290), 1, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2964), 1, + anon_sym_PLUS2, + STATE(1289), 1, sym_comment, - ACTIONS(2577), 13, - anon_sym_GT2, + ACTIONS(2950), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2960), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2962), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2966), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2578), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141179,7 +141123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 49, + ACTIONS(2576), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141193,7 +141137,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -141212,12 +141155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -141229,116 +141166,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, - [2290] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1291), 1, - sym_comment, - STATE(2226), 1, - aux_sym__repeat_newline, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2821), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2961), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3234), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - 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, - [2433] = 4, + [2173] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1292), 1, + STATE(1290), 1, sym_comment, - ACTIONS(1868), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141352,7 +141185,7 @@ 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, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141402,16 +141235,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, - [2506] = 4, + [2246] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1293), 1, + STATE(1291), 1, sym_comment, - ACTIONS(2565), 13, - anon_sym_GT2, + ACTIONS(2950), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(2960), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2962), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2578), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -141421,7 +141261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2563), 49, + ACTIONS(2576), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141454,10 +141294,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -141471,12 +141307,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, - [2579] = 4, + [2325] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1294), 1, + STATE(1292), 1, sym_comment, - ACTIONS(2601), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141490,7 +141326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2599), 49, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141540,12 +141376,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, - [2652] = 4, + [2398] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1295), 1, + STATE(1293), 1, sym_comment, - ACTIONS(2573), 13, + ACTIONS(2960), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2578), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141559,7 +141398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2571), 49, + ACTIONS(2576), 47, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141592,8 +141431,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -141609,12 +141446,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, - [2725] = 4, + [2473] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1296), 1, + STATE(1294), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141628,7 +141465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141678,17 +141515,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, - [2798] = 4, + [2546] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(1297), 1, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2964), 1, + anon_sym_PLUS2, + ACTIONS(2968), 1, + anon_sym_bit_DASHand2, + ACTIONS(2970), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2972), 1, + anon_sym_bit_DASHor2, + STATE(1295), 1, sym_comment, - ACTIONS(2609), 13, + ACTIONS(2946), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(2950), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2960), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2962), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2966), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2956), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2958), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2578), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141697,9 +141564,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(2607), 49, - ts_builtin_sym_end, + ACTIONS(2944), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2576), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141711,34 +141586,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -141747,12 +141597,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, - [2871] = 4, + [2645] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1298), 1, + STATE(1296), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(2375), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141766,7 +141616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2206), 49, + ACTIONS(2373), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141816,12 +141666,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, - [2944] = 4, + [2718] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1299), 1, + STATE(1297), 1, sym_comment, - ACTIONS(2513), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141835,7 +141685,7 @@ 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), 49, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141885,12 +141735,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3017] = 4, + [2791] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(1300), 1, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2952), 1, + anon_sym_and2, + ACTIONS(2964), 1, + anon_sym_PLUS2, + ACTIONS(2968), 1, + anon_sym_bit_DASHand2, + ACTIONS(2970), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2972), 1, + anon_sym_bit_DASHor2, + STATE(1298), 1, sym_comment, - ACTIONS(2212), 13, + ACTIONS(2946), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2950), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2960), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2962), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2966), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2956), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2958), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2578), 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(2944), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2576), 22, + 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_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [2892] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1299), 1, + sym_comment, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141904,7 +141837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2210), 49, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141954,12 +141887,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, - [3090] = 4, + [2965] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2976), 1, + anon_sym_null, + ACTIONS(2980), 1, + sym__newline, + ACTIONS(2982), 1, + anon_sym_LBRACK, + ACTIONS(2984), 1, + anon_sym_LPAREN, + ACTIONS(2986), 1, + anon_sym_DOLLAR, + ACTIONS(2988), 1, + anon_sym_LBRACE, + ACTIONS(2990), 1, + anon_sym_DOT_DOT, + ACTIONS(2994), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2996), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3002), 1, + anon_sym_0b, + ACTIONS(3006), 1, + sym_val_date, + ACTIONS(3008), 1, + anon_sym_DQUOTE, + ACTIONS(3010), 1, + anon_sym_SQUOTE, + ACTIONS(3012), 1, + anon_sym_BQUOTE, + ACTIONS(3014), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3016), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3018), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3020), 1, + sym_raw_string_begin, + STATE(1300), 1, + sym_comment, + STATE(2223), 1, + aux_sym__repeat_newline, + STATE(2453), 1, + sym__val_number_decimal, + STATE(2826), 1, + sym_val_variable, + STATE(2869), 1, + sym_expr_parenthesized, + STATE(2928), 1, + sym__unquoted_in_record, + STATE(3052), 1, + sym_val_bool, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3062), 1, + sym__inter_double_quotes, + STATE(3068), 1, + sym__val_number, + ACTIONS(2974), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2992), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2998), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3004), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4603), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2978), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3000), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3247), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2575), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3066), 12, + sym_val_nothing, + sym_val_cellpath, + 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, + [3108] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1301), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141973,7 +142010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142023,17 +142060,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, - [3163] = 4, + [3181] = 13, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2964), 1, + anon_sym_PLUS2, STATE(1302), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2946), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(2950), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2960), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2962), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2966), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2956), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2578), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142042,9 +142098,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(2088), 49, - ts_builtin_sym_end, + ACTIONS(2944), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2576), 30, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142056,31 +142120,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -142092,12 +142138,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, - [3236] = 4, + [3272] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1303), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142111,7 +142157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1706), 49, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142161,12 +142207,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, - [3309] = 4, + [3345] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1304), 1, sym_comment, - ACTIONS(2114), 13, + ACTIONS(2578), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142180,7 +142226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2112), 49, + ACTIONS(2576), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142230,12 +142276,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, - [3382] = 4, + [3418] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1305), 1, sym_comment, - ACTIONS(2621), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142249,7 +142295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2619), 49, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142299,17 +142345,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, - [3455] = 4, + [3491] = 9, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2964), 1, + anon_sym_PLUS2, STATE(1306), 1, sym_comment, - ACTIONS(2216), 13, - anon_sym_GT2, + ACTIONS(2950), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2960), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2962), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2578), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142318,7 +142374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2214), 49, + ACTIONS(2576), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142332,7 +142388,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -142351,10 +142406,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -142368,12 +142419,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3528] = 4, + [3574] = 37, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(195), 1, + sym_val_date, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(287), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(2260), 1, + aux_sym_expr_unary_token1, + ACTIONS(2264), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2266), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2726), 1, + anon_sym_null, + ACTIONS(3022), 1, + anon_sym_DOT_DOT, + STATE(676), 1, + sym__val_number, + STATE(786), 1, + sym__inter_single_quotes, + STATE(787), 1, + sym__inter_double_quotes, + STATE(901), 1, + sym__expr_unary_minus, STATE(1307), 1, sym_comment, - ACTIONS(2090), 13, + STATE(1872), 1, + sym__val_number_decimal, + STATE(1953), 1, + sym_val_variable, + STATE(1966), 1, + sym_expr_parenthesized, + STATE(2221), 1, + sym__expr_binary_expression, + STATE(5065), 1, + sym__expression, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2252), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2268), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3024), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(419), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(939), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(938), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + 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, + [3713] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1308), 1, + sym_comment, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142387,7 +142540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142437,24 +142590,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, - [3601] = 19, + [3786] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2948), 1, anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, - anon_sym_bit_DASHor2, - ACTIONS(2974), 1, - anon_sym_and2, - ACTIONS(3024), 1, - anon_sym_xor2, - STATE(1308), 1, + anon_sym_PLUS2, + STATE(1309), 1, sym_comment, ACTIONS(2946), 2, anon_sym_GT2, @@ -142462,26 +142605,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2950), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(2960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(2962), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(2966), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(2956), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, + ACTIONS(2958), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + ACTIONS(2578), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142499,7 +142642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 21, + ACTIONS(2576), 26, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -142512,7 +142655,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_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -142521,12 +142669,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, - [3704] = 4, + [3879] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1309), 1, + STATE(1310), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142540,7 +142688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2258), 49, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142590,86 +142738,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, - [3777] = 4, + [3952] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1310), 1, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2964), 1, + anon_sym_PLUS2, + ACTIONS(2968), 1, + anon_sym_bit_DASHand2, + STATE(1311), 1, sym_comment, - ACTIONS(2264), 13, + ACTIONS(2946), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(2950), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2262), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(2960), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2962), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2966), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2956), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(2958), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3850] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1311), 1, - sym_comment, - ACTIONS(2122), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2578), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142678,24 +142783,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(2120), 49, - ts_builtin_sym_end, + ACTIONS(2944), 8, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -142703,53 +142792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3923] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1312), 1, - sym_comment, - ACTIONS(2090), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2576), 25, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142761,32 +142805,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -142797,12 +142818,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, - [3996] = 4, + [4047] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1313), 1, + STATE(1312), 1, sym_comment, - ACTIONS(2525), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142816,7 +142837,7 @@ 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), 49, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142866,18 +142887,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, - [4069] = 16, + [4120] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2948), 1, anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, ACTIONS(2964), 1, + anon_sym_PLUS2, + ACTIONS(2968), 1, anon_sym_bit_DASHand2, - ACTIONS(2966), 1, + ACTIONS(2970), 1, anon_sym_bit_DASHxor2, - STATE(1314), 1, + STATE(1313), 1, sym_comment, ACTIONS(2946), 2, anon_sym_GT2, @@ -142885,26 +142906,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2950), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(2960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(2962), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(2966), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(2956), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, + ACTIONS(2958), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + ACTIONS(2578), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142922,7 +142943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 24, + ACTIONS(2576), 24, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -142947,41 +142968,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, - [4166] = 14, + [4217] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1315), 1, + STATE(1314), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2084), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142990,17 +142987,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(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 26, + ACTIONS(2082), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -143012,9 +143001,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -143026,12 +143037,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, - [4259] = 4, + [4290] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1316), 1, + STATE(1315), 1, sym_comment, - ACTIONS(2196), 13, + ACTIONS(2458), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143045,7 +143056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2194), 49, + ACTIONS(2456), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143095,12 +143106,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, - [4332] = 4, + [4363] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1317), 1, + STATE(1316), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2148), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143114,7 +143125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2146), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143164,12 +143175,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, - [4405] = 4, + [4436] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1317), 1, + sym_comment, + ACTIONS(2168), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2166), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [4509] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1318), 1, sym_comment, - ACTIONS(1976), 13, + ACTIONS(2570), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143183,7 +143263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1974), 49, + ACTIONS(2568), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143233,12 +143313,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, - [4478] = 4, + [4582] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1319), 1, sym_comment, - ACTIONS(2270), 13, + ACTIONS(2092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143252,7 +143332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2268), 49, + ACTIONS(2090), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143302,12 +143382,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, - [4551] = 4, + [4655] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1320), 1, sym_comment, - ACTIONS(1860), 13, + ACTIONS(1948), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143321,7 +143401,7 @@ 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, + ACTIONS(1946), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143371,12 +143451,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, - [4624] = 4, + [4728] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1321), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143390,7 +143470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2086), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143440,12 +143520,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, - [4697] = 4, + [4801] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1322), 1, sym_comment, - ACTIONS(2138), 13, + ACTIONS(2369), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143459,7 +143539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2134), 49, + ACTIONS(2367), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143509,36 +143589,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4770] = 12, + [4874] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, STATE(1323), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2563), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(2950), 2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2561), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [4947] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1324), 1, + sym_comment, + ACTIONS(2582), 13, + anon_sym_GT2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2580), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5020] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1325), 1, + sym_comment, + ACTIONS(2184), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2182), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2535), 8, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5093] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1326), 1, + sym_comment, + ACTIONS(2369), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143547,7 +143815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 38, + ACTIONS(2367), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143561,6 +143829,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -143571,10 +143840,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -143586,12 +143865,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, - [4859] = 4, + [5166] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1324), 1, + STATE(1327), 1, sym_comment, - ACTIONS(2200), 13, + ACTIONS(2656), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143605,7 +143884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2198), 49, + ACTIONS(2654), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143655,12 +143934,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, - [4932] = 4, + [5239] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1325), 1, + STATE(1328), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(2602), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143674,7 +143953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2254), 49, + ACTIONS(2600), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143724,12 +144003,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, - [5005] = 4, + [5312] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1326), 1, + STATE(1329), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(2379), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143743,7 +144022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2254), 49, + ACTIONS(2377), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143793,466 +144072,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, - [5078] = 4, + [5385] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1327), 1, - sym_comment, - ACTIONS(2090), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5151] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(157), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_DOT_DOT, - ACTIONS(173), 1, - aux_sym_expr_unary_token1, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(195), 1, - sym_val_date, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(287), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(1926), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1928), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, - anon_sym_null, - STATE(694), 1, - sym__val_number, - STATE(697), 1, - sym_val_variable, - STATE(700), 1, - sym_expr_parenthesized, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(945), 1, - sym__expr_unary_minus, - STATE(1328), 1, - sym_comment, - STATE(1830), 1, - sym__val_number_decimal, - STATE(2215), 1, - sym__expr_binary_expression, - STATE(4707), 1, - sym__expression, - ACTIONS(179), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1930), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(944), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(943), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - 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, - [5290] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1329), 1, - sym_comment, - STATE(2226), 1, - aux_sym__repeat_newline, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2866), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2969), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3231), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - 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, - [5433] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, STATE(1330), 1, sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2535), 10, - anon_sym_GT2, - 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(2533), 42, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5518] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1291), 1, - aux_sym__repeat_newline, - STATE(1331), 1, - sym_comment, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2866), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2969), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4601), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3231), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - 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, - [5661] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1332), 1, - sym_comment, - ACTIONS(2539), 13, + ACTIONS(2525), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144266,7 +144091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2537), 49, + ACTIONS(2523), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144316,12 +144141,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, - [5734] = 4, + [5458] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1333), 1, + STATE(1331), 1, sym_comment, - ACTIONS(2617), 13, + ACTIONS(2537), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144335,7 +144160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2615), 49, + ACTIONS(2535), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144385,12 +144210,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, - [5807] = 4, + [5531] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1334), 1, + STATE(1332), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2200), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144404,7 +144229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2198), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144454,84 +144279,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, - [5880] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1335), 1, - sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2533), 45, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5959] = 4, + [5604] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1336), 1, + STATE(1333), 1, sym_comment, - ACTIONS(2228), 13, + ACTIONS(2204), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144545,7 +144298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2226), 49, + ACTIONS(2202), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144595,12 +144348,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, - [6032] = 4, + [5677] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1337), 1, + STATE(1334), 1, sym_comment, - ACTIONS(2232), 13, + ACTIONS(2120), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144614,7 +144367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2230), 49, + ACTIONS(2118), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144664,7 +144417,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, - [6105] = 37, + [5750] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(157), 1, @@ -144697,31 +144450,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(1926), 1, + ACTIONS(1906), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1928), 1, + ACTIONS(1908), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, + ACTIONS(2726), 1, anon_sym_null, - STATE(694), 1, + STATE(674), 1, + sym_expr_parenthesized, + STATE(676), 1, sym__val_number, - STATE(697), 1, + STATE(709), 1, sym_val_variable, - STATE(700), 1, - sym_expr_parenthesized, - STATE(743), 1, + STATE(786), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(787), 1, sym__inter_double_quotes, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(1338), 1, + STATE(1335), 1, sym_comment, - STATE(1830), 1, + STATE(1841), 1, sym__val_number_decimal, STATE(2215), 1, sym__expr_binary_expression, - STATE(4718), 1, + STATE(4705), 1, sym__expression, ACTIONS(179), 2, anon_sym_DOT_DOT_EQ, @@ -144729,18 +144482,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1930), 2, + ACTIONS(1910), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(944), 4, + STATE(939), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -144752,7 +144505,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(943), 13, + STATE(938), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -144766,12 +144519,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6244] = 4, + [5889] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1339), 1, + STATE(1336), 1, sym_comment, - ACTIONS(2236), 13, + ACTIONS(2208), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144785,7 +144538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2234), 49, + ACTIONS(2206), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144835,12 +144588,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, - [6317] = 4, + [5962] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1340), 1, + STATE(1337), 1, sym_comment, - ACTIONS(2240), 13, + ACTIONS(2586), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144854,7 +144607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2238), 49, + ACTIONS(2584), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144904,12 +144657,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, - [6390] = 4, + [6035] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1341), 1, + STATE(1338), 1, sym_comment, - ACTIONS(2244), 13, + ACTIONS(2541), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144923,7 +144676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2242), 49, + ACTIONS(2539), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144973,12 +144726,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, - [6463] = 4, + [6108] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1342), 1, + STATE(1339), 1, sym_comment, - ACTIONS(2248), 13, + ACTIONS(1872), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144992,7 +144745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2246), 49, + ACTIONS(1870), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145042,12 +144795,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, - [6536] = 4, + [6181] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1343), 1, + STATE(1340), 1, sym_comment, - ACTIONS(2252), 13, + ACTIONS(2598), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145061,7 +144814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2250), 49, + ACTIONS(2596), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145111,12 +144864,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6609] = 4, + [6254] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1344), 1, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(169), 1, + anon_sym_DOT_DOT, + ACTIONS(173), 1, + aux_sym_expr_unary_token1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(195), 1, + sym_val_date, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(287), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(1906), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1908), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2726), 1, + anon_sym_null, + STATE(674), 1, + sym_expr_parenthesized, + STATE(676), 1, + sym__val_number, + STATE(709), 1, + sym_val_variable, + STATE(786), 1, + sym__inter_single_quotes, + STATE(787), 1, + sym__inter_double_quotes, + STATE(901), 1, + sym__expr_unary_minus, + STATE(1341), 1, + sym_comment, + STATE(1841), 1, + sym__val_number_decimal, + STATE(2215), 1, + sym__expr_binary_expression, + STATE(4639), 1, + sym__expression, + ACTIONS(179), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1910), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1916), 2, + anon_sym_true, + anon_sym_false, + STATE(419), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(939), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(938), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + 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, + [6393] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1342), 1, + sym_comment, + ACTIONS(2574), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2572), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6466] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1343), 1, sym_comment, - ACTIONS(2569), 13, + ACTIONS(2594), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145130,7 +145054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2567), 49, + ACTIONS(2592), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145180,12 +145104,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, + [6539] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2976), 1, + anon_sym_null, + ACTIONS(2980), 1, + sym__newline, + ACTIONS(2982), 1, + anon_sym_LBRACK, + ACTIONS(2984), 1, + anon_sym_LPAREN, + ACTIONS(2986), 1, + anon_sym_DOLLAR, + ACTIONS(2988), 1, + anon_sym_LBRACE, + ACTIONS(2990), 1, + anon_sym_DOT_DOT, + ACTIONS(2994), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2996), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3002), 1, + anon_sym_0b, + ACTIONS(3006), 1, + sym_val_date, + ACTIONS(3008), 1, + anon_sym_DQUOTE, + ACTIONS(3010), 1, + anon_sym_SQUOTE, + ACTIONS(3012), 1, + anon_sym_BQUOTE, + ACTIONS(3014), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3016), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3018), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3020), 1, + sym_raw_string_begin, + STATE(1275), 1, + aux_sym__repeat_newline, + STATE(1344), 1, + sym_comment, + STATE(2453), 1, + sym__val_number_decimal, + STATE(2826), 1, + sym_val_variable, + STATE(2857), 1, + sym_expr_parenthesized, + STATE(3052), 1, + sym_val_bool, + STATE(3061), 1, + sym__inter_single_quotes, + STATE(3062), 1, + sym__inter_double_quotes, + STATE(3067), 1, + sym__unquoted_in_record, + STATE(3068), 1, + sym__val_number, + ACTIONS(2974), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2992), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2998), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3004), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4603), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2978), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3000), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3314), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2575), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3066), 12, + sym_val_nothing, + sym_val_cellpath, + 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, [6682] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1345), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(1860), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145199,7 +145227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(1858), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145268,41 +145296,41 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1914), 1, aux_sym_unquoted_token1, - ACTIONS(2664), 1, + ACTIONS(2744), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(2680), 1, + ACTIONS(2754), 1, anon_sym_LBRACK, - ACTIONS(2682), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(2758), 1, anon_sym_DOLLAR, - ACTIONS(2686), 1, + ACTIONS(2760), 1, anon_sym_LBRACE, + ACTIONS(2780), 1, + anon_sym_COLON2, ACTIONS(3028), 1, anon_sym_null, ACTIONS(3032), 1, anon_sym_DOT_DOT, ACTIONS(3040), 1, sym_val_date, - STATE(694), 1, + STATE(676), 1, sym__val_number, - STATE(743), 1, + STATE(786), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(787), 1, sym__inter_double_quotes, STATE(1346), 1, sym_comment, - STATE(3710), 1, + STATE(3668), 1, sym__val_number_decimal, - STATE(4207), 1, + STATE(4211), 1, sym_val_variable, - STATE(4255), 1, + STATE(4257), 1, sym_expr_parenthesized, - STATE(4677), 1, + STATE(4651), 1, sym_val_bool, - STATE(4932), 1, + STATE(4933), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, @@ -145319,13 +145347,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3038), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4884), 2, + STATE(4927), 2, sym__val_range, sym__unquoted_anonymous_prefix, - STATE(4931), 2, + STATE(4932), 2, sym_val_range, sym__value, - ACTIONS(2555), 3, + ACTIONS(2632), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -145333,12 +145361,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(943), 12, + STATE(938), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145366,89 +145394,89 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1914), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2873), 1, anon_sym_null, - ACTIONS(2874), 1, + ACTIONS(2877), 1, sym__newline, - ACTIONS(2876), 1, + ACTIONS(2879), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2881), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2883), 1, anon_sym_LBRACE, - ACTIONS(2884), 1, + ACTIONS(2887), 1, anon_sym__, - ACTIONS(2886), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2890), 1, + ACTIONS(2893), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, + ACTIONS(2895), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, + ACTIONS(2899), 1, sym_val_date, - STATE(694), 1, + STATE(676), 1, sym__val_number, STATE(1347), 1, sym_comment, - STATE(1360), 1, + STATE(1361), 1, aux_sym__ctrl_match_body_repeat1, - STATE(2241), 1, + STATE(2240), 1, aux_sym__types_body_repeat1, - STATE(3487), 1, + STATE(3488), 1, sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, + STATE(3627), 1, sym_val_variable, - STATE(3762), 1, + STATE(3727), 1, + sym_expr_parenthesized, + STATE(3767), 1, sym__match_pattern, - STATE(4016), 1, + STATE(4026), 1, sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, + STATE(4082), 1, sym_unquoted, - STATE(4302), 1, + STATE(4274), 1, sym__match_pattern_list, - STATE(5173), 1, + STATE(4302), 1, + sym__match_pattern_expression, + STATE(4984), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2868), 2, + ACTIONS(2871), 2, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, + ACTIONS(2891), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, + ACTIONS(2897), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, + STATE(4076), 2, sym__match_pattern_value, sym_val_range, - STATE(4549), 2, + STATE(4560), 2, sym_match_arm, sym_default_arm, - STATE(4884), 2, + STATE(4927), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2872), 3, + ACTIONS(2875), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4284), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -145458,93 +145486,193 @@ static const uint16_t ts_small_parse_table[] = { sym_val_string, sym_val_table, [7043] = 37, - ACTIONS(103), 1, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + ACTIONS(1382), 1, + anon_sym_LPAREN, + ACTIONS(1386), 1, + anon_sym_DOLLAR, + ACTIONS(1402), 1, anon_sym_0b, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, + ACTIONS(1408), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1410), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1412), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1414), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1416), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1422), 1, sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2680), 1, - anon_sym_LBRACK, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2684), 1, - anon_sym_DOLLAR, - ACTIONS(2686), 1, + ACTIONS(1446), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3028), 1, + ACTIONS(1560), 1, + anon_sym_LBRACK, + ACTIONS(3044), 1, anon_sym_null, - ACTIONS(3032), 1, + ACTIONS(3048), 1, anon_sym_DOT_DOT, - ACTIONS(3040), 1, + ACTIONS(3052), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3054), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3058), 1, sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, + ACTIONS(3060), 1, + aux_sym__unquoted_in_record_token1, STATE(1348), 1, sym_comment, - STATE(3710), 1, + STATE(3484), 1, sym__val_number_decimal, - STATE(4207), 1, + STATE(3847), 1, sym_val_variable, - STATE(4232), 1, + STATE(3972), 1, sym_expr_parenthesized, - STATE(4677), 1, + STATE(4139), 1, sym_val_bool, - STATE(4986), 1, - sym_unquoted, - ACTIONS(193), 2, + STATE(4172), 1, + sym__val_number, + STATE(4185), 1, + sym__unquoted_in_record, + STATE(4457), 1, + sym__inter_single_quotes, + STATE(4458), 1, + sym__inter_double_quotes, + ACTIONS(1404), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3026), 2, + ACTIONS(3042), 2, anon_sym_true, anon_sym_false, - ACTIONS(3034), 2, + ACTIONS(3050), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, + ACTIONS(3056), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4879), 2, + STATE(4497), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1400), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3046), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(4692), 3, sym_val_range, sym__value, - STATE(4884), 2, + sym__unquoted_in_record_with_expr, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4536), 12, + sym_val_nothing, + sym_val_cellpath, + 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, + [7180] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1382), 1, + anon_sym_LPAREN, + ACTIONS(1386), 1, + anon_sym_DOLLAR, + ACTIONS(1402), 1, + anon_sym_0b, + ACTIONS(1408), 1, + anon_sym_DQUOTE, + ACTIONS(1410), 1, + anon_sym_SQUOTE, + ACTIONS(1412), 1, + anon_sym_BQUOTE, + ACTIONS(1414), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1416), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1422), 1, + sym_raw_string_begin, + ACTIONS(1446), 1, + anon_sym_LBRACE, + ACTIONS(1560), 1, + anon_sym_LBRACK, + ACTIONS(3044), 1, + anon_sym_null, + ACTIONS(3048), 1, + anon_sym_DOT_DOT, + ACTIONS(3052), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3054), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3058), 1, + sym_val_date, + ACTIONS(3060), 1, + aux_sym__unquoted_in_record_token1, + STATE(1349), 1, + sym_comment, + STATE(3484), 1, + sym__val_number_decimal, + STATE(3847), 1, + sym_val_variable, + STATE(4016), 1, + sym_expr_parenthesized, + STATE(4139), 1, + sym_val_bool, + STATE(4172), 1, + sym__val_number, + STATE(4269), 1, + sym__unquoted_in_record, + STATE(4457), 1, + sym__inter_single_quotes, + STATE(4458), 1, + sym__inter_double_quotes, + ACTIONS(1404), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3042), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3050), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3056), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4497), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2555), 3, + ACTIONS(1400), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3030), 3, + ACTIONS(3046), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(4674), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3527), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(943), 12, + STATE(4536), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145557,7 +145685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7180] = 37, + [7317] = 37, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -145576,39 +145704,39 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1914), 1, aux_sym_unquoted_token1, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2680), 1, + ACTIONS(2754), 1, anon_sym_LBRACK, - ACTIONS(2682), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(2758), 1, anon_sym_DOLLAR, - ACTIONS(2686), 1, + ACTIONS(2760), 1, anon_sym_LBRACE, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, ACTIONS(3028), 1, anon_sym_null, ACTIONS(3032), 1, anon_sym_DOT_DOT, ACTIONS(3040), 1, sym_val_date, - STATE(694), 1, + STATE(676), 1, sym__val_number, - STATE(743), 1, + STATE(786), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(787), 1, sym__inter_double_quotes, - STATE(1349), 1, + STATE(1350), 1, sym_comment, - STATE(3710), 1, + STATE(3668), 1, sym__val_number_decimal, - STATE(4207), 1, + STATE(4211), 1, sym_val_variable, - STATE(4255), 1, + STATE(4272), 1, sym_expr_parenthesized, - STATE(4677), 1, + STATE(4651), 1, sym_val_bool, - STATE(4932), 1, + STATE(5010), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, @@ -145625,13 +145753,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3038), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4884), 2, + STATE(4927), 2, sym__val_range, sym__unquoted_anonymous_prefix, - STATE(4931), 2, + STATE(4977), 2, sym_val_range, sym__value, - ACTIONS(2555), 3, + ACTIONS(2632), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -145639,12 +145767,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(943), 12, + STATE(938), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145657,20 +145785,20 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7317] = 7, + [7454] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, + STATE(1351), 1, sym_comment, - STATE(1357), 1, + STATE(1354), 1, aux_sym__block_body_repeat1, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3046), 2, + ACTIONS(3066), 2, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(3042), 10, + ACTIONS(3062), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -145681,7 +145809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3064), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -145727,294 +145855,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7394] = 37, + [7531] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1390), 1, + STATE(1352), 1, + sym_comment, + STATE(1354), 1, + aux_sym__block_body_repeat1, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3068), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3062), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(1406), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1418), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3064), 45, sym_raw_string_begin, - ACTIONS(1496), 1, - anon_sym_LBRACE, - ACTIONS(1578), 1, - anon_sym_LBRACK, - ACTIONS(3050), 1, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(3054), 1, - anon_sym_DOT_DOT, - ACTIONS(3058), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, - sym_val_date, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - STATE(1351), 1, - sym_comment, - STATE(3418), 1, - sym__val_number_decimal, - STATE(3846), 1, - sym_val_variable, - STATE(3965), 1, - sym_expr_parenthesized, - STATE(4130), 1, - sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4173), 1, - sym__unquoted_in_record, - STATE(4452), 1, - sym__inter_single_quotes, - STATE(4453), 1, - sym__inter_double_quotes, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3048), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3056), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4485), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1404), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3052), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4636), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4536), 12, - sym_val_nothing, - sym_val_cellpath, - 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, - [7531] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1386), 1, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(1390), 1, - anon_sym_DOLLAR, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1418), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1496), 1, anon_sym_LBRACE, - ACTIONS(1578), 1, - anon_sym_LBRACK, - ACTIONS(3050), 1, - anon_sym_null, - ACTIONS(3054), 1, - anon_sym_DOT_DOT, - ACTIONS(3058), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, - sym_val_date, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - STATE(1352), 1, - sym_comment, - STATE(3418), 1, - sym__val_number_decimal, - STATE(3846), 1, - sym_val_variable, - STATE(4005), 1, - sym_expr_parenthesized, - STATE(4130), 1, - sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4256), 1, - sym__unquoted_in_record, - STATE(4452), 1, - sym__inter_single_quotes, - STATE(4453), 1, - sym__inter_double_quotes, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3048), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3056), 2, + anon_sym_where, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4485), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(4717), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4536), 12, - sym_val_nothing, - sym_val_cellpath, - 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, - [7668] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1390), 1, - anon_sym_DOLLAR, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, anon_sym_BQUOTE, - ACTIONS(1418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, + anon_sym_CARET, + [7608] = 37, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(1496), 1, - anon_sym_LBRACE, - ACTIONS(1578), 1, + ACTIONS(1914), 1, + aux_sym_unquoted_token1, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2754), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2758), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + anon_sym_LBRACE, + ACTIONS(3028), 1, anon_sym_null, - ACTIONS(3054), 1, + ACTIONS(3032), 1, anon_sym_DOT_DOT, - ACTIONS(3058), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, + ACTIONS(3040), 1, sym_val_date, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, + STATE(676), 1, + sym__val_number, + STATE(786), 1, + sym__inter_single_quotes, + STATE(787), 1, + sym__inter_double_quotes, STATE(1353), 1, sym_comment, - STATE(3418), 1, + STATE(3668), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(4211), 1, sym_val_variable, - STATE(3976), 1, + STATE(4257), 1, sym_expr_parenthesized, - STATE(4130), 1, + STATE(4651), 1, sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4184), 1, - sym__unquoted_in_record, - STATE(4452), 1, - sym__inter_single_quotes, - STATE(4453), 1, - sym__inter_double_quotes, - ACTIONS(1408), 2, + STATE(4933), 1, + sym_unquoted, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3026), 2, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, + ACTIONS(3034), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + ACTIONS(3036), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3038), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4485), 2, + STATE(4927), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1404), 3, + STATE(4932), 2, + sym_val_range, + sym__value, + ACTIONS(2632), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, + ACTIONS(3030), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4656), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3505), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4536), 12, + STATE(938), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -146027,20 +146025,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7805] = 7, + [7745] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1354), 1, - sym_comment, - STATE(1357), 1, - aux_sym__block_body_repeat1, - ACTIONS(153), 2, + ACTIONS(3074), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3068), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3042), 10, + STATE(1354), 2, + sym_comment, + aux_sym__block_body_repeat1, + ACTIONS(3070), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146051,7 +146045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3072), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146079,7 +146073,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -146097,15 +146093,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7882] = 5, + [7818] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3070), 1, - sym__newline, - STATE(1355), 2, - aux_sym__repeat_newline, + STATE(1354), 1, + aux_sym__block_body_repeat1, + STATE(1355), 1, sym_comment, - ACTIONS(1960), 10, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3077), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3062), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146116,7 +146117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1955), 48, + ACTIONS(3064), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146141,13 +146142,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -146165,20 +146163,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7955] = 7, + [7895] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1356), 1, - sym_comment, - STATE(1357), 1, - aux_sym__block_body_repeat1, - ACTIONS(153), 2, + ACTIONS(3079), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(3073), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3042), 10, + STATE(1356), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(2062), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146189,7 +146182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(2057), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146214,10 +146207,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -146235,84 +146231,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8032] = 5, + [7968] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3079), 2, - sym__newline, - anon_sym_SEMI, - STATE(1357), 2, - sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3075), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(1382), 1, + anon_sym_LPAREN, + ACTIONS(1386), 1, anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(1402), 1, + anon_sym_0b, + ACTIONS(1408), 1, + anon_sym_DQUOTE, + ACTIONS(1410), 1, + anon_sym_SQUOTE, + ACTIONS(1412), 1, + anon_sym_BQUOTE, + ACTIONS(1414), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1416), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1422), 1, + sym_raw_string_begin, + ACTIONS(1446), 1, + anon_sym_LBRACE, + ACTIONS(1560), 1, + anon_sym_LBRACK, + ACTIONS(3044), 1, + anon_sym_null, + ACTIONS(3048), 1, anon_sym_DOT_DOT, + ACTIONS(3052), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(3054), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3058), 1, + sym_val_date, + ACTIONS(3060), 1, + aux_sym__unquoted_in_record_token1, + STATE(1357), 1, + sym_comment, + STATE(3484), 1, + sym__val_number_decimal, + STATE(3847), 1, + sym_val_variable, + STATE(3980), 1, + sym_expr_parenthesized, + STATE(4139), 1, + sym_val_bool, + STATE(4172), 1, + sym__val_number, + STATE(4189), 1, + sym__unquoted_in_record, + STATE(4457), 1, + sym__inter_single_quotes, + STATE(4458), 1, + sym__inter_double_quotes, + ACTIONS(1404), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3077), 47, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(3042), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(3050), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(3056), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(4497), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1400), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + ACTIONS(3046), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(4733), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4536), 12, + sym_val_nothing, + sym_val_cellpath, + 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, + [8105] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(806), 1, + anon_sym_DOLLAR, + ACTIONS(828), 1, + anon_sym_0b, + ACTIONS(850), 1, + aux_sym_unquoted_token1, + ACTIONS(852), 1, + sym_raw_string_begin, + ACTIONS(1240), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3084), 1, + anon_sym_null, + ACTIONS(3088), 1, + anon_sym_LBRACK, + ACTIONS(3090), 1, + anon_sym_LPAREN, + ACTIONS(3092), 1, + anon_sym_LBRACE, + ACTIONS(3094), 1, + anon_sym_DOT_DOT, + ACTIONS(3096), 1, + anon_sym_LPAREN2, + ACTIONS(3100), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3106), 1, sym_val_date, + ACTIONS(3108), 1, anon_sym_DQUOTE, + ACTIONS(3110), 1, anon_sym_SQUOTE, + ACTIONS(3112), 1, anon_sym_BQUOTE, + ACTIONS(3114), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(3116), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8105] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2096), 1, - anon_sym_POUND_BANG, - ACTIONS(2932), 1, - sym__newline, STATE(1358), 1, sym_comment, - ACTIONS(3084), 10, + STATE(3001), 1, + sym__inter_double_quotes, + STATE(3008), 1, + sym_unquoted, + STATE(3042), 1, + sym__val_number, + STATE(3069), 1, + sym__inter_single_quotes, + STATE(3567), 1, + sym__val_number_decimal, + STATE(3944), 1, + sym_val_bool, + ACTIONS(830), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3082), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3098), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3102), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3007), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5073), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3086), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3104), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2449), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3031), 13, + sym_val_nothing, + sym_val_variable, + sym_val_cellpath, + 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, + [8239] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3068), 1, + ts_builtin_sym_end, + STATE(1359), 1, + sym_comment, + STATE(1369), 1, + aux_sym__block_body_repeat1, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3062), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146323,9 +146452,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 47, + ACTIONS(3064), 45, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -146349,7 +146477,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -146371,12 +146498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8179] = 4, + [8315] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1359), 1, + STATE(1360), 1, sym_comment, - ACTIONS(2098), 10, + ACTIONS(2066), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146387,7 +146514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2096), 49, + ACTIONS(2064), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146437,7 +146564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8249] = 40, + [8385] = 40, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -146452,85 +146579,85 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1914), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2873), 1, anon_sym_null, - ACTIONS(2876), 1, + ACTIONS(2879), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2881), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2883), 1, anon_sym_LBRACE, - ACTIONS(2884), 1, + ACTIONS(2887), 1, anon_sym__, - ACTIONS(2886), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2890), 1, + ACTIONS(2893), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, + ACTIONS(2895), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, + ACTIONS(2899), 1, sym_val_date, - STATE(694), 1, + STATE(676), 1, sym__val_number, - STATE(1360), 1, - sym_comment, STATE(1361), 1, + sym_comment, + STATE(1363), 1, aux_sym__ctrl_match_body_repeat1, - STATE(3487), 1, + STATE(3488), 1, sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, + STATE(3627), 1, sym_val_variable, - STATE(3762), 1, + STATE(3727), 1, + sym_expr_parenthesized, + STATE(3767), 1, sym__match_pattern, - STATE(4016), 1, + STATE(4026), 1, sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, + STATE(4082), 1, sym_unquoted, - STATE(4302), 1, + STATE(4274), 1, sym__match_pattern_list, - STATE(5173), 1, + STATE(4302), 1, + sym__match_pattern_expression, + STATE(4984), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2868), 2, + ACTIONS(2871), 2, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, + ACTIONS(2891), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, + ACTIONS(2897), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, + STATE(4076), 2, sym__match_pattern_value, sym_val_range, - STATE(4608), 2, + STATE(4616), 2, sym_match_arm, sym_default_arm, - STATE(4884), 2, + STATE(4927), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2872), 3, + ACTIONS(2875), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4284), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -146539,99 +146666,166 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [8391] = 39, + [8527] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2064), 1, + anon_sym_PIPE, + STATE(1362), 1, + sym_comment, + ACTIONS(2937), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2934), 48, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [8599] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3121), 1, anon_sym_null, - ACTIONS(3095), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(3098), 1, + ACTIONS(3130), 1, anon_sym_LPAREN, - ACTIONS(3101), 1, + ACTIONS(3133), 1, anon_sym_DOLLAR, - ACTIONS(3104), 1, + ACTIONS(3136), 1, anon_sym_LBRACE, - ACTIONS(3107), 1, + ACTIONS(3139), 1, anon_sym__, - ACTIONS(3110), 1, + ACTIONS(3142), 1, anon_sym_DOT_DOT, - ACTIONS(3116), 1, + ACTIONS(3148), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3119), 1, + ACTIONS(3151), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3128), 1, + ACTIONS(3160), 1, anon_sym_0b, - ACTIONS(3134), 1, + ACTIONS(3166), 1, sym_val_date, - ACTIONS(3137), 1, + ACTIONS(3169), 1, anon_sym_DQUOTE, - ACTIONS(3140), 1, + ACTIONS(3172), 1, anon_sym_SQUOTE, - ACTIONS(3143), 1, + ACTIONS(3175), 1, anon_sym_BQUOTE, - ACTIONS(3146), 1, + ACTIONS(3178), 1, aux_sym_unquoted_token1, - ACTIONS(3149), 1, + ACTIONS(3181), 1, sym_raw_string_begin, - STATE(694), 1, + STATE(676), 1, sym__val_number, - STATE(3487), 1, + STATE(3488), 1, sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, + STATE(3627), 1, sym_val_variable, - STATE(3762), 1, + STATE(3727), 1, + sym_expr_parenthesized, + STATE(3767), 1, sym__match_pattern, - STATE(4016), 1, + STATE(4026), 1, sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, + STATE(4082), 1, sym_unquoted, - STATE(4302), 1, + STATE(4274), 1, sym__match_pattern_list, - STATE(5173), 1, + STATE(4302), 1, + sym__match_pattern_expression, + STATE(4984), 1, sym_match_pattern, - ACTIONS(3086), 2, + ACTIONS(3118), 2, anon_sym_true, anon_sym_false, - ACTIONS(3113), 2, + ACTIONS(3145), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3122), 2, + ACTIONS(3154), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3131), 2, + ACTIONS(3163), 2, anon_sym_0o, anon_sym_0x, - STATE(1361), 2, + STATE(1363), 2, sym_comment, aux_sym__ctrl_match_body_repeat1, - STATE(4299), 2, + STATE(4076), 2, sym__match_pattern_value, sym_val_range, - STATE(4785), 2, + STATE(4783), 2, sym_match_arm, sym_default_arm, - STATE(4884), 2, + STATE(4927), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3092), 3, + ACTIONS(3124), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3125), 3, + ACTIONS(3157), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4284), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -146640,7 +146834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [8531] = 36, + [8739] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -146651,80 +146845,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3004), 1, + ACTIONS(3002), 1, anon_sym_0b, - ACTIONS(3016), 1, + ACTIONS(3014), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, + ACTIONS(3016), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3154), 1, + ACTIONS(3186), 1, anon_sym_null, - ACTIONS(3158), 1, + ACTIONS(3190), 1, anon_sym_LBRACK, - ACTIONS(3160), 1, + ACTIONS(3192), 1, anon_sym_LPAREN, - ACTIONS(3162), 1, + ACTIONS(3194), 1, anon_sym_DOLLAR, - ACTIONS(3164), 1, + ACTIONS(3196), 1, anon_sym_LBRACE, - ACTIONS(3166), 1, + ACTIONS(3198), 1, anon_sym_DOT_DOT, - ACTIONS(3168), 1, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(3172), 1, + ACTIONS(3204), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3174), 1, + ACTIONS(3206), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3178), 1, + ACTIONS(3210), 1, sym_val_date, - ACTIONS(3180), 1, + ACTIONS(3212), 1, aux_sym_unquoted_token1, - STATE(1362), 1, + STATE(1364), 1, sym_comment, - STATE(2924), 1, + STATE(3061), 1, sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, STATE(3062), 1, + sym__inter_double_quotes, + STATE(3068), 1, sym__val_number, - STATE(3544), 1, + STATE(3570), 1, sym__val_number_decimal, - STATE(4301), 1, + STATE(4294), 1, sym_val_bool, - STATE(4466), 1, + STATE(4474), 1, sym_unquoted, - ACTIONS(3006), 2, + ACTIONS(3004), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3152), 2, + ACTIONS(3184), 2, anon_sym_true, anon_sym_false, - ACTIONS(3170), 2, + ACTIONS(3202), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3176), 2, + ACTIONS(3208), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4463), 2, + STATE(4473), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(4946), 2, + STATE(4908), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3002), 3, + ACTIONS(3000), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3156), 3, + ACTIONS(3188), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3061), 13, + STATE(3066), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -146738,19 +146932,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8665] = 7, + [8873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3186), 1, - sym__newline, - ACTIONS(3189), 1, - anon_sym_SEMI, - STATE(4404), 1, - aux_sym__repeat_newline, - STATE(1363), 2, + STATE(1365), 1, sym_comment, - aux_sym__parenthesized_body_repeat1, - ACTIONS(3182), 10, + ACTIONS(3214), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146761,7 +146948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3184), 45, + ACTIONS(3216), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146786,10 +146973,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -146807,20 +146998,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8741] = 8, + [8943] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2557), 1, + ACTIONS(908), 1, + anon_sym_DOLLAR, + ACTIONS(924), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(930), 1, + anon_sym_0b, + ACTIONS(950), 1, + aux_sym_unquoted_token1, + ACTIONS(952), 1, + sym_raw_string_begin, + ACTIONS(3220), 1, + anon_sym_null, + ACTIONS(3224), 1, + anon_sym_LBRACK, + ACTIONS(3226), 1, + anon_sym_LPAREN, + ACTIONS(3228), 1, + anon_sym_LBRACE, + ACTIONS(3230), 1, + anon_sym_DOT_DOT, + ACTIONS(3232), 1, + anon_sym_LPAREN2, + ACTIONS(3236), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3242), 1, + sym_val_date, + ACTIONS(3244), 1, + anon_sym_DQUOTE, + ACTIONS(3246), 1, + anon_sym_SQUOTE, + ACTIONS(3248), 1, + anon_sym_BQUOTE, + ACTIONS(3250), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3252), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1366), 1, + sym_comment, + STATE(2499), 1, + sym__val_number_decimal, + STATE(2871), 1, + sym_val_bool, + STATE(3095), 1, + sym__inter_single_quotes, + STATE(3096), 1, + sym__inter_double_quotes, + STATE(3149), 1, + sym_unquoted, + STATE(3170), 1, + sym__val_number, + ACTIONS(932), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3218), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3234), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3238), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3147), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(4998), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3222), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3240), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2469), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3169), 13, + sym_val_nothing, + sym_val_variable, + sym_val_cellpath, + 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, + [9077] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3066), 1, + ts_builtin_sym_end, + STATE(1367), 1, + sym_comment, + STATE(1369), 1, + aux_sym__block_body_repeat1, + ACTIONS(55), 2, sym__newline, - ACTIONS(3196), 1, anon_sym_SEMI, - STATE(1363), 1, - aux_sym__parenthesized_body_repeat1, - STATE(1364), 1, - sym_comment, - STATE(1383), 1, - aux_sym__repeat_newline, - ACTIONS(3192), 10, + ACTIONS(3062), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146831,7 +147119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3194), 45, + ACTIONS(3064), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146877,110 +147165,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8819] = 36, + [9153] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(799), 1, - anon_sym_DOLLAR, - ACTIONS(815), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(821), 1, + ACTIONS(191), 1, anon_sym_0b, - ACTIONS(841), 1, - aux_sym_unquoted_token1, - ACTIONS(843), 1, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3200), 1, + ACTIONS(1914), 1, + aux_sym_unquoted_token1, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2873), 1, anon_sym_null, - ACTIONS(3204), 1, + ACTIONS(2879), 1, anon_sym_LBRACK, - ACTIONS(3206), 1, - anon_sym_LPAREN, - ACTIONS(3208), 1, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + ACTIONS(2883), 1, anon_sym_LBRACE, - ACTIONS(3210), 1, + ACTIONS(2887), 1, + anon_sym__, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3216), 1, + ACTIONS(2893), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2895), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3222), 1, + ACTIONS(2899), 1, sym_val_date, - ACTIONS(3224), 1, - anon_sym_DQUOTE, - ACTIONS(3226), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(1365), 1, + STATE(676), 1, + sym__val_number, + STATE(1363), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(1368), 1, sym_comment, - STATE(2448), 1, + STATE(3488), 1, sym__val_number_decimal, - STATE(2695), 1, + STATE(3627), 1, + sym_val_variable, + STATE(3727), 1, + sym_expr_parenthesized, + STATE(3767), 1, + sym__match_pattern, + STATE(4026), 1, sym_val_bool, - STATE(2956), 1, + STATE(4082), 1, sym_unquoted, - STATE(3023), 1, - sym__val_number, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - ACTIONS(823), 2, + STATE(4274), 1, + sym__match_pattern_list, + STATE(4302), 1, + sym__match_pattern_expression, + STATE(4984), 1, + sym_match_pattern, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3198), 2, + ACTIONS(2871), 2, anon_sym_true, anon_sym_false, - ACTIONS(3214), 2, + ACTIONS(2891), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3218), 2, + ACTIONS(2897), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3060), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(4992), 2, + STATE(4076), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4560), 2, + sym_match_arm, + sym_default_arm, + STATE(4927), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3202), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3220), 3, + ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2454), 4, + ACTIONS(2875), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3021), 13, + STATE(4284), 8, + sym__match_pattern_record, sym_val_nothing, - sym_val_variable, - sym_val_cellpath, 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, - [8953] = 4, + [9295] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1366), 1, + ACTIONS(3254), 2, + sym__newline, + anon_sym_SEMI, + STATE(1369), 2, sym_comment, - ACTIONS(3084), 10, + aux_sym__block_body_repeat1, + ACTIONS(3070), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146991,8 +147287,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 49, + ACTIONS(3072), 46, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147016,14 +147313,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147041,19 +147334,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9023] = 7, - ACTIONS(3), 1, + [9367] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3068), 1, - ts_builtin_sym_end, - STATE(1367), 1, - sym_comment, - STATE(1370), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, + ACTIONS(2064), 1, + anon_sym_POUND_BANG, + ACTIONS(2934), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(3042), 10, + STATE(1370), 1, + sym_comment, + ACTIONS(3214), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147064,8 +147354,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3216), 47, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147089,6 +147380,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -147110,19 +147402,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9099] = 7, + [9441] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3073), 1, - ts_builtin_sym_end, - STATE(1368), 1, - sym_comment, - STATE(1370), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, + ACTIONS(3261), 1, sym__newline, + ACTIONS(3264), 1, anon_sym_SEMI, - ACTIONS(3042), 10, + STATE(4503), 1, + aux_sym__repeat_newline, + STATE(1371), 2, + sym_comment, + aux_sym__parenthesized_body_repeat1, + ACTIONS(3257), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147133,7 +147425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3259), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147179,14 +147471,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9175] = 5, + [9517] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, - anon_sym_PIPE, + ACTIONS(3269), 1, + anon_sym_null, + ACTIONS(3273), 1, + anon_sym_LBRACK, + ACTIONS(3275), 1, + anon_sym_LPAREN, + ACTIONS(3277), 1, + anon_sym_DOLLAR, + ACTIONS(3279), 1, + anon_sym_LBRACE, + ACTIONS(3281), 1, + anon_sym_DOT_DOT, + ACTIONS(3283), 1, + anon_sym_LPAREN2, + ACTIONS(3287), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3289), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3295), 1, + anon_sym_0b, + ACTIONS(3299), 1, + sym_val_date, + ACTIONS(3301), 1, + anon_sym_DQUOTE, + ACTIONS(3303), 1, + anon_sym_SQUOTE, + ACTIONS(3305), 1, + anon_sym_BQUOTE, + ACTIONS(3307), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3309), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3311), 1, + aux_sym_unquoted_token1, + ACTIONS(3313), 1, + sym_raw_string_begin, + STATE(1372), 1, + sym_comment, + STATE(1833), 1, + sym__val_number_decimal, + STATE(2119), 1, + sym_val_bool, + STATE(2136), 1, + sym__inter_single_quotes, + STATE(2167), 1, + sym_unquoted, + STATE(2172), 1, + sym__inter_double_quotes, + STATE(2199), 1, + sym__val_number, + ACTIONS(3267), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3285), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3291), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3297), 2, + anon_sym_0o, + anon_sym_0x, + STATE(2152), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5071), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3271), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3293), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2157), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2204), 13, + sym_val_nothing, + sym_val_variable, + sym_val_cellpath, + 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, + [9651] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3077), 1, + ts_builtin_sym_end, STATE(1369), 1, + aux_sym__block_body_repeat1, + STATE(1373), 1, sym_comment, - ACTIONS(2935), 10, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3062), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147197,7 +147592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2932), 48, + ACTIONS(3064), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147222,13 +147617,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147246,16 +147638,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9247] = 5, + [9727] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3234), 2, + ACTIONS(806), 1, + anon_sym_DOLLAR, + ACTIONS(822), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(828), 1, + anon_sym_0b, + ACTIONS(850), 1, + aux_sym_unquoted_token1, + ACTIONS(852), 1, + sym_raw_string_begin, + ACTIONS(3088), 1, + anon_sym_LBRACK, + ACTIONS(3090), 1, + anon_sym_LPAREN, + ACTIONS(3092), 1, + anon_sym_LBRACE, + ACTIONS(3094), 1, + anon_sym_DOT_DOT, + ACTIONS(3096), 1, + anon_sym_LPAREN2, + ACTIONS(3108), 1, + anon_sym_DQUOTE, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(3112), 1, + anon_sym_BQUOTE, + ACTIONS(3114), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3116), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3317), 1, + anon_sym_null, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3325), 1, + sym_val_date, + STATE(1374), 1, + sym_comment, + STATE(2436), 1, + sym__val_number_decimal, + STATE(2762), 1, + sym_val_bool, + STATE(3001), 1, + sym__inter_double_quotes, + STATE(3008), 1, + sym_unquoted, + STATE(3042), 1, + sym__val_number, + STATE(3069), 1, + sym__inter_single_quotes, + ACTIONS(830), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3098), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3315), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3323), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3007), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5073), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3104), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3319), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2449), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3031), 13, + sym_val_nothing, + sym_val_variable, + sym_val_cellpath, + 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, + [9861] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2634), 1, sym__newline, + ACTIONS(3331), 1, anon_sym_SEMI, - STATE(1370), 2, + STATE(1371), 1, + aux_sym__parenthesized_body_repeat1, + STATE(1375), 1, sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3075), 10, + STATE(1381), 1, + aux_sym__repeat_newline, + ACTIONS(3327), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147266,9 +147760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3077), 46, + ACTIONS(3329), 45, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147313,19 +147806,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9319] = 7, + [9939] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3046), 1, - ts_builtin_sym_end, - STATE(1370), 1, - aux_sym__block_body_repeat1, - STATE(1371), 1, + STATE(1376), 1, sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3042), 10, + ACTIONS(3333), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147336,7 +147822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3335), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147361,10 +147847,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147382,408 +147871,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9395] = 40, + [10008] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, + STATE(1377), 1, + sym_comment, + ACTIONS(3337), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, anon_sym_0b, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2870), 1, - anon_sym_null, - ACTIONS(2876), 1, - anon_sym_LBRACK, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LBRACE, - ACTIONS(2884), 1, - anon_sym__, - ACTIONS(2886), 1, - anon_sym_DOT_DOT, - ACTIONS(2890), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(1361), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(1372), 1, - sym_comment, - STATE(3487), 1, - sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, - sym_val_variable, - STATE(3762), 1, - sym__match_pattern, - STATE(4016), 1, - sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, - sym__match_pattern_list, - STATE(5173), 1, - sym_match_pattern, - ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2868), 2, + ACTIONS(3339), 48, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4299), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4549), 2, - sym_match_arm, - sym_default_arm, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(2872), 3, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4309), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [9537] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(914), 1, - anon_sym_DOLLAR, - ACTIONS(930), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(936), 1, - anon_sym_0b, - ACTIONS(956), 1, - aux_sym_unquoted_token1, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(3239), 1, - anon_sym_null, - ACTIONS(3243), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(3245), 1, anon_sym_LPAREN, - ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(3249), 1, - anon_sym_DOT_DOT, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3255), 1, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, - ACTIONS(3261), 1, + aux_sym__val_number_decimal_token3, + 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(3263), 1, anon_sym_DQUOTE, - ACTIONS(3265), 1, anon_sym_SQUOTE, - ACTIONS(3267), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1373), 1, + anon_sym_CARET, + [10077] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1378), 1, sym_comment, - STATE(2469), 1, - sym__val_number_decimal, - STATE(2876), 1, - sym_val_bool, - STATE(3091), 1, - sym__inter_single_quotes, - STATE(3098), 1, - sym__inter_double_quotes, - STATE(3152), 1, - sym_unquoted, - STATE(3203), 1, - sym__val_number, - ACTIONS(938), 2, + ACTIONS(3341), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3237), 2, + ACTIONS(3343), 48, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3253), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3257), 2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3147), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(4851), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3241), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3259), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2472), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3180), 13, - sym_val_nothing, - sym_val_variable, - sym_val_cellpath, - 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, - [9671] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(799), 1, - anon_sym_DOLLAR, - ACTIONS(821), 1, - anon_sym_0b, - ACTIONS(841), 1, - aux_sym_unquoted_token1, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(1240), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3204), 1, - anon_sym_LBRACK, - ACTIONS(3206), 1, - anon_sym_LPAREN, - ACTIONS(3208), 1, - anon_sym_LBRACE, - ACTIONS(3210), 1, - anon_sym_DOT_DOT, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3224), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(3226), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3275), 1, - anon_sym_null, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - sym_val_date, - STATE(1374), 1, + anon_sym_CARET, + [10146] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1354), 1, + aux_sym__block_body_repeat1, + STATE(1379), 1, sym_comment, - STATE(2956), 1, - sym_unquoted, - STATE(3023), 1, - sym__val_number, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - STATE(3526), 1, - sym__val_number_decimal, - STATE(3941), 1, - sym_val_bool, - ACTIONS(823), 2, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3062), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3214), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3273), 2, + ACTIONS(3064), 45, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3281), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3060), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(4992), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3220), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3277), 3, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3021), 13, - sym_val_nothing, - sym_val_variable, - sym_val_cellpath, - 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, - [9805] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3287), 1, - anon_sym_null, - ACTIONS(3291), 1, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(3293), 1, anon_sym_LPAREN, - ACTIONS(3295), 1, - anon_sym_DOLLAR, - ACTIONS(3297), 1, anon_sym_LBRACE, - ACTIONS(3299), 1, - anon_sym_DOT_DOT, - ACTIONS(3301), 1, - anon_sym_LPAREN2, - ACTIONS(3305), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3307), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3313), 1, - anon_sym_0b, - ACTIONS(3317), 1, - sym_val_date, - ACTIONS(3319), 1, - anon_sym_DQUOTE, - ACTIONS(3321), 1, - anon_sym_SQUOTE, - ACTIONS(3323), 1, - anon_sym_BQUOTE, - ACTIONS(3325), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3327), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3329), 1, - aux_sym_unquoted_token1, - ACTIONS(3331), 1, - sym_raw_string_begin, - STATE(1375), 1, - sym_comment, - STATE(1841), 1, - sym__val_number_decimal, - STATE(2116), 1, - sym_val_bool, - STATE(2168), 1, - sym__inter_single_quotes, - STATE(2176), 1, - sym_unquoted, - STATE(2178), 1, - sym__val_number, - STATE(2179), 1, - sym__inter_double_quotes, - ACTIONS(3285), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3303), 2, + anon_sym_where, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3309), 2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3315), 2, - anon_sym_0o, - anon_sym_0x, - STATE(2174), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(5050), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3289), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3311), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2160), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2171), 13, - sym_val_nothing, - sym_val_variable, - sym_val_cellpath, - 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, - [9939] = 4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [10219] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1376), 1, + STATE(1380), 1, sym_comment, - ACTIONS(3335), 10, + ACTIONS(3214), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147794,7 +148084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3333), 48, + ACTIONS(3216), 48, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -147843,12 +148133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10008] = 4, + [10288] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1377), 1, + ACTIONS(2634), 1, + sym__newline, + ACTIONS(3349), 1, + anon_sym_SEMI, + STATE(1356), 1, + aux_sym__repeat_newline, + STATE(1381), 1, sym_comment, - ACTIONS(3339), 10, + ACTIONS(3345), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147859,9 +148155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3337), 48, + ACTIONS(3347), 45, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147885,8 +148180,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -147908,12 +148201,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10077] = 4, + [10363] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1378), 1, + STATE(1382), 1, sym_comment, - ACTIONS(3341), 10, + ACTIONS(3353), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147924,8 +148217,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3343), 48, + ACTIONS(3351), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147955,7 +148249,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147973,38 +148266,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10146] = 12, + [10432] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1606), 1, sym__unquoted_pattern, - ACTIONS(3345), 1, + ACTIONS(3355), 1, anon_sym_DOT, - STATE(1379), 1, + STATE(1383), 1, sym_comment, - STATE(1434), 1, + STATE(1437), 1, sym__immediate_decimal, - ACTIONS(3347), 2, + ACTIONS(3357), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3349), 2, + ACTIONS(3359), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(698), 2, + STATE(677), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1594), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 41, + ACTIONS(1590), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148046,12 +148339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10231] = 4, + [10517] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1380), 1, + ACTIONS(3216), 1, + anon_sym_RPAREN, + STATE(1384), 1, sym_comment, - ACTIONS(3084), 10, + ACTIONS(3365), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3361), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148062,9 +148360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 48, + ACTIONS(3363), 45, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148088,8 +148385,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148111,17 +148406,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10300] = 6, + [10590] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3082), 1, - anon_sym_RPAREN, - STATE(1381), 1, + STATE(1385), 1, sym_comment, - ACTIONS(3355), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3351), 10, + ACTIONS(3370), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148132,8 +148422,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3353), 45, + ACTIONS(3368), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148157,6 +148448,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148178,17 +148471,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10373] = 6, + [10659] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1357), 1, - aux_sym__block_body_repeat1, - STATE(1382), 1, + ACTIONS(1592), 1, + anon_sym_DOLLAR, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1645), 1, + sym__unquoted_pattern, + STATE(1386), 1, sym_comment, - ACTIONS(153), 2, + STATE(1462), 1, + sym__immediate_decimal, + ACTIONS(3372), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3374), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(776), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1643), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1641), 41, + anon_sym_in, sym__newline, anon_sym_SEMI, - ACTIONS(3042), 10, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [10741] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1387), 1, + sym_comment, + ACTIONS(3361), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148199,7 +148558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3363), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148224,6 +148583,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148245,18 +148606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10446] = 7, + [10809] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2557), 1, - sym__newline, - ACTIONS(3362), 1, - anon_sym_SEMI, - STATE(1355), 1, - aux_sym__repeat_newline, - STATE(1383), 1, + STATE(1388), 1, sym_comment, - ACTIONS(3358), 10, + ACTIONS(3257), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148267,7 +148622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3360), 45, + ACTIONS(3259), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148292,6 +148647,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148313,61 +148670,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10521] = 4, + [10877] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1384), 1, - sym_comment, - ACTIONS(3364), 10, - anon_sym_export, + ACTIONS(3382), 1, aux_sym_cmd_identifier_token1, + ACTIONS(3389), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3392), 1, + aux_sym__val_number_decimal_token2, + STATE(2054), 1, + sym__val_number_decimal, + STATE(4679), 1, + sym_env_var, + STATE(5057), 1, + sym_cmd_identifier, + ACTIONS(3376), 2, + anon_sym_export, anon_sym_in, + ACTIONS(3395), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1389), 2, + sym_comment, + aux_sym_pipe_element_repeat2, + ACTIONS(3387), 6, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3366), 48, + ACTIONS(3385), 17, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, 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, @@ -148378,24 +148719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10590] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1385), 1, - sym_comment, - ACTIONS(3368), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3370), 48, - sym_raw_string_begin, + ACTIONS(3379), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148419,63 +148743,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10659] = 12, + [10963] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1649), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(3372), 1, - anon_sym_DOT, - STATE(1386), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + STATE(1390), 1, sym_comment, - STATE(1443), 1, + STATE(1470), 1, sym__immediate_decimal, - ACTIONS(3374), 2, + ACTIONS(3372), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3376), 2, + ACTIONS(3374), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(929), 2, + STATE(809), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1594), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 40, - ts_builtin_sym_end, + ACTIONS(1590), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148488,6 +148785,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_and2, anon_sym_xor2, anon_sym_or2, @@ -148515,36 +148814,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10743] = 11, + [11045] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(3404), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3411), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3414), 1, + aux_sym__val_number_decimal_token2, + STATE(2054), 1, + sym__val_number_decimal, + STATE(4400), 1, + sym_env_var, + STATE(5057), 1, + sym_cmd_identifier, + ACTIONS(3398), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3417), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1391), 2, + sym_comment, + aux_sym_pipe_element_parenthesized_repeat2, + ACTIONS(3409), 6, anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3407), 17, + 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_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(3401), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [11131] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, sym__unquoted_pattern, - STATE(1387), 1, + ACTIONS(1671), 1, + anon_sym_DOLLAR, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + ACTIONS(3420), 1, + anon_sym_DOT, + STATE(1392), 1, sym_comment, - STATE(1486), 1, + STATE(1443), 1, sym__immediate_decimal, - ACTIONS(3378), 2, + ACTIONS(3422), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, + ACTIONS(3424), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(944), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1594), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 41, + ACTIONS(1590), 40, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148557,8 +148932,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_and2, anon_sym_xor2, anon_sym_or2, @@ -148586,36 +148959,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10825] = 11, + [11215] = 33, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1382), 1, + anon_sym_LPAREN, + ACTIONS(1386), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(1388), 1, + ACTIONS(1402), 1, + anon_sym_0b, + ACTIONS(1408), 1, + anon_sym_DQUOTE, + ACTIONS(1410), 1, + anon_sym_SQUOTE, + ACTIONS(1412), 1, + anon_sym_BQUOTE, + ACTIONS(1414), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1416), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1422), 1, + sym_raw_string_begin, + ACTIONS(1452), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1454), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1560), 1, + anon_sym_LBRACK, + ACTIONS(3426), 1, + anon_sym_null, + ACTIONS(3428), 1, + anon_sym_LBRACE, + ACTIONS(3430), 1, + anon_sym_DOT_DOT, + ACTIONS(3434), 1, + sym_val_date, + STATE(1393), 1, sym_comment, - STATE(1471), 1, - sym__immediate_decimal, - ACTIONS(3378), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, + STATE(3694), 1, + sym__val_number_decimal, + STATE(3847), 1, sym_val_variable, - ACTIONS(1633), 6, + STATE(4039), 1, + sym_expr_parenthesized, + STATE(4172), 1, + sym__val_number, + STATE(4457), 1, + sym__inter_single_quotes, + STATE(4458), 1, + sym__inter_double_quotes, + STATE(4745), 1, + sym_block, + ACTIONS(1404), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1432), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1456), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3432), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4752), 2, + sym_val_range, + sym__value, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1400), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(4536), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + 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, + [11340] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3436), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3438), 1, + aux_sym__immediate_decimal_token5, + STATE(1394), 1, + sym_comment, + ACTIONS(739), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 41, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148629,6 +149083,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_DASH2, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, @@ -148648,6 +149103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -148657,28 +149113,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10907] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [11411] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1389), 1, + ACTIONS(3407), 1, + sym_raw_string_begin, + ACTIONS(3440), 1, + sym__newline, + ACTIONS(3442), 1, + sym__space, + STATE(1395), 1, sym_comment, - ACTIONS(3182), 10, + STATE(1401), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3409), 52, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3184), 47, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -148692,214 +149149,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10975] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3388), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3398), 1, - aux_sym__val_number_decimal_token2, - STATE(2103), 1, - sym__val_number_decimal, - STATE(4391), 1, - sym_env_var, - STATE(4838), 1, - sym_cmd_identifier, - ACTIONS(3382), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3401), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1390), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat2, - ACTIONS(3393), 6, anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3391), 17, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3385), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [11061] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1391), 1, - sym_comment, - ACTIONS(3351), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3353), 47, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, 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, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [11129] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3417), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3420), 1, - aux_sym__val_number_decimal_token2, - STATE(2103), 1, - sym__val_number_decimal, - STATE(4759), 1, - sym_env_var, - STATE(4838), 1, - sym_cmd_identifier, - ACTIONS(3404), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3423), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1392), 2, - sym_comment, - aux_sym_pipe_element_repeat2, - ACTIONS(3415), 6, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3413), 17, - 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_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -148907,56 +149182,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(3407), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [11215] = 33, + [11484] = 33, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, + ACTIONS(1382), 1, anon_sym_LPAREN, - ACTIONS(1390), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR, - ACTIONS(1406), 1, + ACTIONS(1402), 1, anon_sym_0b, - ACTIONS(1412), 1, + ACTIONS(1408), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1410), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1412), 1, anon_sym_BQUOTE, - ACTIONS(1418), 1, + ACTIONS(1414), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, + ACTIONS(1416), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, + ACTIONS(1422), 1, sym_raw_string_begin, - ACTIONS(1502), 1, + ACTIONS(1452), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1504), 1, + ACTIONS(1454), 1, aux_sym__val_number_decimal_token2, - ACTIONS(1578), 1, + ACTIONS(1560), 1, anon_sym_LBRACK, ACTIONS(3426), 1, anon_sym_null, @@ -148966,29 +149217,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(3434), 1, sym_val_date, - STATE(1393), 1, + STATE(1396), 1, sym_comment, - STATE(3676), 1, + STATE(3694), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(3847), 1, sym_val_variable, - STATE(4037), 1, + STATE(4043), 1, sym_expr_parenthesized, - STATE(4165), 1, + STATE(4172), 1, sym__val_number, - STATE(4452), 1, + STATE(4457), 1, sym__inter_single_quotes, - STATE(4453), 1, + STATE(4458), 1, sym__inter_double_quotes, - STATE(4768), 1, + STATE(4755), 1, sym_block, - ACTIONS(1408), 2, + ACTIONS(1404), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1482), 2, + ACTIONS(1432), 2, anon_sym_true, anon_sym_false, - ACTIONS(1506), 2, + ACTIONS(1456), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, ACTIONS(3432), 2, @@ -148997,12 +149248,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(4774), 2, sym_val_range, sym__value, - STATE(3505), 4, + STATE(3527), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1404), 6, + ACTIONS(1400), 6, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, @@ -149023,94 +149274,299 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11340] = 37, + [11609] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1671), 1, + anon_sym_DOLLAR, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + STATE(1397), 1, + sym_comment, + STATE(1499), 1, + sym__immediate_decimal, + ACTIONS(3444), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3446), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1319), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1594), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1590), 40, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [11690] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3448), 1, + anon_sym_DOT, + ACTIONS(3450), 1, + aux_sym__immediate_decimal_token5, + STATE(1398), 1, + sym_comment, + ACTIONS(747), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 46, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [11761] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1645), 1, + sym__unquoted_pattern, + ACTIONS(1671), 1, + anon_sym_DOLLAR, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + STATE(1399), 1, + sym_comment, + STATE(1493), 1, + sym__immediate_decimal, + ACTIONS(3444), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3446), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1284), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1643), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1641), 40, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [11842] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1376), 1, + ACTIONS(1372), 1, anon_sym_null, - ACTIONS(1386), 1, + ACTIONS(1382), 1, anon_sym_LPAREN, - ACTIONS(1398), 1, + ACTIONS(1394), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, + ACTIONS(1396), 1, aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, + ACTIONS(1402), 1, anon_sym_0b, - ACTIONS(1412), 1, + ACTIONS(1408), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1410), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1412), 1, anon_sym_BQUOTE, - ACTIONS(1424), 1, + ACTIONS(1420), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, + ACTIONS(1422), 1, sym_raw_string_begin, - ACTIONS(1568), 1, + ACTIONS(1584), 1, anon_sym_DOT_DOT, - ACTIONS(2656), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR, - ACTIONS(2658), 1, + ACTIONS(2551), 1, anon_sym_LBRACE, - ACTIONS(2662), 1, + ACTIONS(2555), 1, sym_val_date, - ACTIONS(3436), 1, + ACTIONS(3452), 1, sym__newline, - ACTIONS(3438), 1, + ACTIONS(3454), 1, anon_sym_LBRACK, - STATE(1394), 1, + STATE(1400), 1, sym_comment, - STATE(1424), 1, + STATE(1419), 1, aux_sym__match_pattern_list_body_repeat1, - STATE(2247), 1, + STATE(2252), 1, aux_sym__types_body_repeat1, STATE(3555), 1, sym__val_number_decimal, - STATE(3756), 1, - sym_expr_parenthesized, STATE(3757), 1, + sym_expr_parenthesized, + STATE(3758), 1, sym_val_variable, - STATE(4134), 1, + STATE(4145), 1, sym_val_bool, - STATE(4165), 1, + STATE(4172), 1, sym__val_number, - STATE(4516), 1, + STATE(4520), 1, sym__match_pattern_list, - ACTIONS(1374), 2, + ACTIONS(1370), 2, anon_sym_true, anon_sym_false, - ACTIONS(1396), 2, + ACTIONS(1392), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, + ACTIONS(1398), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, + ACTIONS(1404), 2, anon_sym_0o, anon_sym_0x, - STATE(4290), 2, + STATE(4296), 2, sym__match_pattern_expression, sym__unquoted_in_list, - STATE(4515), 2, + STATE(4519), 2, sym__match_pattern_value, sym_val_range, - STATE(4853), 2, + STATE(4822), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, + ACTIONS(1374), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, + ACTIONS(1400), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3505), 4, + STATE(3527), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4517), 8, + STATE(4521), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -149119,19 +149575,19 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [11473] = 6, + [11975] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3442), 1, + ACTIONS(3458), 1, sym__newline, - ACTIONS(3445), 1, + ACTIONS(3461), 1, sym__space, - ACTIONS(3448), 1, + ACTIONS(3464), 1, sym_raw_string_begin, - STATE(1395), 2, + STATE(1401), 2, sym_comment, aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(3440), 52, + ACTIONS(3456), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -149184,36 +149640,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11544] = 11, + [12046] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - STATE(1396), 1, + ACTIONS(3466), 1, + sym__newline, + STATE(1402), 2, + aux_sym__repeat_newline, sym_comment, - STATE(1504), 1, - sym__immediate_decimal, - ACTIONS(3450), 2, + ACTIONS(2062), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2057), 43, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [12114] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3469), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1343), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(3471), 1, + aux_sym__immediate_decimal_token5, + STATE(1403), 1, + sym_comment, + ACTIONS(739), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 40, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -149227,6 +149735,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -149245,6 +149754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149254,37 +149764,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11625] = 11, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [12184] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1649), 1, + ACTIONS(3385), 1, + sym_raw_string_begin, + ACTIONS(3473), 1, + sym__space, + STATE(1404), 1, + sym_comment, + STATE(1405), 1, + aux_sym_pipe_element_repeat1, + ACTIONS(3387), 52, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - STATE(1397), 1, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [12254] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3477), 1, + sym__space, + ACTIONS(3480), 1, + sym_raw_string_begin, + STATE(1405), 2, sym_comment, - STATE(1505), 1, - sym__immediate_decimal, - ACTIONS(3450), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1311), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, + aux_sym_pipe_element_repeat1, + ACTIONS(3475), 52, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [12322] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3450), 1, + aux_sym__immediate_decimal_token5, + STATE(1406), 1, + sym_comment, + ACTIONS(747), 8, + anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 40, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149297,6 +149923,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_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -149315,6 +149944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149324,20 +149954,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11706] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [12390] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3391), 1, + STATE(1407), 1, + sym_comment, + ACTIONS(3482), 2, sym_raw_string_begin, - ACTIONS(3454), 1, - sym__newline, - ACTIONS(3456), 1, sym__space, - STATE(1395), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(1398), 1, - sym_comment, - ACTIONS(3393), 52, + ACTIONS(846), 53, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -149364,6 +149992,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -149390,108 +150019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11779] = 33, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1390), 1, - anon_sym_DOLLAR, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1418), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1502), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1504), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1578), 1, - anon_sym_LBRACK, - ACTIONS(3426), 1, - anon_sym_null, - ACTIONS(3428), 1, - anon_sym_LBRACE, - ACTIONS(3430), 1, - anon_sym_DOT_DOT, - ACTIONS(3434), 1, - sym_val_date, - STATE(1399), 1, - sym_comment, - STATE(3676), 1, - sym__val_number_decimal, - STATE(3846), 1, - sym_val_variable, - STATE(4033), 1, - sym_expr_parenthesized, - STATE(4165), 1, - sym__val_number, - STATE(4452), 1, - sym__inter_single_quotes, - STATE(4453), 1, - sym__inter_double_quotes, - STATE(4761), 1, - sym_block, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1482), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1506), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3432), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4765), 2, - sym_val_range, - sym__value, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1404), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(4536), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - 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, - [11904] = 6, + [12456] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3458), 1, - anon_sym_DOT, - ACTIONS(3460), 1, + ACTIONS(3484), 1, aux_sym__immediate_decimal_token5, - STATE(1400), 1, + STATE(1408), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(771), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -149500,7 +150035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 46, + ACTIONS(773), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149547,25 +150082,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [11975] = 6, + [12524] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3462), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3464), 1, - aux_sym__immediate_decimal_token5, - STATE(1401), 1, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + ACTIONS(1744), 1, + sym__unquoted_pattern, + ACTIONS(3486), 1, + anon_sym_DOT_DOT2, + ACTIONS(3490), 1, + sym_filesize_unit, + ACTIONS(3492), 1, + sym_duration_unit, + STATE(1409), 1, sym_comment, - ACTIONS(747), 8, + STATE(4715), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3488), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(860), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 46, + ACTIONS(960), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149599,7 +150142,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149609,17 +150151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12046] = 6, + [12604] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3466), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3468), 1, + ACTIONS(3494), 1, + anon_sym_DOT, + ACTIONS(3496), 1, aux_sym__immediate_decimal_token5, - STATE(1402), 1, + STATE(1410), 1, sym_comment, ACTIONS(747), 8, anon_sym_GT2, @@ -149676,23 +150215,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12116] = 5, + [12674] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3470), 1, + ACTIONS(3498), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3500), 1, aux_sym__immediate_decimal_token5, - STATE(1403), 1, + STATE(1411), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(1728), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 46, + ACTIONS(1726), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149738,160 +150278,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12184] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3474), 1, - sym__space, - ACTIONS(3477), 1, - sym_raw_string_begin, - STATE(1404), 2, - sym_comment, - aux_sym_pipe_element_repeat1, - ACTIONS(3472), 52, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - 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, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [12252] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3479), 1, - sym__newline, - STATE(1405), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1960), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1955), 43, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [12320] = 11, + [12743] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(3482), 1, - anon_sym_DOT_DOT2, - ACTIONS(3486), 1, - sym_filesize_unit, - ACTIONS(3488), 1, - sym_duration_unit, - STATE(1406), 1, + ACTIONS(3502), 1, + aux_sym__immediate_decimal_token5, + STATE(1412), 1, sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3484), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + ACTIONS(771), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 42, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(773), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149904,9 +150308,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_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -149925,6 +150327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149934,89 +150337,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [12400] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3413), 1, - sym_raw_string_begin, - ACTIONS(3490), 1, - sym__space, - STATE(1404), 1, - aux_sym_pipe_element_repeat1, - STATE(1407), 1, - sym_comment, - ACTIONS(3415), 52, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - 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, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [12470] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [12810] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3494), 1, - aux_sym__immediate_decimal_token5, - STATE(1408), 1, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + ACTIONS(1838), 1, + sym__unquoted_pattern, + ACTIONS(3504), 1, + anon_sym_DOT_DOT2, + ACTIONS(3508), 1, + sym_filesize_unit, + ACTIONS(3510), 1, + sym_duration_unit, + STATE(1413), 1, sym_comment, - ACTIONS(739), 8, + STATE(4765), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3506), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(860), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 45, + ACTIONS(960), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -150049,7 +150399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -150059,18 +150408,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12540] = 4, + [12889] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(1409), 1, + STATE(1414), 1, sym_comment, - ACTIONS(3496), 2, + ACTIONS(3514), 2, sym_raw_string_begin, sym__space, - ACTIONS(858), 53, + ACTIONS(3512), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -150097,7 +150443,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -150124,84 +150469,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12606] = 5, + [12954] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3460), 1, - aux_sym__immediate_decimal_token5, - STATE(1410), 1, + STATE(1415), 1, sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 46, + ACTIONS(2066), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [12674] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1411), 1, - sym_comment, - ACTIONS(3500), 2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2064), 44, sym_raw_string_begin, - sym__space, - ACTIONS(3498), 52, - anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -150215,32 +150504,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_DOT_DOT, 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, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -150248,105 +150530,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12739] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3505), 1, - anon_sym_null, - ACTIONS(3511), 1, - anon_sym_LBRACK, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3517), 1, - anon_sym_DOLLAR, - ACTIONS(3520), 1, - anon_sym_LBRACE, - ACTIONS(3523), 1, - anon_sym_DOT_DOT, - ACTIONS(3529), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3532), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3541), 1, - anon_sym_0b, - ACTIONS(3547), 1, - sym_val_date, - ACTIONS(3550), 1, - anon_sym_DQUOTE, - ACTIONS(3553), 1, - anon_sym_SQUOTE, - ACTIONS(3556), 1, - anon_sym_BQUOTE, - ACTIONS(3559), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3562), 1, - sym_raw_string_begin, - STATE(3672), 1, - sym__val_number_decimal, - STATE(4165), 1, - sym__val_number, - STATE(4191), 1, - sym_expr_parenthesized, - STATE(4192), 1, - sym_val_variable, - STATE(4516), 1, - sym__match_pattern_list, - STATE(4685), 1, - sym_val_bool, - ACTIONS(3502), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3526), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3535), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3544), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1412), 2, - sym_comment, - aux_sym__match_pattern_list_body_repeat1, - STATE(4515), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4732), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(4853), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3508), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3538), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4517), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [12864] = 5, + [13019] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3565), 1, - aux_sym__immediate_decimal_token5, - STATE(1413), 1, + STATE(1416), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150355,8 +150544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 45, - ts_builtin_sym_end, + ACTIONS(741), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150369,7 +150557,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_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -150401,24 +150591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12931] = 6, + [13084] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3567), 1, - anon_sym_DOT, - ACTIONS(3569), 1, - aux_sym__immediate_decimal_token5, - STATE(1414), 1, + STATE(1417), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(771), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1736), 45, + ACTIONS(773), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150464,34 +150651,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13000] = 11, + sym_duration_unit, + [13149] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, - ACTIONS(3571), 1, - anon_sym_DOT_DOT2, - ACTIONS(3575), 1, - sym_filesize_unit, - ACTIONS(3577), 1, - sym_duration_unit, - STATE(1415), 1, + STATE(1418), 1, sym_comment, - STATE(4775), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3573), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + ACTIONS(878), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 41, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(880), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150504,7 +150679,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_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -150523,6 +150700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -150532,68 +150710,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [13079] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [13214] = 36, ACTIONS(3), 1, anon_sym_POUND, - STATE(1416), 1, - sym_comment, - ACTIONS(2098), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(1372), 1, + anon_sym_null, + ACTIONS(1382), 1, + anon_sym_LPAREN, + ACTIONS(1394), 1, aux_sym__val_number_decimal_token1, + ACTIONS(1396), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1402), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2096), 44, + ACTIONS(1408), 1, + anon_sym_DQUOTE, + ACTIONS(1410), 1, + anon_sym_SQUOTE, + ACTIONS(1412), 1, + anon_sym_BQUOTE, + ACTIONS(1420), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1422), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(1584), 1, + anon_sym_DOT_DOT, + ACTIONS(2549), 1, + anon_sym_DOLLAR, + ACTIONS(2551), 1, + anon_sym_LBRACE, + ACTIONS(2555), 1, + sym_val_date, + ACTIONS(3454), 1, + anon_sym_LBRACK, + STATE(1419), 1, + sym_comment, + STATE(1420), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(3555), 1, + sym__val_number_decimal, + STATE(3757), 1, + sym_expr_parenthesized, + STATE(3758), 1, + sym_val_variable, + STATE(4145), 1, + sym_val_bool, + STATE(4172), 1, + sym__val_number, + STATE(4192), 1, + sym__match_pattern_expression, + STATE(4196), 1, + sym__unquoted_in_list, + STATE(4520), 1, + sym__match_pattern_list, + ACTIONS(1370), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(1392), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(1398), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1404), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4519), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4822), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1374), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, + ACTIONS(1400), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4521), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [13343] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3519), 1, + anon_sym_null, + ACTIONS(3525), 1, anon_sym_LBRACK, + ACTIONS(3528), 1, anon_sym_LPAREN, + ACTIONS(3531), 1, + anon_sym_DOLLAR, + ACTIONS(3534), 1, anon_sym_LBRACE, - aux_sym_expr_unary_token1, + ACTIONS(3537), 1, + anon_sym_DOT_DOT, + ACTIONS(3543), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3546), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3555), 1, + anon_sym_0b, + ACTIONS(3561), 1, + sym_val_date, + ACTIONS(3564), 1, + anon_sym_DQUOTE, + ACTIONS(3567), 1, + anon_sym_SQUOTE, + ACTIONS(3570), 1, + anon_sym_BQUOTE, + ACTIONS(3573), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3576), 1, + sym_raw_string_begin, + STATE(3696), 1, + sym__val_number_decimal, + STATE(4172), 1, + sym__val_number, + STATE(4188), 1, + sym_expr_parenthesized, + STATE(4190), 1, + sym_val_variable, + STATE(4520), 1, + sym__match_pattern_list, + STATE(4625), 1, + sym_val_bool, + ACTIONS(3516), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3540), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(3549), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + ACTIONS(3558), 2, + anon_sym_0o, + anon_sym_0x, + STATE(1420), 2, + sym_comment, + aux_sym__match_pattern_list_body_repeat1, + STATE(4519), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4702), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(4822), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3522), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3552), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4521), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [13468] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1786), 1, anon_sym_DQUOTE, + ACTIONS(1788), 1, anon_sym_SQUOTE, + ACTIONS(1790), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [13144] = 36, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(1914), 1, + aux_sym_unquoted_token1, + ACTIONS(2756), 1, + anon_sym_LPAREN, + ACTIONS(2879), 1, + anon_sym_LBRACK, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + ACTIONS(2883), 1, + anon_sym_LBRACE, + ACTIONS(3581), 1, + anon_sym_null, + ACTIONS(3585), 1, + anon_sym_DOT_DOT, + ACTIONS(3589), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3591), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3595), 1, + sym_val_date, + STATE(676), 1, + sym__val_number, + STATE(1421), 1, + sym_comment, + STATE(3523), 1, + sym__val_number_decimal, + STATE(3627), 1, + sym_val_variable, + STATE(3727), 1, + sym_expr_parenthesized, + STATE(4082), 1, + sym_unquoted, + STATE(4087), 1, + sym_val_bool, + STATE(4274), 1, + sym__match_pattern_list, + STATE(4302), 1, + sym__match_pattern_expression, + STATE(4593), 1, + sym__match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3579), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3587), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3593), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4076), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4927), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(189), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3583), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4284), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [13597] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -150608,13 +151005,13 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1914), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2756), 1, anon_sym_LPAREN, - ACTIONS(2876), 1, + ACTIONS(2879), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2881), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2883), 1, anon_sym_LBRACE, ACTIONS(3581), 1, anon_sym_null, @@ -150626,25 +151023,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, ACTIONS(3595), 1, sym_val_date, - STATE(694), 1, + STATE(676), 1, sym__val_number, - STATE(1417), 1, + STATE(1422), 1, sym_comment, - STATE(3501), 1, + STATE(3523), 1, sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, + STATE(3627), 1, sym_val_variable, + STATE(3727), 1, + sym_expr_parenthesized, + STATE(4082), 1, + sym_unquoted, STATE(4087), 1, sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, + STATE(4274), 1, sym__match_pattern_list, - STATE(4587), 1, + STATE(4302), 1, + sym__match_pattern_expression, + STATE(4612), 1, sym__match_pattern, ACTIONS(193), 2, anon_sym_0o, @@ -150658,10 +151055,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3593), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4299), 2, + STATE(4076), 2, sym__match_pattern_value, sym_val_range, - STATE(4884), 2, + STATE(4927), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, @@ -150672,12 +151069,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4309), 8, + STATE(4284), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150686,91 +151083,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13273] = 36, + [13726] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1376), 1, + ACTIONS(1372), 1, anon_sym_null, - ACTIONS(1386), 1, + ACTIONS(1382), 1, anon_sym_LPAREN, - ACTIONS(1398), 1, + ACTIONS(1394), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, + ACTIONS(1396), 1, aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, + ACTIONS(1402), 1, anon_sym_0b, - ACTIONS(1412), 1, + ACTIONS(1408), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1410), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1412), 1, anon_sym_BQUOTE, - ACTIONS(1424), 1, + ACTIONS(1420), 1, aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, + ACTIONS(1422), 1, sym_raw_string_begin, - ACTIONS(1568), 1, + ACTIONS(1584), 1, anon_sym_DOT_DOT, - ACTIONS(2656), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR, - ACTIONS(2658), 1, + ACTIONS(2551), 1, anon_sym_LBRACE, - ACTIONS(2662), 1, + ACTIONS(2555), 1, sym_val_date, - ACTIONS(3438), 1, + ACTIONS(3454), 1, anon_sym_LBRACK, - STATE(1412), 1, + STATE(1420), 1, aux_sym__match_pattern_list_body_repeat1, - STATE(1418), 1, + STATE(1423), 1, sym_comment, STATE(3555), 1, sym__val_number_decimal, - STATE(3756), 1, - sym_expr_parenthesized, STATE(3757), 1, + sym_expr_parenthesized, + STATE(3758), 1, sym_val_variable, - STATE(4134), 1, + STATE(4145), 1, sym_val_bool, - STATE(4165), 1, + STATE(4172), 1, sym__val_number, - STATE(4295), 1, + STATE(4297), 1, sym__match_pattern_expression, - STATE(4296), 1, + STATE(4298), 1, sym__unquoted_in_list, - STATE(4516), 1, + STATE(4520), 1, sym__match_pattern_list, - ACTIONS(1374), 2, + ACTIONS(1370), 2, anon_sym_true, anon_sym_false, - ACTIONS(1396), 2, + ACTIONS(1392), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, + ACTIONS(1398), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, + ACTIONS(1404), 2, anon_sym_0o, anon_sym_0x, - STATE(4515), 2, + STATE(4519), 2, sym__match_pattern_value, sym_val_range, - STATE(4853), 2, + STATE(4822), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, + ACTIONS(1374), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, + ACTIONS(1400), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3505), 4, + STATE(3527), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4517), 8, + STATE(4521), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150779,16 +151176,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13402] = 6, + [13855] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3597), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT, ACTIONS(3599), 1, aux_sym__immediate_decimal_token5, - STATE(1419), 1, + STATE(1424), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1762), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150796,7 +151193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 45, + ACTIONS(1760), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150842,105 +151239,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13471] = 36, + [13924] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2876), 1, - anon_sym_LBRACK, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LBRACE, - ACTIONS(3581), 1, - anon_sym_null, - ACTIONS(3585), 1, - anon_sym_DOT_DOT, - ACTIONS(3589), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3591), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3595), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(1420), 1, - sym_comment, - STATE(3501), 1, - sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, - sym_val_variable, - STATE(4087), 1, - sym_val_bool, - STATE(4285), 1, - sym__match_pattern_expression, - STATE(4293), 1, - sym_unquoted, - STATE(4302), 1, - sym__match_pattern_list, - STATE(4602), 1, - sym__match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3579), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3587), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3593), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4299), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4884), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3583), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4309), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13600] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1421), 1, + ACTIONS(3496), 1, + aux_sym__immediate_decimal_token5, + STATE(1425), 1, sym_comment, - ACTIONS(849), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150949,7 +151255,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(851), 46, + ACTIONS(749), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150962,9 +151269,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_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -150996,14 +151301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13665] = 5, + [13991] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3494), 1, - aux_sym__immediate_decimal_token5, - STATE(1422), 1, + STATE(1426), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(878), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151012,7 +151315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 45, + ACTIONS(880), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151058,21 +151361,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13732] = 4, + [14055] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1423), 1, + ACTIONS(3601), 1, + anon_sym_DOT, + ACTIONS(3603), 1, + aux_sym__immediate_decimal_token5, + STATE(1427), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(1762), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 46, + ACTIONS(1760), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151085,9 +151392,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_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151118,115 +151423,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [13797] = 36, + [14123] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1398), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1424), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1568), 1, - anon_sym_DOT_DOT, - ACTIONS(2656), 1, - anon_sym_DOLLAR, - ACTIONS(2658), 1, - anon_sym_LBRACE, - ACTIONS(2662), 1, - sym_val_date, - ACTIONS(3438), 1, - anon_sym_LBRACK, - STATE(1412), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(1424), 1, - sym_comment, - STATE(3555), 1, - sym__val_number_decimal, - STATE(3756), 1, - sym_expr_parenthesized, - STATE(3757), 1, - sym_val_variable, - STATE(4134), 1, - sym_val_bool, - STATE(4165), 1, - sym__val_number, - STATE(4190), 1, - sym__match_pattern_expression, - STATE(4194), 1, - sym__unquoted_in_list, - STATE(4516), 1, - sym__match_pattern_list, - ACTIONS(1374), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1396), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4515), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4853), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4517), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13926] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1425), 1, + ACTIONS(3605), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3607), 1, + aux_sym__immediate_decimal_token5, + STATE(1428), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(1728), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 46, + ACTIONS(1726), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151239,9 +151454,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_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151272,17 +151485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [13991] = 6, + [14191] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3601), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3603), 1, + ACTIONS(3599), 1, aux_sym__immediate_decimal_token5, - STATE(1426), 1, + STATE(1429), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1762), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151290,8 +151500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 44, - ts_builtin_sym_end, + ACTIONS(1760), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151304,7 +151513,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_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151335,16 +151546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14059] = 6, + [14257] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3605), 1, - anon_sym_DOT, - ACTIONS(3607), 1, + ACTIONS(3609), 1, aux_sym__immediate_decimal_token5, - STATE(1427), 1, + STATE(1430), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1812), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151352,8 +151561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 44, - ts_builtin_sym_end, + ACTIONS(1810), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151366,7 +151574,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_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151397,12 +151607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14127] = 4, + [14323] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1428), 1, + STATE(1431), 1, sym_comment, - ACTIONS(849), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151411,7 +151621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(851), 45, + ACTIONS(741), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151457,22 +151667,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [14191] = 5, + [14387] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3569), 1, - aux_sym__immediate_decimal_token5, - STATE(1429), 1, + STATE(1432), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(771), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1736), 45, + ACTIONS(773), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151485,9 +151695,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_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151518,21 +151726,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14257] = 4, + sym_duration_unit, + [14451] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1430), 1, + ACTIONS(3603), 1, + aux_sym__immediate_decimal_token5, + STATE(1433), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(1762), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 45, + ACTIONS(1760), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151577,15 +151787,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [14321] = 5, + [14516] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3609), 1, - aux_sym__immediate_decimal_token5, - STATE(1431), 1, + STATE(1434), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1856), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151593,7 +151800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 45, + ACTIONS(1854), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151639,22 +151846,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14387] = 4, + [14579] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1432), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + ACTIONS(3611), 1, + anon_sym_DOT_DOT2, + STATE(1435), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(3613), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1938), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 45, - ts_builtin_sym_end, + ACTIONS(1936), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151667,7 +151879,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_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151686,7 +151900,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -151696,15 +151909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [14451] = 4, + [14650] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1433), 1, + ACTIONS(3615), 1, + aux_sym__immediate_decimal_token5, + STATE(1436), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1812), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151712,7 +151924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 45, + ACTIONS(1810), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151725,9 +151938,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_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151758,27 +151969,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14514] = 8, + [14715] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1950), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1956), 1, sym__unquoted_pattern, - ACTIONS(3611), 1, + ACTIONS(3617), 1, anon_sym_DOT_DOT2, - STATE(1434), 1, + STATE(1437), 1, sym_comment, - ACTIONS(3613), 2, + ACTIONS(3619), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(1948), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 42, + ACTIONS(1946), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151821,12 +152032,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14585] = 4, + [14786] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1435), 1, + STATE(1438), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1728), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151834,7 +152045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 45, + ACTIONS(1726), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151880,27 +152091,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14648] = 8, + [14849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(3615), 1, - anon_sym_DOT_DOT2, - STATE(1436), 1, + STATE(1439), 1, sym_comment, - ACTIONS(3617), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(1812), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 42, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1810), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151934,6 +152138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -151943,12 +152148,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14719] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [14912] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1437), 1, + STATE(1440), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(1728), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151956,7 +152163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1870), 45, + ACTIONS(1726), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151969,9 +152177,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_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152002,23 +152208,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14782] = 5, + [14974] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3607), 1, + ACTIONS(3621), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3623), 1, aux_sym__immediate_decimal_token5, - STATE(1438), 1, + STATE(1441), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1728), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 44, - ts_builtin_sym_end, + ACTIONS(1726), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152031,7 +152237,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_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152060,24 +152268,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14847] = 5, + [15040] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3619), 1, - aux_sym__immediate_decimal_token5, - STATE(1439), 1, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3633), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_STAR2, + STATE(1442), 1, sym_comment, - ACTIONS(1804), 7, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4327), 1, + sym__command_name, + STATE(4328), 1, + sym_scope_pattern, + STATE(4329), 1, + sym_wild_card, + STATE(4330), 1, + sym_command_list, + ACTIONS(3625), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3631), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [15138] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + ACTIONS(3641), 1, + anon_sym_DOT_DOT2, + STATE(1443), 1, + sym_comment, + ACTIONS(3643), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1948), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 44, + ACTIONS(1946), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152110,7 +152397,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152120,25 +152406,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [14912] = 6, + [15208] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3621), 1, - anon_sym_DOT, - ACTIONS(3623), 1, - aux_sym__immediate_decimal_token5, - STATE(1440), 1, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3633), 1, + anon_sym_LBRACK, + ACTIONS(3635), 1, + anon_sym_STAR2, + STATE(1444), 1, sym_comment, - ACTIONS(1738), 6, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4291), 1, + sym_scope_pattern, + STATE(4327), 1, + sym__command_name, + STATE(4329), 1, + sym_wild_card, + STATE(4330), 1, + sym_command_list, + ACTIONS(3625), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3645), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [15306] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + ACTIONS(3647), 1, + anon_sym_DOT_DOT2, + STATE(1445), 1, + sym_comment, + ACTIONS(3649), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1938), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 43, + ACTIONS(1936), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152151,9 +152516,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_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152172,7 +152535,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152182,27 +152544,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14978] = 8, + [15376] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(3625), 1, - anon_sym_DOT_DOT2, - STATE(1441), 1, + STATE(1446), 1, sym_comment, - ACTIONS(3627), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(1812), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 41, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1810), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152235,6 +152590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152244,24 +152600,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15048] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15438] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3629), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3631), 1, - aux_sym__immediate_decimal_token5, - STATE(1442), 1, + ACTIONS(1844), 1, + anon_sym_DOT2, + STATE(427), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(451), 1, + sym_path, + STATE(952), 1, + sym_cell_path, + STATE(1447), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1849), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 43, - anon_sym_in, + ACTIONS(3651), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -152274,8 +152634,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_DASH2, anon_sym_RBRACE, + ACTIONS(1846), 29, + anon_sym_in, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152294,7 +152656,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152304,27 +152665,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15114] = 8, + [15510] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(3633), 1, - anon_sym_DOT_DOT2, - STATE(1443), 1, + STATE(1448), 1, sym_comment, - ACTIONS(3635), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(1856), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 41, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1854), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152357,6 +152711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152366,21 +152721,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15184] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15572] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1444), 1, + ACTIONS(3655), 1, + anon_sym_DOT, + ACTIONS(3657), 1, + aux_sym__immediate_decimal_token5, + STATE(1449), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1762), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 44, - ts_builtin_sym_end, + ACTIONS(1760), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152393,7 +152752,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_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152422,104 +152783,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [15246] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3645), 1, - anon_sym_LBRACK, - ACTIONS(3647), 1, - anon_sym_STAR2, - STATE(1445), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4326), 1, - sym__command_name, - STATE(4327), 1, - sym_scope_pattern, - STATE(4328), 1, - sym_wild_card, - STATE(4329), 1, - sym_command_list, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3643), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [15344] = 9, + [15638] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(423), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, - sym_path, - STATE(923), 1, - sym_cell_path, - STATE(1446), 1, + ACTIONS(3659), 1, + anon_sym_DOT, + ACTIONS(3661), 1, + aux_sym__immediate_decimal_token5, + STATE(1450), 1, sym_comment, - ACTIONS(1853), 5, + ACTIONS(1762), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3653), 13, + sym__unquoted_pattern, + ACTIONS(1760), 42, + ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -152531,10 +152813,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(1850), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -152554,6 +152832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152563,96 +152842,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15416] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3645), 1, - anon_sym_LBRACK, - ACTIONS(3647), 1, - anon_sym_STAR2, - STATE(1447), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4270), 1, - sym_scope_pattern, - STATE(4326), 1, - sym__command_name, - STATE(4328), 1, - sym_wild_card, - STATE(4329), 1, - sym_command_list, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3657), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [15514] = 4, + [15703] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1448), 1, + ACTIONS(3663), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3665), 1, + aux_sym__immediate_decimal_token5, + STATE(1451), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1728), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 44, + ACTIONS(1726), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152695,23 +152901,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [15576] = 4, + [15768] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1449), 1, + ACTIONS(3657), 1, + aux_sym__immediate_decimal_token5, + STATE(1452), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(1762), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1870), 44, - ts_builtin_sym_end, + ACTIONS(1760), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152724,7 +152928,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_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152753,28 +152959,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [15638] = 9, + [15831] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_STAR2, + STATE(1453), 1, + sym_comment, + STATE(1972), 1, + sym__val_number_decimal, + STATE(4250), 1, + sym_cmd_identifier, + STATE(4251), 1, + sym_val_string, + STATE(4465), 1, + sym__command_name, + STATE(4467), 1, + sym_wild_card, + STATE(4470), 1, + sym_command_list, + STATE(4477), 1, + sym_scope_pattern, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3667), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3645), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + STATE(493), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3669), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [15928] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2381), 1, anon_sym_DOT2, - STATE(518), 1, + STATE(647), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, + STATE(842), 1, sym_path, - STATE(1292), 1, + STATE(1345), 1, sym_cell_path, - STATE(1450), 1, + STATE(1454), 1, sym_comment, - ACTIONS(1853), 5, + ACTIONS(1849), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3653), 12, + ACTIONS(3651), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -152787,7 +153066,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(1850), 29, + ACTIONS(1846), 29, anon_sym_in, anon_sym_DASH2, anon_sym_and2, @@ -152817,79 +153096,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15709] = 5, + [15999] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3659), 1, - aux_sym__immediate_decimal_token5, - STATE(1451), 1, + ACTIONS(251), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(852), 1, + sym_raw_string_begin, + ACTIONS(3108), 1, + anon_sym_DQUOTE, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(3112), 1, + anon_sym_BQUOTE, + ACTIONS(3114), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3116), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3677), 1, + anon_sym_LPAREN, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + STATE(1455), 1, sym_comment, - ACTIONS(1804), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 43, + STATE(2045), 1, + sym__val_number_decimal, + STATE(3001), 1, + sym__inter_double_quotes, + STATE(3069), 1, + sym__inter_single_quotes, + ACTIONS(277), 2, + anon_sym_export, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15772] = 5, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2449), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3065), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(271), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [16092] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3623), 1, + ACTIONS(19), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(952), 1, + sym_raw_string_begin, + ACTIONS(3244), 1, + anon_sym_DQUOTE, + ACTIONS(3246), 1, + anon_sym_SQUOTE, + ACTIONS(3248), 1, + anon_sym_BQUOTE, + ACTIONS(3250), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3252), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + STATE(1456), 1, + sym_comment, + STATE(2007), 1, + sym__val_number_decimal, + STATE(3095), 1, + sym__inter_single_quotes, + STATE(3096), 1, + sym__inter_double_quotes, + ACTIONS(45), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2469), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2963), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(39), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [16185] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3685), 1, aux_sym__immediate_decimal_token5, - STATE(1452), 1, + STATE(1457), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1812), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 43, + ACTIONS(1810), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152933,56 +153300,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15835] = 20, + [16248] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(251), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, - anon_sym_LPAREN, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - STATE(1453), 1, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(3671), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3673), 1, + anon_sym_LBRACK, + ACTIONS(3675), 1, + anon_sym_STAR2, + STATE(1458), 1, sym_comment, - STATE(2101), 1, + STATE(1972), 1, sym__val_number_decimal, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - ACTIONS(277), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + STATE(4250), 1, + sym_cmd_identifier, + STATE(4251), 1, + sym_val_string, + STATE(4465), 1, + sym__command_name, + STATE(4466), 1, + sym_scope_pattern, + STATE(4467), 1, + sym_wild_card, + STATE(4470), 1, + sym_command_list, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2454), 4, + ACTIONS(3667), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3631), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + STATE(493), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3031), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(271), 23, + ACTIONS(3669), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153006,50 +153375,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15928] = 20, + [16345] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(251), 1, aux_sym_cmd_identifier_token1, - ACTIONS(843), 1, + ACTIONS(852), 1, sym_raw_string_begin, - ACTIONS(3224), 1, + ACTIONS(3108), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(3110), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(3112), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, + ACTIONS(3114), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, + ACTIONS(3116), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, + ACTIONS(3677), 1, anon_sym_LPAREN, - ACTIONS(3663), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR, - STATE(1454), 1, + STATE(1459), 1, sym_comment, - STATE(2101), 1, + STATE(2045), 1, sym__val_number_decimal, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, + STATE(3001), 1, sym__inter_double_quotes, + STATE(3069), 1, + sym__inter_single_quotes, ACTIONS(277), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2454), 4, + STATE(2449), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2839), 5, + STATE(2878), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, @@ -153079,62 +153448,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16021] = 22, + [16438] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3671), 1, - anon_sym_LBRACK, - ACTIONS(3673), 1, - anon_sym_STAR2, - STATE(1455), 1, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(1460), 1, sym_comment, - STATE(1976), 1, - sym__val_number_decimal, - STATE(4246), 1, - sym_cmd_identifier, - STATE(4248), 1, - sym_val_string, - STATE(4456), 1, - sym__command_name, - STATE(4457), 1, - sym_scope_pattern, - STATE(4458), 1, - sym_wild_card, - STATE(4459), 1, - sym_command_list, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, - anon_sym_export, + ACTIONS(1002), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1010), 42, anon_sym_in, - ACTIONS(3643), 3, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3667), 23, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [16502] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1621), 1, + sym__entry_separator, + ACTIONS(3689), 1, + anon_sym_RBRACE, + ACTIONS(3691), 1, + sym_raw_string_begin, + STATE(1461), 1, + sym_comment, + STATE(1484), 1, + aux_sym__types_body_repeat2, + ACTIONS(3687), 45, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -153148,30 +153539,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16118] = 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + 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_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [16568] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3675), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3677), 1, - aux_sym__immediate_decimal_token5, - STATE(1456), 1, + ACTIONS(2622), 1, + anon_sym_LPAREN2, + ACTIONS(2624), 1, + sym__unquoted_pattern, + STATE(1462), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(2606), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 42, - ts_builtin_sym_end, + ACTIONS(2604), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153184,7 +153593,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_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -153203,7 +153614,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -153213,56 +153623,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16183] = 20, + [16632] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(19), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(3263), 1, + ACTIONS(1408), 1, anon_sym_DQUOTE, - ACTIONS(3265), 1, + ACTIONS(1410), 1, anon_sym_SQUOTE, - ACTIONS(3267), 1, + ACTIONS(1412), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, - anon_sym_LPAREN, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - STATE(1457), 1, + ACTIONS(1422), 1, + sym_raw_string_begin, + ACTIONS(1444), 1, + anon_sym_COMMA, + ACTIONS(3697), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3699), 1, + sym__newline, + ACTIONS(3701), 1, + anon_sym_RBRACK, + STATE(1463), 1, sym_comment, - STATE(2085), 1, + STATE(1700), 1, + aux_sym__types_body_repeat1, + STATE(1741), 1, + aux_sym__command_list_body_repeat1, + STATE(2059), 1, sym__val_number_decimal, - STATE(3091), 1, - sym__inter_single_quotes, - STATE(3098), 1, - sym__inter_double_quotes, - ACTIONS(45), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + STATE(4187), 1, + aux_sym_parameter_repeat2, + STATE(4546), 1, + sym__command_name, + STATE(4660), 1, + sym_cmd_identifier, + STATE(4661), 1, + sym_val_string, + STATE(4844), 1, + sym__command_list_body, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2472), 4, + ACTIONS(3693), 2, + anon_sym_export, + anon_sym_in, + STATE(3527), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2962), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(39), 23, + ACTIONS(3695), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153286,62 +153698,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16276] = 22, - ACTIONS(3), 1, + [16730] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(105), 1, + ACTIONS(1621), 1, + sym__entry_separator, + ACTIONS(3691), 1, sym_raw_string_begin, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3671), 1, - anon_sym_LBRACK, - ACTIONS(3673), 1, - anon_sym_STAR2, - STATE(1458), 1, + ACTIONS(3703), 1, + anon_sym_RBRACE, + STATE(1464), 1, sym_comment, - STATE(1976), 1, - sym__val_number_decimal, - STATE(4246), 1, - sym_cmd_identifier, - STATE(4248), 1, - sym_val_string, - STATE(4379), 1, - sym_scope_pattern, - STATE(4456), 1, - sym__command_name, - STATE(4458), 1, - sym_wild_card, - STATE(4459), 1, - sym_command_list, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, + STATE(1484), 1, + aux_sym__types_body_repeat2, + ACTIONS(3687), 45, anon_sym_export, - anon_sym_in, - ACTIONS(3657), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3667), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -153355,30 +153731,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16373] = 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + 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_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [16796] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - ACTIONS(3685), 1, - aux_sym__immediate_decimal_token5, - STATE(1459), 1, + STATE(1465), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(2493), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 42, - ts_builtin_sym_end, + ACTIONS(2491), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153391,7 +153782,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_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -153420,22 +153813,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16438] = 6, + [16856] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(2644), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2646), 1, sym__unquoted_pattern, - STATE(1460), 1, + STATE(1466), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(2642), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 42, + ACTIONS(2640), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153478,10 +153871,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16502] = 4, + [16920] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1621), 1, + sym__entry_separator, + ACTIONS(3691), 1, + sym_raw_string_begin, + ACTIONS(3705), 1, + anon_sym_RBRACE, + STATE(1467), 1, + sym_comment, + STATE(1484), 1, + aux_sym__types_body_repeat2, + ACTIONS(3687), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + 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_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [16986] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1461), 1, + STATE(1468), 1, sym_comment, ACTIONS(1728), 6, anon_sym_GT2, @@ -153534,22 +153986,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16562] = 6, + [17046] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(2658), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2660), 1, sym__unquoted_pattern, - STATE(1462), 1, + STATE(1469), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(994), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 42, + ACTIONS(1018), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153592,19 +154044,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16626] = 4, + [17110] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1463), 1, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + STATE(1470), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1948), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 43, + ACTIONS(1946), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153638,7 +154093,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -153648,26 +154102,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16686] = 7, - ACTIONS(103), 1, + [17174] = 23, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3689), 1, - anon_sym_RBRACE, - ACTIONS(3691), 1, + ACTIONS(1408), 1, + anon_sym_DQUOTE, + ACTIONS(1410), 1, + anon_sym_SQUOTE, + ACTIONS(1412), 1, + anon_sym_BQUOTE, + ACTIONS(1422), 1, sym_raw_string_begin, - STATE(1464), 1, + ACTIONS(1444), 1, + anon_sym_COMMA, + ACTIONS(3697), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3699), 1, + sym__newline, + ACTIONS(3707), 1, + anon_sym_RBRACK, + STATE(1471), 1, sym_comment, - STATE(1473), 1, - aux_sym__types_body_repeat2, - ACTIONS(3687), 45, + STATE(1700), 1, + aux_sym__types_body_repeat1, + STATE(1741), 1, + aux_sym__command_list_body_repeat1, + STATE(2059), 1, + sym__val_number_decimal, + STATE(4187), 1, + aux_sym_parameter_repeat2, + STATE(4546), 1, + sym__command_name, + STATE(4660), 1, + sym_cmd_identifier, + STATE(4661), 1, + sym_val_string, + STATE(4931), 1, + sym__command_list_body, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3693), 2, anon_sym_export, + anon_sym_in, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3695), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -153681,48 +154171,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - 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_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [16752] = 6, + [17272] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1645), 1, sym__unquoted_pattern, - STATE(1465), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + STATE(1472), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(2586), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 42, + ACTIONS(2584), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153765,20 +154235,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16816] = 7, + [17336] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1621), 1, sym__entry_separator, - ACTIONS(3696), 1, - anon_sym_RBRACE, - ACTIONS(3699), 1, + ACTIONS(3691), 1, sym_raw_string_begin, - STATE(1466), 1, - sym_comment, + ACTIONS(3709), 1, + anon_sym_RBRACE, STATE(1473), 1, + sym_comment, + STATE(1484), 1, aux_sym__types_body_repeat2, - ACTIONS(3693), 45, + ACTIONS(3687), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153824,20 +154294,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16882] = 7, + [17402] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1621), 1, sym__entry_separator, - ACTIONS(3691), 1, - sym_raw_string_begin, - ACTIONS(3702), 1, + ACTIONS(3714), 1, anon_sym_RBRACE, - STATE(1467), 1, + ACTIONS(3717), 1, + sym_raw_string_begin, + STATE(1474), 1, sym_comment, - STATE(1473), 1, + STATE(1484), 1, aux_sym__types_body_repeat2, - ACTIONS(3687), 45, + ACTIONS(3711), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153883,20 +154353,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16948] = 7, + [17468] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1621), 1, sym__entry_separator, - ACTIONS(3706), 1, - anon_sym_RBRACE, - ACTIONS(3708), 1, + ACTIONS(3717), 1, sym_raw_string_begin, - STATE(1468), 1, + ACTIONS(3720), 1, + anon_sym_RBRACE, + STATE(1475), 1, sym_comment, - STATE(1473), 1, + STATE(1484), 1, aux_sym__types_body_repeat2, - ACTIONS(3704), 45, + ACTIONS(3711), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153942,20 +154412,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17014] = 7, + [17534] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1621), 1, sym__entry_separator, - ACTIONS(3706), 1, + ACTIONS(3725), 1, anon_sym_RBRACE, - ACTIONS(3708), 1, + ACTIONS(3727), 1, sym_raw_string_begin, - STATE(1469), 1, + STATE(1476), 1, sym_comment, - STATE(1473), 1, + STATE(1484), 1, aux_sym__types_body_repeat2, - ACTIONS(3704), 45, + ACTIONS(3723), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154001,22 +154471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17080] = 6, + [17600] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(1470), 1, + STATE(1477), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(1812), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 42, + sym__unquoted_pattern, + ACTIONS(1810), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154050,6 +154517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154059,22 +154527,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17144] = 6, + [17660] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(2557), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2559), 1, sym__unquoted_pattern, - STATE(1471), 1, + STATE(1478), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(1613), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 42, + ACTIONS(1706), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154117,211 +154585,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17208] = 4, - ACTIONS(3), 1, + [17724] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1472), 1, + ACTIONS(1621), 1, + sym__entry_separator, + ACTIONS(3727), 1, + sym_raw_string_begin, + ACTIONS(3729), 1, + anon_sym_RBRACE, + STATE(1479), 1, sym_comment, - ACTIONS(2503), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 43, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [17268] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3712), 1, - sym__entry_separator, - ACTIONS(3715), 1, - sym_raw_string_begin, - STATE(1473), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 46, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - 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_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17330] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3691), 1, - sym_raw_string_begin, - ACTIONS(3717), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1474), 1, - sym_comment, - ACTIONS(3687), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - 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_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17396] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3708), 1, - sym_raw_string_begin, - ACTIONS(3719), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1475), 1, - sym_comment, - ACTIONS(3704), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(1484), 1, + aux_sym__types_body_repeat2, + ACTIONS(3723), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_in, anon_sym_true, anon_sym_false, @@ -154348,21 +154644,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17462] = 5, + [17790] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3685), 1, + ACTIONS(3661), 1, aux_sym__immediate_decimal_token5, - STATE(1476), 1, + STATE(1480), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1762), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 42, + ACTIONS(1760), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -154405,76 +154701,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17524] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1477), 1, - sym_comment, - ACTIONS(1872), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1870), 43, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [17584] = 7, + [17852] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1621), 1, sym__entry_separator, - ACTIONS(3691), 1, + ACTIONS(3727), 1, sym_raw_string_begin, - ACTIONS(3721), 1, + ACTIONS(3731), 1, anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1478), 1, + STATE(1481), 1, sym_comment, - ACTIONS(3687), 45, + STATE(1484), 1, + aux_sym__types_body_repeat2, + ACTIONS(3723), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154520,22 +154760,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17650] = 6, + [17918] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1479), 1, + STATE(1482), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(1856), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 42, + sym__unquoted_pattern, + ACTIONS(1854), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154569,6 +154806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154578,20 +154816,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17714] = 7, + [17978] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1621), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3727), 1, sym_raw_string_begin, - ACTIONS(3723), 1, + ACTIONS(3733), 1, anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1480), 1, + STATE(1483), 1, sym_comment, - ACTIONS(3704), 45, + STATE(1484), 1, + aux_sym__types_body_repeat2, + ACTIONS(3723), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154637,135 +154875,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17780] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3725), 1, - aux_sym__immediate_decimal_token5, - STATE(1481), 1, - sym_comment, - ACTIONS(1804), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 42, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [17842] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(1482), 1, - sym_comment, - ACTIONS(2637), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2635), 42, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [17906] = 7, + [18044] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(3737), 1, sym__entry_separator, - ACTIONS(3699), 1, + ACTIONS(3740), 1, sym_raw_string_begin, - ACTIONS(3727), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1483), 1, + STATE(1484), 2, sym_comment, - ACTIONS(3693), 45, + aux_sym__types_body_repeat2, + ACTIONS(3735), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154795,6 +154915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_PLUS2, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_DOT_DOLLAR, @@ -154811,20 +154932,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17972] = 7, + [18106] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1621), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3727), 1, sym_raw_string_begin, - ACTIONS(3730), 1, + ACTIONS(3733), 1, anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, STATE(1484), 1, + aux_sym__types_body_repeat2, + STATE(1485), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3723), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154870,20 +154991,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18038] = 7, + [18172] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1621), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3727), 1, sym_raw_string_begin, - ACTIONS(3730), 1, + ACTIONS(3731), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1484), 1, aux_sym__types_body_repeat2, - STATE(1485), 1, + STATE(1486), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3723), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154929,22 +155050,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18104] = 6, + [18238] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1950), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1956), 1, sym__unquoted_pattern, - STATE(1486), 1, + STATE(1487), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(2570), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 42, + ACTIONS(2568), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154987,22 +155108,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18168] = 6, + [18302] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1606), 1, sym__unquoted_pattern, - ACTIONS(2629), 1, + ACTIONS(1940), 1, anon_sym_LPAREN2, - STATE(1487), 1, + STATE(1488), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(1938), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 42, + ACTIONS(1936), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155045,14 +155166,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18232] = 5, - ACTIONS(103), 1, + [18366] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(1488), 1, + ACTIONS(3742), 1, + aux_sym__immediate_decimal_token5, + STATE(1489), 1, sym_comment, - ACTIONS(968), 18, + ACTIONS(1812), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1810), 42, + ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155064,18 +155194,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_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(868), 29, - anon_sym_in, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155086,94 +155205,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18293] = 4, + [18428] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(1489), 1, - sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 46, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - 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_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18352] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, STATE(1490), 1, sym_comment, - ACTIONS(2637), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2635), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(2640), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155185,7 +155242,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_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2642), 29, + anon_sym_in, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155196,93 +155264,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18415] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3708), 1, - sym_raw_string_begin, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1491), 1, - sym_comment, - ACTIONS(3704), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - 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_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18478] = 4, + [18489] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1492), 1, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(1491), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(994), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 42, + ACTIONS(1018), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155315,88 +155327,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18537] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(1493), 1, - sym_comment, - ACTIONS(2501), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2503), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18598] = 6, + [18552] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1494), 1, + STATE(1492), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(1812), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 41, + sym__unquoted_pattern, + ACTIONS(1810), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155429,6 +155381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155438,22 +155391,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18661] = 6, + [18611] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(2622), 1, anon_sym_LPAREN2, - STATE(1495), 1, + ACTIONS(2624), 1, + sym__unquoted_pattern, + STATE(1493), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(2606), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 41, + ACTIONS(2604), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155495,18 +155448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18724] = 6, + [18674] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1621), 1, sym__entry_separator, - ACTIONS(3691), 1, + ACTIONS(3727), 1, sym_raw_string_begin, - STATE(1473), 1, + STATE(1484), 1, aux_sym__types_body_repeat2, - STATE(1496), 1, + STATE(1494), 1, sym_comment, - ACTIONS(3687), 45, + ACTIONS(3723), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155552,22 +155505,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18787] = 6, + [18737] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(1950), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1956), 1, sym__unquoted_pattern, - STATE(1497), 1, + STATE(1495), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(2570), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 41, + ACTIONS(2568), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155609,28 +155562,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18850] = 5, - ACTIONS(3), 1, + [18800] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3740), 1, - sym__newline, - STATE(1498), 2, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + STATE(1496), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2491), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2493), 29, anon_sym_in, - anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_PLUS2, - aux_sym__val_number_decimal_token1, - ACTIONS(3738), 39, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18861] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1621), 1, + sym__entry_separator, + ACTIONS(3691), 1, sym_raw_string_begin, + STATE(1484), 1, + aux_sym__types_body_repeat2, + STATE(1497), 1, + sym_comment, + ACTIONS(3687), 45, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -155644,6 +155649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, @@ -155651,8 +155657,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT_DOT_LPAREN, 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, @@ -155665,19 +155675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18911] = 4, + [18924] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1499), 1, + STATE(1498), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(2493), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1802), 42, + ACTIONS(2491), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155720,19 +155730,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18970] = 4, + [18983] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1500), 1, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + STATE(1499), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1948), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1870), 42, + ACTIONS(1946), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155765,7 +155778,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155775,22 +155787,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19029] = 6, + [19046] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(1606), 1, sym__unquoted_pattern, - STATE(1501), 1, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + STATE(1500), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(1938), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 41, + ACTIONS(1936), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155832,22 +155844,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19092] = 6, + [19109] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1645), 1, sym__unquoted_pattern, - ACTIONS(2629), 1, + ACTIONS(2620), 1, anon_sym_LPAREN2, - STATE(1502), 1, + STATE(1501), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(2586), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 41, + ACTIONS(2584), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155889,20 +155901,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19155] = 5, + [19172] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, sym__unquoted_pattern, - STATE(1503), 1, + STATE(1502), 1, sym_comment, - ACTIONS(868), 5, + ACTIONS(1002), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 42, + ACTIONS(1010), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155915,9 +155930,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_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155945,79 +155958,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19216] = 6, - ACTIONS(3), 1, + [19235] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(1504), 1, + STATE(1503), 1, sym_comment, - ACTIONS(2569), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2567), 41, - ts_builtin_sym_end, + ACTIONS(3746), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3744), 46, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + 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_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [19294] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3752), 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, + STATE(1504), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3748), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19279] = 6, + anon_sym_PLUS2, + aux_sym__val_number_decimal_token1, + ACTIONS(3750), 39, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_LPAREN, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [19355] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2644), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2646), 1, sym__unquoted_pattern, STATE(1505), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(2642), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 41, + ACTIONS(2640), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156059,23 +156126,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19342] = 6, + [19418] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1744), 1, sym__unquoted_pattern, STATE(1506), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(860), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 41, - ts_builtin_sym_end, + ACTIONS(960), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -156088,7 +156152,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_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156116,19 +156182,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19405] = 4, + [19479] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1507), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1856), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 42, + ACTIONS(1854), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156171,14 +156237,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19464] = 5, + [19538] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, STATE(1508), 1, sym_comment, - ACTIONS(2635), 18, + ACTIONS(960), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156197,7 +156263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(2637), 29, + ACTIONS(860), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -156227,83 +156293,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19525] = 15, + [19599] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, STATE(1509), 1, sym_comment, - STATE(4529), 1, - sym_block, - STATE(4690), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [19605] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1510), 1, - sym_comment, - ACTIONS(2565), 5, + ACTIONS(1728), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3757), 13, + sym__unquoted_pattern, + ACTIONS(1726), 42, + ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156315,10 +156319,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(2563), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -156338,6 +156338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -156347,15 +156348,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19665] = 5, - ACTIONS(103), 1, + [19658] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(1511), 1, + ACTIONS(2557), 1, + anon_sym_LPAREN2, + ACTIONS(2559), 1, + sym__unquoted_pattern, + STATE(1510), 1, sym_comment, - ACTIONS(2501), 17, + ACTIONS(1613), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1706), 41, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156367,16 +156377,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_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2503), 29, - anon_sym_in, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156387,31 +156388,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19725] = 5, - ACTIONS(103), 1, + [19721] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(1512), 1, - sym_comment, - ACTIONS(2635), 17, - ts_builtin_sym_end, + ACTIONS(2919), 1, sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1511), 1, + sym_comment, + STATE(1556), 1, + aux_sym__repeat_newline, + ACTIONS(2778), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2776), 35, + anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156422,16 +156442,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_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2637), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156442,55 +156453,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19785] = 15, + [19793] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1513), 1, + STATE(1512), 1, sym_comment, - STATE(4385), 1, + STATE(4394), 1, sym_block, - STATE(4629), 1, + STATE(4779), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156522,40 +156531,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [19865] = 15, + [19873] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1514), 1, + STATE(1513), 1, sym_comment, - STATE(4397), 1, + STATE(4404), 1, sym_block, - STATE(4638), 1, + STATE(4652), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156587,94 +156596,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [19945] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1515), 1, - sym_comment, - ACTIONS(2938), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - aux_sym__val_number_decimal_token1, - ACTIONS(2940), 40, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT_LPAREN, - 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, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [20003] = 15, + [19953] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(1516), 1, + STATE(1514), 1, sym_comment, - STATE(4427), 1, + STATE(4318), 1, sym_block, - STATE(4647), 1, + STATE(4772), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156706,81 +156661,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20083] = 15, + [20033] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, + ACTIONS(2919), 1, + sym__newline, ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1517), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1515), 1, sym_comment, - STATE(4429), 1, - sym_block, - STATE(4659), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [20163] = 5, - ACTIONS(103), 1, + STATE(1540), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2776), 29, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20109] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(1518), 1, - sym_comment, - ACTIONS(968), 17, - ts_builtin_sym_end, + ACTIONS(2919), 1, sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1516), 1, + sym_comment, + STATE(1542), 1, + aux_sym__repeat_newline, + ACTIONS(2778), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2776), 33, + anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156791,16 +156764,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, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(868), 29, - anon_sym_in, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20183] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2919), 1, + sym__newline, + STATE(1517), 1, + sym_comment, + STATE(1544), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2778), 3, anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2776), 36, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156811,56 +156832,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20223] = 12, + [20251] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3760), 1, - anon_sym_DOT, - STATE(1519), 1, + ACTIONS(2919), 1, + sym__newline, + STATE(1518), 1, sym_comment, - STATE(1826), 1, - sym__immediate_decimal, - ACTIONS(3762), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3764), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(698), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, + STATE(1546), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2778), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 30, + ACTIONS(2776), 38, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156879,8 +156895,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -156888,23 +156902,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20297] = 5, + [20315] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1820), 1, - sym__unquoted_pattern, - STATE(1520), 1, + ACTIONS(2919), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + ACTIONS(3793), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3795), 1, + anon_sym_bit_DASHor2, + STATE(1519), 1, sym_comment, - ACTIONS(868), 5, - anon_sym_GT2, + STATE(1548), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 41, - ts_builtin_sym_end, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, anon_sym_in, - sym__newline, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2776), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156915,10 +156966,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [20401] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2919), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + ACTIONS(3793), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3795), 1, + anon_sym_bit_DASHor2, + ACTIONS(3797), 1, + anon_sym_and2, + STATE(1520), 1, + sym_comment, + STATE(1550), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -156926,57 +157025,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + ACTIONS(2776), 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_xor2, + anon_sym_or2, + [20489] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + ACTIONS(3793), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3795), 1, + anon_sym_bit_DASHor2, + ACTIONS(3797), 1, + anon_sym_and2, + ACTIONS(3799), 1, + anon_sym_xor2, + STATE(1521), 1, + sym_comment, + STATE(1552), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3789), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2776), 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_or2, + [20579] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2919), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1522), 1, + sym_comment, + STATE(1554), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2776), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20357] = 15, + [20657] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(1521), 1, + STATE(1523), 1, sym_comment, - STATE(4434), 1, + STATE(4319), 1, sym_block, - STATE(4687), 1, + STATE(4773), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157008,40 +157238,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20437] = 15, + [20737] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2919), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1524), 1, + sym_comment, + STATE(1558), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2776), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20817] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1522), 1, + STATE(1525), 1, sym_comment, - STATE(4435), 1, + STATE(4590), 1, sym_block, - STATE(4688), 1, + STATE(4730), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157073,40 +157368,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20517] = 15, + [20897] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2919), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + STATE(1526), 1, + sym_comment, + STATE(1560), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2776), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20979] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2919), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + ACTIONS(3793), 1, + anon_sym_bit_DASHxor2, + STATE(1527), 1, + sym_comment, + STATE(1562), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2776), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [21063] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(1523), 1, + STATE(1528), 1, sym_comment, - STATE(4437), 1, + STATE(4338), 1, sym_block, - STATE(4693), 1, + STATE(4635), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157138,40 +157566,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20597] = 15, + [21143] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1524), 1, + STATE(1529), 1, sym_comment, - STATE(4440), 1, + STATE(4609), 1, sym_block, - STATE(4703), 1, + STATE(4754), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157203,110 +157631,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20677] = 20, - ACTIONS(103), 1, + [21223] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, - anon_sym_DASH_DASH, - STATE(1525), 1, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(1530), 1, sym_comment, - STATE(1713), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3729), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [20767] = 15, + STATE(4370), 1, + sym_block, + STATE(4786), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [21303] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1526), 1, + STATE(1531), 1, sym_comment, - STATE(4525), 1, + STATE(4377), 1, sym_block, - STATE(4689), 1, + STATE(4655), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157338,40 +157761,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20847] = 15, + [21383] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(1527), 1, + STATE(1532), 1, sym_comment, - STATE(4527), 1, + STATE(4343), 1, sym_block, - STATE(4694), 1, + STATE(4643), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157403,40 +157826,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20927] = 15, + [21463] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(1528), 1, + STATE(1533), 1, sym_comment, - STATE(4528), 1, + STATE(4346), 1, sym_block, - STATE(4696), 1, + STATE(4666), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157468,40 +157891,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21007] = 15, + [21543] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(1529), 1, + STATE(1534), 1, sym_comment, - STATE(4534), 1, + STATE(4347), 1, sym_block, - STATE(4702), 1, + STATE(4698), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157533,51 +157956,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21087] = 18, + [21623] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1408), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1410), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1412), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1422), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3697), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3772), 1, + ACTIONS(3801), 1, anon_sym_LBRACK, - ACTIONS(3774), 1, + ACTIONS(3803), 1, anon_sym_DOLLAR, - ACTIONS(3776), 1, + ACTIONS(3805), 1, anon_sym_LBRACE, - STATE(1530), 1, + STATE(1535), 1, sym_comment, - STATE(2099), 1, + STATE(2059), 1, sym__val_number_decimal, ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3093), 2, + ACTIONS(3693), 2, + anon_sym_export, + anon_sym_in, + STATE(4626), 2, sym_cmd_identifier, sym_val_string, - STATE(3095), 3, + STATE(4627), 3, sym_val_variable, sym_val_list, sym_val_record, - STATE(2228), 4, + STATE(3527), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3695), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -157601,105 +158024,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [21173] = 15, + [21709] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1531), 1, + STATE(1536), 1, sym_comment, - STATE(4564), 1, + STATE(4533), 1, sym_block, - STATE(4738), 1, + STATE(4644), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [21253] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1532), 1, - sym_comment, - STATE(4565), 1, - sym_block, - STATE(4740), 1, - sym_returns, - STATE(4849), 1, + STATE(4976), 1, sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157731,40 +158089,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21333] = 15, + [21789] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1533), 1, + STATE(1537), 1, sym_comment, - STATE(4494), 1, + STATE(4440), 1, sym_block, - STATE(4648), 1, + STATE(4667), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157796,40 +158154,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21413] = 15, + [21869] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1534), 1, + STATE(1538), 1, sym_comment, - STATE(4495), 1, + STATE(4567), 1, sym_block, - STATE(4651), 1, + STATE(4696), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157861,761 +158219,1695 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21493] = 15, + [21949] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1535), 1, + ACTIONS(2806), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1539), 1, sym_comment, - STATE(4068), 1, - sym_block, - STATE(4691), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [21573] = 15, + STATE(1587), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2666), 29, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22025] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1536), 1, + ACTIONS(3809), 1, + anon_sym_DASH2, + ACTIONS(3819), 1, + anon_sym_PLUS2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(1540), 1, sym_comment, - STATE(4069), 1, - sym_block, - STATE(4692), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [21653] = 21, + ACTIONS(3807), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3811), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3815), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3817), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3821), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3813), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2670), 30, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22099] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, + ACTIONS(2806), 1, sym__newline, - ACTIONS(3788), 1, - anon_sym_RBRACK, - STATE(1537), 1, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1541), 1, sym_comment, - STATE(1703), 1, - aux_sym__types_body_repeat1, - STATE(1770), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4524), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - STATE(4854), 1, - sym__command_list_body, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, + STATE(1588), 1, + aux_sym__repeat_newline, + ACTIONS(2668), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2666), 33, anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [21745] = 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22173] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1538), 1, + ACTIONS(3809), 1, + anon_sym_DASH2, + ACTIONS(3819), 1, + anon_sym_PLUS2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(1542), 1, sym_comment, - STATE(4316), 1, - sym_block, - STATE(4781), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [21825] = 15, + ACTIONS(2672), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3811), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3815), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3817), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3821), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2670), 34, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22245] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1539), 1, + ACTIONS(2806), 1, + sym__newline, + STATE(1543), 1, sym_comment, - STATE(4320), 1, - sym_block, - STATE(4782), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [21905] = 15, + STATE(1589), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2668), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2666), 36, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22313] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1540), 1, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(1544), 1, sym_comment, - STATE(4345), 1, - sym_block, - STATE(4622), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [21985] = 15, + ACTIONS(3811), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3815), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3817), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2672), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2670), 37, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22379] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1541), 1, + ACTIONS(2806), 1, + sym__newline, + STATE(1545), 1, sym_comment, - STATE(4346), 1, - sym_block, - STATE(4771), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [22065] = 15, + STATE(1590), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2668), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2666), 38, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22443] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1542), 1, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(1546), 1, sym_comment, - STATE(4347), 1, - sym_block, - STATE(4644), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [22145] = 15, + ACTIONS(3815), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2672), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2670), 39, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22505] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1543), 1, + ACTIONS(2806), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + ACTIONS(3793), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3795), 1, + anon_sym_bit_DASHor2, + STATE(1547), 1, sym_comment, - STATE(4220), 1, - sym_block, - STATE(4645), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [22225] = 15, + STATE(1591), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [22591] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_DASH2, + ACTIONS(3819), 1, + anon_sym_PLUS2, + ACTIONS(3827), 1, + anon_sym_bit_DASHand2, + ACTIONS(3829), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3831), 1, + anon_sym_bit_DASHor2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(1548), 1, + sym_comment, + ACTIONS(3807), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3811), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3815), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3817), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3821), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3813), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3825), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3823), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2670), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [22675] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2806), 1, + sym__newline, ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1544), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + ACTIONS(3793), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3795), 1, + anon_sym_bit_DASHor2, + ACTIONS(3797), 1, + anon_sym_and2, + STATE(1549), 1, sym_comment, - STATE(4376), 1, - sym_block, - STATE(4747), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [22305] = 15, + STATE(1592), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 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_xor2, + anon_sym_or2, + [22763] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_DASH2, + ACTIONS(3819), 1, + anon_sym_PLUS2, + ACTIONS(3827), 1, + anon_sym_bit_DASHand2, + ACTIONS(3829), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3831), 1, + anon_sym_bit_DASHor2, + ACTIONS(3833), 1, + anon_sym_and2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(1550), 1, + sym_comment, + ACTIONS(3807), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3811), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3815), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3817), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3821), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3813), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3825), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3823), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2670), 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_xor2, + anon_sym_or2, + [22849] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2905), 1, + sym__newline, ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1545), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + ACTIONS(3793), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3795), 1, + anon_sym_bit_DASHor2, + ACTIONS(3797), 1, + anon_sym_and2, + ACTIONS(3799), 1, + anon_sym_xor2, + STATE(1551), 1, sym_comment, - STATE(4387), 1, - sym_block, - STATE(4643), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [22385] = 15, + STATE(1593), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 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_or2, + [22939] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_DASH2, + ACTIONS(3819), 1, + anon_sym_PLUS2, + ACTIONS(3827), 1, + anon_sym_bit_DASHand2, + ACTIONS(3829), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3831), 1, + anon_sym_bit_DASHor2, + ACTIONS(3833), 1, + anon_sym_and2, + ACTIONS(3835), 1, + anon_sym_xor2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(1552), 1, + sym_comment, + ACTIONS(3807), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3811), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3815), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3817), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3821), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3813), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3825), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3823), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2670), 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_or2, + [23027] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2806), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1553), 1, + sym_comment, + STATE(1594), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23105] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_DASH2, + ACTIONS(3819), 1, + anon_sym_PLUS2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(1554), 1, + sym_comment, + ACTIONS(3807), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3811), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3815), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3817), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3821), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3813), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3823), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2670), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23181] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2806), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1555), 1, + sym_comment, + STATE(1595), 1, + aux_sym__repeat_newline, + ACTIONS(2668), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2666), 35, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23253] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_DASH2, + ACTIONS(3819), 1, + anon_sym_PLUS2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(1556), 1, + sym_comment, + ACTIONS(2672), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3811), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3815), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3817), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2670), 36, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23323] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2806), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1557), 1, + sym_comment, + STATE(1596), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23403] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_DASH2, + ACTIONS(3819), 1, + anon_sym_PLUS2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(1558), 1, + sym_comment, + ACTIONS(3807), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3811), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3815), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3817), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3821), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3813), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3825), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3823), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2670), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23481] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2806), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + STATE(1559), 1, + sym_comment, + STATE(1597), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23563] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_DASH2, + ACTIONS(3819), 1, + anon_sym_PLUS2, + ACTIONS(3827), 1, + anon_sym_bit_DASHand2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(1560), 1, + sym_comment, + ACTIONS(3807), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3811), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3815), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3817), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3821), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3813), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3825), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3823), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2670), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23643] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2806), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + ACTIONS(3793), 1, + anon_sym_bit_DASHxor2, + STATE(1561), 1, + sym_comment, + STATE(1598), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [23727] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_DASH2, + ACTIONS(3819), 1, + anon_sym_PLUS2, + ACTIONS(3827), 1, + anon_sym_bit_DASHand2, + ACTIONS(3829), 1, + anon_sym_bit_DASHxor2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(1562), 1, + sym_comment, + ACTIONS(3807), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3811), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3815), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3817), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3821), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3813), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3825), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3823), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2670), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [23809] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1563), 1, + sym_comment, + STATE(1600), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2706), 29, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23885] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1564), 1, + sym_comment, + STATE(1602), 1, + aux_sym__repeat_newline, + ACTIONS(2708), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2706), 33, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23959] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1546), 1, + STATE(1565), 1, sym_comment, - STATE(4164), 1, + STATE(4534), 1, sym_block, - STATE(4662), 1, + STATE(4647), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158647,170 +159939,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22465] = 15, + [24039] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1547), 1, + ACTIONS(2844), 1, + sym__newline, + STATE(1566), 1, sym_comment, - STATE(4170), 1, - sym_block, - STATE(4670), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [22545] = 15, + STATE(1604), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2708), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2706), 36, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24107] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1548), 1, + ACTIONS(2844), 1, + sym__newline, + STATE(1567), 1, sym_comment, - STATE(4201), 1, - sym_block, - STATE(4672), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [22625] = 15, + STATE(1606), 1, + aux_sym__repeat_newline, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2708), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2706), 38, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24171] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + ACTIONS(3793), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3795), 1, + anon_sym_bit_DASHor2, + STATE(1568), 1, + sym_comment, + STATE(1608), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2706), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [24257] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1549), 1, + STATE(1569), 1, sym_comment, - STATE(4202), 1, + STATE(4436), 1, sym_block, - STATE(4675), 1, + STATE(4650), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158842,108 +160188,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22705] = 18, + [24337] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3022), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(3794), 1, - anon_sym_LBRACE, - STATE(1550), 1, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + ACTIONS(3793), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3795), 1, + anon_sym_bit_DASHor2, + ACTIONS(3797), 1, + anon_sym_and2, + STATE(1570), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - ACTIONS(3637), 2, - anon_sym_export, + STATE(1610), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3093), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3095), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [22791] = 15, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2706), 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_xor2, + anon_sym_or2, + [24425] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1551), 1, + STATE(1571), 1, sym_comment, - STATE(4244), 1, + STATE(4437), 1, sym_block, - STATE(4704), 1, + STATE(4653), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -158975,105 +160322,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [22871] = 15, + [24505] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1552), 1, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + ACTIONS(3793), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3795), 1, + anon_sym_bit_DASHor2, + ACTIONS(3797), 1, + anon_sym_and2, + ACTIONS(3799), 1, + anon_sym_xor2, + STATE(1572), 1, sym_comment, - STATE(4265), 1, - sym_block, - STATE(4705), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [22951] = 15, + STATE(1612), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2706), 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_or2, + [24595] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1553), 1, + STATE(1573), 1, sym_comment, - STATE(4321), 1, + STATE(4439), 1, sym_block, - STATE(4634), 1, + STATE(4665), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159105,105 +160457,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23031] = 15, + [24675] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1554), 1, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1574), 1, sym_comment, - STATE(4322), 1, - sym_block, - STATE(4635), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [23111] = 15, + STATE(1614), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2706), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24753] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1555), 1, + STATE(1575), 1, sym_comment, - STATE(4053), 1, + STATE(4442), 1, sym_block, - STATE(4637), 1, + STATE(4697), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159235,40 +160586,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23191] = 15, + [24833] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(1556), 1, + STATE(1576), 1, sym_comment, - STATE(4054), 1, + STATE(4175), 1, sym_block, - STATE(4639), 1, + STATE(4788), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159300,40 +160651,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23271] = 15, + [24913] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1577), 1, + sym_comment, + STATE(1616), 1, + aux_sym__repeat_newline, + ACTIONS(2708), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2706), 35, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24985] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(1557), 1, + STATE(1578), 1, sym_comment, - STATE(4086), 1, + STATE(4178), 1, sym_block, - STATE(4664), 1, + STATE(4789), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159365,40 +160777,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23351] = 15, + [25065] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1579), 1, + sym_comment, + STATE(1618), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2706), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [25145] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(1558), 1, + STATE(1580), 1, sym_comment, - STATE(4090), 1, + STATE(4197), 1, sym_block, - STATE(4666), 1, + STATE(4714), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159430,40 +160907,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23431] = 15, + [25225] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + STATE(1581), 1, + sym_comment, + STATE(1620), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2706), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [25307] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(1559), 1, + STATE(1582), 1, sym_comment, - STATE(4091), 1, + STATE(4200), 1, sym_block, - STATE(4667), 1, + STATE(4628), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159495,105 +161038,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23511] = 15, + [25387] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + ACTIONS(3793), 1, + anon_sym_bit_DASHxor2, + STATE(1583), 1, + sym_comment, + STATE(1622), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3783), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2706), 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [25471] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3008), 1, + anon_sym_DQUOTE, + ACTIONS(3010), 1, + anon_sym_SQUOTE, + ACTIONS(3012), 1, + anon_sym_BQUOTE, + ACTIONS(3020), 1, + sym_raw_string_begin, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3837), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3839), 1, + anon_sym_DOLLAR, + ACTIONS(3841), 1, anon_sym_LBRACE, - STATE(1560), 1, + STATE(1584), 1, sym_comment, - STATE(4093), 1, - sym_block, - STATE(4668), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [23591] = 15, + STATE(2016), 1, + sym__val_number_decimal, + ACTIONS(3625), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3205), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3211), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2575), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [25557] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(1561), 1, + STATE(1585), 1, sym_comment, - STATE(4137), 1, + STATE(4242), 1, sym_block, - STATE(4679), 1, + STATE(4681), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159625,40 +161238,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23671] = 15, + [25637] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(1562), 1, + STATE(1586), 1, sym_comment, - STATE(4142), 1, + STATE(4248), 1, sym_block, - STATE(4680), 1, + STATE(4683), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -159690,112 +161303,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [23751] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, - sym__newline, - ACTIONS(3796), 1, - anon_sym_RBRACK, - STATE(1563), 1, - sym_comment, - STATE(1703), 1, - aux_sym__types_body_repeat1, - STATE(1770), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4524), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - STATE(4815), 1, - sym__command_list_body, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [23843] = 13, + [25717] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(1564), 1, - sym_comment, - STATE(1579), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1587), 1, + sym_comment, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2744), 29, + ACTIONS(2718), 30, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159824,36 +161365,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23919] = 12, + [25791] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(1565), 1, - sym_comment, - STATE(1581), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + STATE(1588), 1, + sym_comment, + ACTIONS(2720), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 33, + ACTIONS(2718), 34, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159886,30 +161426,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23993] = 9, + [25863] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - STATE(1566), 1, - sym_comment, - STATE(1583), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + STATE(1589), 1, + sym_comment, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2746), 3, + ACTIONS(2720), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2744), 36, + ACTIONS(2718), 37, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159945,26 +161484,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24061] = 7, + [25929] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - STATE(1567), 1, - sym_comment, - STATE(1585), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + STATE(1590), 1, + sym_comment, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2746), 5, + ACTIONS(2720), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2744), 38, + ACTIONS(2718), 39, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160002,51 +161540,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24125] = 18, + [25991] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3829), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3831), 1, anon_sym_bit_DASHor2, - STATE(1568), 1, - sym_comment, - STATE(1587), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1591), 1, + sym_comment, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160055,7 +161591,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 14, + ACTIONS(2718), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160070,53 +161607,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [24211] = 19, + [26075] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3829), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3831), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3833), 1, anon_sym_and2, - STATE(1569), 1, - sym_comment, - STATE(1678), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1592), 1, + sym_comment, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160125,7 +161660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 13, + ACTIONS(2718), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160139,55 +161675,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [24299] = 20, + [26161] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3829), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3831), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3833), 1, anon_sym_and2, - ACTIONS(3826), 1, + ACTIONS(3835), 1, anon_sym_xor2, - STATE(1570), 1, - sym_comment, - STATE(1590), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1593), 1, + sym_comment, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160196,7 +161730,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 12, + ACTIONS(2718), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160209,40 +161744,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [24389] = 14, + [26249] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(1571), 1, - sym_comment, - STATE(1592), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1594), 1, + sym_comment, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160251,7 +161784,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 21, + ACTIONS(2718), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160273,33 +161807,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24467] = 11, + [26325] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(1572), 1, - sym_comment, - STATE(1594), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + STATE(1595), 1, + sym_comment, + ACTIONS(2720), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2744), 35, + ACTIONS(2718), 36, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160334,45 +161867,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24539] = 15, + [26395] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(1573), 1, - sym_comment, - STATE(1596), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1596), 1, + sym_comment, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160381,7 +161912,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 17, + ACTIONS(2718), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160399,47 +161931,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24619] = 16, + [26473] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - STATE(1574), 1, - sym_comment, - STATE(1598), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1597), 1, + sym_comment, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160448,7 +161978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 16, + ACTIONS(2718), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160465,49 +161996,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24701] = 17, + [26553] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3829), 1, anon_sym_bit_DASHxor2, - STATE(1575), 1, - sym_comment, - STATE(1600), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1598), 1, + sym_comment, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160516,7 +162045,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 15, + ACTIONS(2718), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160532,174 +162062,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [24785] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1576), 1, - sym_comment, - STATE(4538), 1, - sym_block, - STATE(4686), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [24865] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3828), 1, - anon_sym_LBRACK, - ACTIONS(3830), 1, - anon_sym_DOLLAR, - ACTIONS(3832), 1, - anon_sym_LBRACE, - STATE(1577), 1, - sym_comment, - STATE(2107), 1, - sym__val_number_decimal, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(4760), 2, - sym_cmd_identifier, - sym_val_string, - STATE(4762), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [24951] = 13, + [26635] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1578), 1, + STATE(1599), 1, sym_comment, - STATE(1614), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(2656), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2702), 29, - anon_sym_in, + anon_sym_PLUS2, + ACTIONS(3843), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160711,6 +162086,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, + ACTIONS(2654), 29, + anon_sym_in, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -160721,45 +162100,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25027] = 12, + [26695] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1579), 1, + STATE(1600), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2706), 30, + ACTIONS(2732), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160790,35 +162179,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25101] = 12, + [26769] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2841), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3755), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3763), 1, anon_sym_PLUS2, - STATE(1580), 1, + STATE(1601), 1, sym_comment, - STATE(1615), 1, + STATE(1626), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2730), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3759), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3761), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3785), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 33, + ACTIONS(2728), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160852,33 +162241,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25175] = 11, + [26843] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1581), 1, + STATE(1602), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2734), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 34, + ACTIONS(2732), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160913,29 +162302,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25247] = 9, + [26915] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2841), 1, sym__newline, - STATE(1582), 1, + STATE(1603), 1, sym_comment, - STATE(1616), 1, + STATE(1627), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + ACTIONS(3757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3759), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3761), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2704), 3, + ACTIONS(2730), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2702), 36, + ACTIONS(2728), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160972,27 +162361,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25315] = 8, + [26983] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1583), 1, + STATE(1604), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2708), 3, + ACTIONS(2734), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2706), 37, + ACTIONS(2732), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161030,25 +162419,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25381] = 7, + [27049] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2841), 1, sym__newline, - STATE(1584), 1, + STATE(1605), 1, sym_comment, - STATE(1617), 1, + STATE(1628), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + ACTIONS(3759), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2704), 5, + ACTIONS(2730), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2702), 38, + ACTIONS(2728), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -161087,23 +162476,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25445] = 6, + [27113] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1585), 1, + STATE(1606), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2708), 5, + ACTIONS(2734), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2706), 39, + ACTIONS(2732), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161143,51 +162532,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25507] = 18, + [27175] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2841), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3755), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3763), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3791), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3793), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3795), 1, anon_sym_bit_DASHor2, - STATE(1586), 1, + STATE(1607), 1, sym_comment, - STATE(1618), 1, + STATE(1629), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3759), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3761), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3783), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3789), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3787), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161196,7 +162585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 14, + ACTIONS(2728), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161211,49 +162600,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25593] = 17, + [27261] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3829), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3831), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1587), 1, + STATE(1608), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161262,7 +162651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 15, + ACTIONS(2732), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161278,124 +162667,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25677] = 19, + [27345] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2841), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3755), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3763), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3791), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3793), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3795), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + ACTIONS(3797), 1, anon_sym_and2, - STATE(1588), 1, + STATE(1609), 1, sym_comment, - STATE(1619), 1, + STATE(1630), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3759), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3761), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 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_xor2, - anon_sym_or2, - [25765] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - ACTIONS(3826), 1, - anon_sym_xor2, - STATE(1589), 1, - sym_comment, - STATE(1620), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(3781), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3785), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3783), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3789), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3787), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161404,7 +162722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 12, + ACTIONS(2728), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161416,54 +162734,53 @@ 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_xor2, anon_sym_or2, - [25855] = 19, + [27433] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3829), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3831), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3833), 1, anon_sym_and2, - ACTIONS(3862), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1590), 1, + STATE(1610), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161472,7 +162789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 13, + ACTIONS(2732), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161485,294 +162802,57 @@ 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_xor2, anon_sym_or2, - [25943] = 14, + [27519] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2905), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3755), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3763), 1, anon_sym_PLUS2, - STATE(1591), 1, - sym_comment, - STATE(1621), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(3791), 1, anon_sym_bit_DASHand2, + ACTIONS(3793), 1, anon_sym_bit_DASHxor2, + ACTIONS(3795), 1, anon_sym_bit_DASHor2, - [26021] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1592), 1, - sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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(3797), 1, anon_sym_and2, + ACTIONS(3799), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26097] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1593), 1, + STATE(1611), 1, sym_comment, - STATE(1622), 1, - aux_sym__repeat_newline, - ACTIONS(2704), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2702), 35, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26169] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, + STATE(1631), 1, aux_sym__repeat_newline, - STATE(1594), 1, - sym_comment, - ACTIONS(2708), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3759), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3761), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2706), 36, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26239] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1595), 1, - sym_comment, - STATE(1623), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(3781), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3785), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3783), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3789), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3787), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161781,7 +162861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 17, + ACTIONS(2728), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161793,181 +162873,54 @@ 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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26319] = 14, + [27609] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1596), 1, - sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, + ACTIONS(3829), 1, anon_sym_bit_DASHxor2, + ACTIONS(3831), 1, anon_sym_bit_DASHor2, - [26397] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - STATE(1597), 1, - sym_comment, - STATE(1624), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 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, + ACTIONS(3833), 1, anon_sym_and2, + ACTIONS(3835), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26479] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1598), 1, + STATE(1612), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161976,7 +162929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 17, + ACTIONS(2732), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161989,119 +162942,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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26559] = 17, + [27697] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2841), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3755), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3763), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - STATE(1599), 1, + STATE(1613), 1, sym_comment, - STATE(1625), 1, + STATE(1632), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3759), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3761), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [26643] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1600), 1, - sym_comment, - ACTIONS(3834), 2, + ACTIONS(3781), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3785), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3783), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3787), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162110,58 +162985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [26725] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1601), 1, - sym_comment, - STATE(1627), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2712), 29, - anon_sym_in, + ACTIONS(2728), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162176,13 +163000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -162190,50 +163007,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26801] = 12, + [27775] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(1602), 1, - sym_comment, - STATE(1629), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + STATE(1614), 1, + sym_comment, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 33, + ACTIONS(3813), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3823), 8, anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -162241,41 +163047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26875] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2732), 22, sym__newline, - STATE(1603), 1, - sym_comment, - STATE(1631), 1, - aux_sym__repeat_newline, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2714), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2712), 36, - anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162287,114 +163060,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26943] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1604), 1, - sym_comment, - STATE(4550), 1, - sym_block, - STATE(4719), 1, - sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, - sym__one_type, - STATE(5169), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [27023] = 7, + [27851] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2841), 1, sym__newline, - STATE(1605), 1, + ACTIONS(3755), 1, + anon_sym_DASH2, + ACTIONS(3763), 1, + anon_sym_PLUS2, + STATE(1615), 1, sym_comment, STATE(1633), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2714), 5, + ACTIONS(2730), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3757), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2712), 38, + ACTIONS(3759), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3761), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2728), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -162407,7 +163108,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -162426,67 +163126,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27087] = 18, + [27923] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - STATE(1606), 1, - sym_comment, - STATE(1635), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1616), 1, + sym_comment, + ACTIONS(2734), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(2732), 36, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162501,53 +163171,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [27173] = 19, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [27993] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2841), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3755), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3763), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - STATE(1607), 1, + STATE(1617), 1, sym_comment, - STATE(1637), 1, + STATE(1634), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3759), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3761), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3783), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3789), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3787), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162556,7 +163238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 13, + ACTIONS(2728), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162568,57 +163250,49 @@ 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_and2, anon_sym_xor2, anon_sym_or2, - [27261] = 20, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28073] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - ACTIONS(3826), 1, - anon_sym_xor2, - STATE(1608), 1, - sym_comment, - STATE(1639), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1618), 1, + sym_comment, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162627,7 +163301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 12, + ACTIONS(2732), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162639,41 +163314,53 @@ 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_and2, + anon_sym_xor2, anon_sym_or2, - [27351] = 14, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [28151] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2841), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3755), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3763), 1, anon_sym_PLUS2, - STATE(1609), 1, + ACTIONS(3791), 1, + anon_sym_bit_DASHand2, + STATE(1619), 1, sym_comment, - STATE(1641), 1, + STATE(1635), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3759), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3761), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3783), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3789), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3787), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162682,7 +163369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 21, + ACTIONS(2728), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162697,113 +163384,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27429] = 11, + [28233] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(1610), 1, - sym_comment, - STATE(1643), 1, - aux_sym__repeat_newline, - ACTIONS(2714), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2712), 35, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [27501] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1611), 1, - sym_comment, - STATE(1645), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1620), 1, + sym_comment, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162812,7 +163433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 17, + ACTIONS(2732), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162827,50 +163449,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27581] = 16, + [28313] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2841), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3755), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3763), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3791), 1, anon_sym_bit_DASHand2, - STATE(1612), 1, + ACTIONS(3793), 1, + anon_sym_bit_DASHxor2, + STATE(1621), 1, sym_comment, - STATE(1647), 1, + STATE(1636), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3759), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3761), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3783), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3789), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3787), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162879,7 +163502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 16, + ACTIONS(2728), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162894,51 +163517,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27663] = 17, + [28397] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3829), 1, anon_sym_bit_DASHxor2, - STATE(1613), 1, - sym_comment, - STATE(1649), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1622), 1, + sym_comment, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162947,7 +163567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 15, + ACTIONS(2732), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162963,38 +163584,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [27747] = 12, + [28479] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(1623), 1, + sym_comment, + STATE(4569), 1, + sym_block, + STATE(4699), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [28559] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(1624), 1, + sym_comment, + STATE(4441), 1, + sym_block, + STATE(4691), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [28639] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1614), 1, + STATE(1625), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2720), 30, + ACTIONS(2740), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163025,33 +163776,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27821] = 11, + [28713] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1615), 1, + STATE(1626), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2742), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 34, + ACTIONS(2740), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163086,27 +163837,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27893] = 8, + [28785] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1616), 1, + STATE(1627), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, + ACTIONS(2742), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2720), 37, + ACTIONS(2740), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163144,23 +163895,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27959] = 6, + [28851] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1617), 1, + STATE(1628), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(2742), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 39, + ACTIONS(2740), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163200,49 +163951,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28021] = 17, + [28913] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3829), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3831), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1618), 1, + STATE(1629), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163251,7 +164002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 15, + ACTIONS(2740), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163267,51 +164018,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [28105] = 18, + [28997] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3829), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3831), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3833), 1, anon_sym_and2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1619), 1, + STATE(1630), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163320,7 +164071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 14, + ACTIONS(2740), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163335,53 +164086,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [28191] = 19, + [29083] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3829), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3831), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3833), 1, anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(3835), 1, anon_sym_xor2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1620), 1, + STATE(1631), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163390,7 +164141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 13, + ACTIONS(2740), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163404,38 +164155,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [28279] = 13, + [29171] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1621), 1, + STATE(1632), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163444,7 +164195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 22, + ACTIONS(2740), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163467,30 +164218,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28355] = 10, + [29247] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1622), 1, + STATE(1633), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2742), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 36, + ACTIONS(2740), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163527,43 +164278,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28425] = 14, + [29317] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1623), 1, + STATE(1634), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163572,7 +164323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 18, + ACTIONS(2740), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163591,45 +164342,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28503] = 15, + [29395] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1624), 1, + STATE(1635), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163638,7 +164389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 17, + ACTIONS(2740), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163656,47 +164407,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28583] = 16, + [29475] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3829), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1625), 1, + STATE(1636), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3807), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163705,58 +164456,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [28665] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2740), 16, sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1626), 1, - sym_comment, - STATE(1650), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2728), 29, - anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163771,112 +164472,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28741] = 12, - ACTIONS(3), 1, + [29557] = 20, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2744), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2780), 1, + anon_sym_COLON2, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1627), 1, + anon_sym_DASH_DASH, + STATE(1637), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, + STATE(1709), 1, + aux_sym_decl_def_repeat1, + STATE(2016), 1, + sym__val_number_decimal, + STATE(2148), 1, + sym_long_flag, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3658), 1, + sym__command_name, ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2732), 30, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3625), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28815] = 12, - ACTIONS(3), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [29647] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1628), 1, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + STATE(1638), 1, sym_comment, - STATE(1651), 1, - aux_sym__repeat_newline, - ACTIONS(2730), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2728), 33, - anon_sym_in, + ACTIONS(2491), 17, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163887,68 +164563,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28889] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1629), 1, - sym_comment, - ACTIONS(2734), 2, + ACTIONS(2493), 29, + anon_sym_in, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + anon_sym_DASH2, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2732), 34, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, anon_sym_xor2, anon_sym_or2, @@ -163959,97 +164583,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28961] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - STATE(1630), 1, - sym_comment, - STATE(1652), 1, - aux_sym__repeat_newline, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2730), 3, - anon_sym_GT2, - anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2728), 36, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29029] = 8, + [29707] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1631), 1, + ACTIONS(1838), 1, + sym__unquoted_pattern, + STATE(1639), 1, sym_comment, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2734), 3, + ACTIONS(860), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2732), 37, + ACTIONS(960), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164062,7 +164625,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_DASH2, anon_sym_and2, anon_sym_xor2, @@ -164082,31 +164644,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29095] = 7, - ACTIONS(3), 1, + [29767] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - STATE(1632), 1, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + STATE(1640), 1, sym_comment, - STATE(1653), 1, - aux_sym__repeat_newline, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2730), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2728), 38, - anon_sym_in, + ACTIONS(2640), 17, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164117,64 +164673,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_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29159] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1633), 1, - sym_comment, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2734), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2732), 39, + ACTIONS(2642), 29, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -164185,279 +164693,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29221] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - STATE(1634), 1, - sym_comment, - STATE(1654), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [29307] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, anon_sym_bit_DASHor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1635), 1, + [29827] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(1641), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [29391] = 19, + STATE(4409), 1, + sym_block, + STATE(4751), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [29907] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - STATE(1636), 1, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(1642), 1, sym_comment, - STATE(1655), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 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_xor2, - anon_sym_or2, - [29479] = 18, + STATE(4412), 1, + sym_block, + STATE(4642), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [29987] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3854), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3864), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1637), 1, + STATE(1643), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3852), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3856), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3860), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3862), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3866), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3858), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(2576), 31, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164470,58 +164881,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_xor2, - anon_sym_or2, - [29565] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(3826), 1, anon_sym_xor2, - STATE(1638), 1, - sym_comment, - STATE(1656), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -164529,75 +164892,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 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_or2, - [29655] = 19, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [30059] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3854), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3864), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - ACTIONS(3862), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1639), 1, + STATE(1644), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(2578), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3856), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3860), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3862), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3866), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(2576), 35, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164610,42 +164937,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, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [29743] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1640), 1, - sym_comment, - STATE(1657), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3814), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -164653,21 +164948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -164675,47 +164959,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29821] = 13, + [30129] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1641), 1, + STATE(1645), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3856), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3860), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3862), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(2578), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2576), 38, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164728,43 +164991,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_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29897] = 11, + [30193] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1642), 1, + STATE(1646), 1, sym_comment, - STATE(1658), 1, - aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(3860), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2578), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2728), 35, + anon_sym_PLUS2, + ACTIONS(2576), 40, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164776,6 +165044,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_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -164794,36 +165064,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29969] = 10, + [30253] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3854), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3864), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1643), 1, + ACTIONS(3872), 1, + anon_sym_bit_DASHand2, + ACTIONS(3874), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3876), 1, + anon_sym_bit_DASHor2, + STATE(1647), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(3852), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3856), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3860), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3862), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2732), 36, + ACTIONS(3866), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3858), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3870), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3868), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2576), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164836,68 +165133,53 @@ 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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30039] = 15, + [30335] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3854), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3864), 1, anon_sym_PLUS2, - STATE(1644), 1, + ACTIONS(3872), 1, + anon_sym_bit_DASHand2, + ACTIONS(3874), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3876), 1, + anon_sym_bit_DASHor2, + ACTIONS(3878), 1, + anon_sym_and2, + STATE(1648), 1, sym_comment, - STATE(1659), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(3852), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3856), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3860), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3862), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3866), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3858), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3870), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3868), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164906,7 +165188,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 17, + ACTIONS(2576), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164918,49 +165201,54 @@ 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_and2, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30119] = 14, + [30419] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3854), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3864), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1645), 1, + ACTIONS(3872), 1, + anon_sym_bit_DASHand2, + ACTIONS(3874), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3876), 1, + anon_sym_bit_DASHor2, + ACTIONS(3878), 1, + anon_sym_and2, + ACTIONS(3880), 1, + anon_sym_xor2, + STATE(1649), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3852), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3856), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3860), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3862), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3866), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3858), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3870), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3868), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164969,7 +165257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 18, + ACTIONS(2576), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164982,53 +165270,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_and2, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30197] = 16, + [30505] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3854), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3864), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - STATE(1646), 1, + STATE(1650), 1, sym_comment, - STATE(1660), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(3852), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3856), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3860), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3862), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3866), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3858), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3868), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165037,7 +165310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 16, + ACTIONS(2576), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165049,50 +165323,111 @@ 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_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30279] = 15, + [30579] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3854), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3864), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + STATE(1651), 1, + sym_comment, + ACTIONS(2578), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3856), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3860), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3862), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2576), 37, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1647), 1, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [30647] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3854), 1, + anon_sym_DASH2, + ACTIONS(3864), 1, + anon_sym_PLUS2, + STATE(1652), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3852), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3856), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3860), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3862), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3866), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3858), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3870), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3868), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165101,7 +165436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 17, + ACTIONS(2576), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165114,54 +165449,50 @@ 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_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30359] = 17, + [30723] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3854), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3864), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3872), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - STATE(1648), 1, + STATE(1653), 1, sym_comment, - STATE(1661), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(3852), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3856), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3860), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3862), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3866), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3858), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3870), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3868), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165170,7 +165501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 15, + ACTIONS(2576), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165182,51 +165514,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30443] = 16, + [30801] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3854), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3864), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3872), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3874), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1649), 1, + STATE(1654), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3852), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3856), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3860), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3862), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3866), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3858), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3870), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3868), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165235,7 +165567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 16, + ACTIONS(2576), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165248,100 +165580,792 @@ 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_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [30525] = 12, + [30881] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(1655), 1, + sym_comment, + STATE(4303), 1, + sym_block, + STATE(4673), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [30961] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(1656), 1, + sym_comment, + STATE(4308), 1, + sym_block, + STATE(4676), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [31041] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(1657), 1, + sym_comment, + STATE(4051), 1, + sym_block, + STATE(4688), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [31121] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(1658), 1, + sym_comment, + STATE(4052), 1, + sym_block, + STATE(4690), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [31201] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1408), 1, + anon_sym_DQUOTE, + ACTIONS(1410), 1, + anon_sym_SQUOTE, + ACTIONS(1412), 1, + anon_sym_BQUOTE, + ACTIONS(1422), 1, + sym_raw_string_begin, + ACTIONS(3697), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3882), 1, + anon_sym_LBRACK, + ACTIONS(3884), 1, + anon_sym_DOLLAR, + ACTIONS(3886), 1, + anon_sym_LBRACE, + STATE(1659), 1, + sym_comment, + STATE(2059), 1, + sym__val_number_decimal, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3693), 2, + anon_sym_export, + anon_sym_in, + STATE(4626), 2, + sym_cmd_identifier, + sym_val_string, + STATE(4627), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3695), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [31287] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(1660), 1, + sym_comment, + STATE(4090), 1, + sym_block, + STATE(4739), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [31367] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(1661), 1, + sym_comment, + STATE(4091), 1, + sym_block, + STATE(4742), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [31447] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(1662), 1, + sym_comment, + STATE(4093), 1, + sym_block, + STATE(4743), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [31527] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(1663), 1, + sym_comment, + STATE(4095), 1, + sym_block, + STATE(4746), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [31607] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(1664), 1, + sym_comment, + STATE(4149), 1, + sym_block, + STATE(4780), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [31687] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(1665), 1, + sym_comment, + STATE(4158), 1, + sym_block, + STATE(4781), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [31767] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1650), 1, + STATE(1666), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2740), 30, + ACTIONS(2940), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30599] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(3846), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1651), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2942), 40, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_LPAREN, + 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, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [31825] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + STATE(1667), 1, sym_comment, - ACTIONS(2742), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2740), 34, - anon_sym_in, + ACTIONS(960), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165353,63 +166377,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30671] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1652), 1, - sym_comment, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2742), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2740), 37, + ACTIONS(860), 29, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -165420,379 +166397,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30737] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1653), 1, - sym_comment, - ACTIONS(3842), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2742), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2740), 39, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30799] = 17, + [31885] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1654), 1, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(1668), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [30883] = 18, + STATE(4494), 1, + sym_block, + STATE(4708), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [31965] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1655), 1, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(1669), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 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_xor2, - anon_sym_or2, - [30969] = 19, + STATE(4621), 1, + sym_block, + STATE(4710), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [32045] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - ACTIONS(3862), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1656), 1, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3888), 1, + anon_sym_LBRACK, + ACTIONS(3890), 1, + anon_sym_DOLLAR, + ACTIONS(3892), 1, + anon_sym_LBRACE, + STATE(1670), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + STATE(2016), 1, + sym__val_number_decimal, + ACTIONS(3625), 2, + anon_sym_export, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 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_or2, - [31057] = 13, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3205), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3211), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [32131] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1657), 1, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(1671), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31133] = 10, + STATE(4529), 1, + sym_block, + STATE(4634), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [32211] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1658), 1, + ACTIONS(1592), 1, + anon_sym_DOLLAR, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(3894), 1, + anon_sym_DOT, + STATE(1672), 1, sym_comment, - ACTIONS(2742), 2, + STATE(1832), 1, + sym__immediate_decimal, + ACTIONS(3896), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3898), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(677), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1594), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2740), 36, + anon_sym_PLUS2, + ACTIONS(1590), 30, anon_sym_in, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -165811,240 +166728,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31203] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1659), 1, - sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31281] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, anon_sym_bit_DASHand2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1660), 1, - sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 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_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31361] = 16, + [32285] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1661), 1, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(1673), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [31443] = 15, + STATE(4403), 1, + sym_block, + STATE(4763), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [32365] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(1662), 1, + STATE(1674), 1, sym_comment, - STATE(4545), 1, + STATE(4532), 1, sym_block, - STATE(4699), 1, + STATE(4637), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166076,40 +166867,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31523] = 15, + [32445] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(1663), 1, + STATE(1675), 1, sym_comment, - STATE(4553), 1, + STATE(4075), 1, sym_block, - STATE(4722), 1, + STATE(4629), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166141,40 +166932,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31603] = 15, + [32525] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3765), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3767), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(1664), 1, + STATE(1676), 1, sym_comment, - STATE(4567), 1, + STATE(4083), 1, sym_block, - STATE(4734), 1, + STATE(4630), 1, sym_returns, - STATE(4849), 1, - sym__type_annotation, - STATE(5007), 1, + STATE(4826), 1, sym__one_type, - STATE(5169), 1, + STATE(4918), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166206,148 +166997,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31683] = 11, + [32605] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - STATE(1665), 1, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(1677), 1, sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2533), 31, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31755] = 10, + STATE(4414), 1, + sym_block, + STATE(4728), 1, + sym_returns, + STATE(4826), 1, + sym__one_type, + STATE(4918), 1, + sym__multiple_types, + STATE(4976), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [32685] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(2841), 1, + sym__newline, + ACTIONS(3755), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3763), 1, anon_sym_PLUS2, - STATE(1666), 1, + STATE(1625), 1, + aux_sym__repeat_newline, + STATE(1678), 1, sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3759), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3761), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3781), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3785), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 35, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(3783), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31825] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1667), 1, - sym_comment, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2533), 38, + ACTIONS(2728), 29, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166359,8 +167108,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_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166371,49 +167118,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31889] = 5, + [32761] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1668), 1, + ACTIONS(1592), 1, + anon_sym_DOLLAR, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1606), 1, + sym__unquoted_pattern, + STATE(1679), 1, sym_comment, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, + STATE(1951), 1, + sym__immediate_decimal, + ACTIONS(3900), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3902), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(809), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1594), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2533), 40, + ACTIONS(1590), 30, anon_sym_in, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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_DASH2, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166432,6 +167176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -166439,47 +167185,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31949] = 16, + [32832] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3912), 1, + anon_sym_and2, + ACTIONS(3914), 1, + anon_sym_xor2, + ACTIONS(3924), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(3930), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, + ACTIONS(3932), 1, anon_sym_bit_DASHor2, - STATE(1669), 1, + STATE(1680), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3920), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3922), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3926), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3916), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3918), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3904), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166488,7 +167238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 16, + ACTIONS(2576), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166500,63 +167251,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_and2, - anon_sym_xor2, anon_sym_or2, - [32031] = 17, + [32917] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - ACTIONS(3884), 1, - anon_sym_bit_DASHand2, - ACTIONS(3886), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, - anon_sym_bit_DASHor2, - ACTIONS(3890), 1, - anon_sym_and2, - STATE(1670), 1, + STATE(1681), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(2656), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3882), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3880), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 15, + anon_sym_PLUS2, + ACTIONS(3843), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166568,56 +167276,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, - anon_sym_xor2, - anon_sym_or2, - [32115] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(2654), 29, + anon_sym_in, anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - ACTIONS(3884), 1, - anon_sym_bit_DASHand2, - ACTIONS(3886), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, - anon_sym_bit_DASHor2, - ACTIONS(3890), 1, anon_sym_and2, - ACTIONS(3892), 1, anon_sym_xor2, - STATE(1671), 1, - sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3882), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3880), 8, - anon_sym_in, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -166625,105 +167289,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 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_or2, - [32201] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - STATE(1672), 1, - sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3880), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32275] = 9, + [32976] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3924), 1, anon_sym_PLUS2, - STATE(1673), 1, + STATE(1682), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2578), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3920), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3922), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2533), 37, + ACTIONS(2576), 36, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166736,8 +167341,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_and2, anon_sym_xor2, anon_sym_or2, @@ -166761,41 +167364,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32343] = 13, + [33043] = 19, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3846), 1, + anon_sym_DASH_DASH, + STATE(1683), 1, + sym_comment, + STATE(1709), 1, + aux_sym_decl_def_repeat1, + STATE(2016), 1, + sym__val_number_decimal, + STATE(2148), 1, + sym_long_flag, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3658), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3625), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [33130] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3924), 1, anon_sym_PLUS2, - STATE(1674), 1, + STATE(1684), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3920), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3922), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3926), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3916), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3918), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3904), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166804,7 +167475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 19, + ACTIONS(2576), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166816,51 +167488,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, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32419] = 14, + [33205] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3924), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHand2, - STATE(1675), 1, + STATE(1685), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3920), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3922), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3926), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3916), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(3918), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3904), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166869,7 +167539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 18, + ACTIONS(2576), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166881,53 +167552,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_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32497] = 15, + [33282] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - ACTIONS(3884), 1, - anon_sym_bit_DASHand2, - ACTIONS(3886), 1, - anon_sym_bit_DASHxor2, - STATE(1676), 1, + ACTIONS(1592), 1, + anon_sym_DOLLAR, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1645), 1, + sym__unquoted_pattern, + STATE(1686), 1, sym_comment, - ACTIONS(3864), 2, + STATE(1963), 1, + sym__immediate_decimal, + ACTIONS(3900), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3902), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(776), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1643), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3882), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + anon_sym_PLUS2, + ACTIONS(1641), 30, anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -166935,137 +167600,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 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_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32577] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1677), 1, - sym_comment, - STATE(2107), 1, - sym__val_number_decimal, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(4760), 2, - sym_cmd_identifier, - sym_val_string, - STATE(4762), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [32663] = 18, + [33353] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3924), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3930), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1678), 1, + STATE(1687), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3920), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3922), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3926), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3916), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3918), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3904), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167074,7 +167664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 14, + ACTIONS(2576), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167086,167 +167677,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, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [32749] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(1679), 1, - sym_comment, - STATE(1925), 1, - sym__immediate_decimal, - ACTIONS(3900), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1631), 30, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32820] = 19, - ACTIONS(103), 1, + [33432] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, - anon_sym_DASH_DASH, - STATE(1680), 1, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(3934), 1, + sym__newline, + ACTIONS(3936), 1, + anon_sym_RBRACK, + STATE(1688), 1, sym_comment, - STATE(1713), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3729), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [32907] = 11, + STATE(1726), 1, + aux_sym__types_body_repeat1, + STATE(1806), 1, + aux_sym__types_body_repeat3, + STATE(4528), 1, + sym__one_type, + STATE(4825), 1, + sym__type_annotation, + STATE(4840), 1, + sym__types_body, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [33509] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3924), 1, anon_sym_PLUS2, - STATE(1681), 1, + STATE(1689), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3920), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3922), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3926), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3916), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 30, + ACTIONS(2576), 30, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167277,31 +167804,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32978] = 10, + [33580] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3924), 1, anon_sym_PLUS2, - STATE(1682), 1, + STATE(1690), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2578), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3920), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3922), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3926), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 34, + ACTIONS(2576), 34, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167336,25 +167863,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33047] = 7, + [33649] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1683), 1, + STATE(1691), 1, sym_comment, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3920), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3922), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, + ACTIONS(2578), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2533), 37, + ACTIONS(2576), 37, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167392,21 +167919,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33110] = 5, + [33712] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1684), 1, + STATE(1692), 1, sym_comment, - ACTIONS(3912), 2, + ACTIONS(3920), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, + ACTIONS(2578), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2533), 39, + ACTIONS(2576), 39, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167446,115 +167973,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33169] = 16, + [33771] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, - ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, - anon_sym_bit_DASHor2, - STATE(1685), 1, + ACTIONS(1592), 1, + anon_sym_DOLLAR, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(3938), 1, + anon_sym_DOT, + STATE(1693), 1, sym_comment, - ACTIONS(3904), 2, + STATE(1849), 1, + sym__immediate_decimal, + ACTIONS(3940), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3942), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1961), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1594), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3912), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3922), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + anon_sym_PLUS2, + ACTIONS(1590), 29, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 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_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [33250] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, - ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, - anon_sym_bit_DASHor2, - ACTIONS(3930), 1, - anon_sym_and2, - STATE(1686), 1, - sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3912), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3922), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3920), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -167562,305 +168017,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 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, - anon_sym_xor2, - anon_sym_or2, - [33333] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, - ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, - anon_sym_bit_DASHor2, - ACTIONS(3930), 1, - anon_sym_and2, - ACTIONS(3932), 1, - anon_sym_xor2, - STATE(1687), 1, - sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3912), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 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, - anon_sym_or2, - [33418] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3936), 1, - anon_sym_RBRACK, - STATE(1688), 1, - sym_comment, - STATE(1726), 1, - aux_sym__types_body_repeat1, - STATE(1797), 1, - aux_sym__types_body_repeat3, - STATE(4496), 1, - sym__one_type, - STATE(4821), 1, - sym__type_annotation, - STATE(4842), 1, - sym__types_body, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [33495] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - STATE(1689), 1, - sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3920), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 22, - 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33568] = 9, + [33844] = 19, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3846), 1, + anon_sym_DASH_DASH, + STATE(1694), 1, + sym_comment, + STATE(1704), 1, + aux_sym_decl_def_repeat1, + STATE(2016), 1, + sym__val_number_decimal, + STATE(2148), 1, + sym_long_flag, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3704), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3625), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [33931] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3924), 1, anon_sym_PLUS2, - STATE(1690), 1, - sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3912), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2533), 36, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(3928), 1, anon_sym_bit_DASHand2, + ACTIONS(3930), 1, anon_sym_bit_DASHxor2, + ACTIONS(3932), 1, anon_sym_bit_DASHor2, - [33635] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - STATE(1691), 1, + STATE(1695), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3920), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3922), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3926), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3916), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3918), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3904), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167869,7 +168151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 18, + ACTIONS(2576), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167885,46 +168167,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33710] = 14, + [34012] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, + ACTIONS(3912), 1, + anon_sym_and2, ACTIONS(3924), 1, + anon_sym_PLUS2, + ACTIONS(3928), 1, anon_sym_bit_DASHand2, - STATE(1692), 1, + ACTIONS(3930), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3932), 1, + anon_sym_bit_DASHor2, + STATE(1696), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3920), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3922), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3926), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3916), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3918), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3904), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167933,7 +168218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 17, + ACTIONS(2576), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167946,50 +168231,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33787] = 15, + [34095] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, ACTIONS(3924), 1, - anon_sym_bit_DASHand2, - ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, - STATE(1693), 1, + anon_sym_PLUS2, + STATE(1697), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3920), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3922), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3926), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3916), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3904), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167998,7 +168271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 16, + ACTIONS(2576), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -168014,9 +168287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33866] = 19, - ACTIONS(103), 1, + [34168] = 19, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, anon_sym_DQUOTE, @@ -168026,39 +168305,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, + ACTIONS(3944), 1, anon_sym_DASH_DASH, - STATE(1694), 1, + STATE(1698), 1, sym_comment, - STATE(1710), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, + STATE(2043), 1, + aux_sym_decl_def_repeat1, STATE(2148), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(3629), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3678), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3625), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168076,47 +168355,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33953] = 12, + [34254] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3938), 1, - anon_sym_DOT, - STATE(1695), 1, - sym_comment, - STATE(1855), 1, - sym__immediate_decimal, - ACTIONS(3940), 2, + ACTIONS(3946), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1963), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(3948), 1, + aux_sym__immediate_decimal_token5, + STATE(1699), 1, + sym_comment, + ACTIONS(739), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168135,6 +168402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -168144,93 +168412,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34026] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [34314] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(1696), 1, - sym_comment, - ACTIONS(2565), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3757), 12, - ts_builtin_sym_end, + ACTIONS(1408), 1, + anon_sym_DQUOTE, + ACTIONS(1410), 1, + anon_sym_SQUOTE, + ACTIONS(1412), 1, + anon_sym_BQUOTE, + ACTIONS(1422), 1, + sym_raw_string_begin, + ACTIONS(3697), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3950), 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, - ACTIONS(2563), 29, + STATE(1700), 1, + sym_comment, + STATE(1748), 1, + aux_sym__command_list_body_repeat1, + STATE(2059), 1, + sym__val_number_decimal, + STATE(2116), 1, + aux_sym__types_body_repeat1, + STATE(4396), 1, + sym__command_name, + STATE(4660), 1, + sym_cmd_identifier, + STATE(4661), 1, + sym_val_string, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3693), 2, + anon_sym_export, anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [34085] = 11, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3695), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [34400] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(1697), 1, + ACTIONS(1629), 1, + anon_sym_DOT, + STATE(1701), 1, sym_comment, - STATE(1919), 1, + STATE(1960), 1, sym__immediate_decimal, - ACTIONS(3900), 2, + ACTIONS(3940), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, + ACTIONS(3942), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(1959), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1627), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 30, + ACTIONS(1625), 29, anon_sym_in, - sym__newline, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168258,7 +168541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34156] = 19, + [34470] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -168269,106 +168552,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, ACTIONS(3944), 1, anon_sym_DASH_DASH, - STATE(1698), 1, + STATE(1702), 1, sym_comment, - STATE(2081), 1, + STATE(1714), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, STATE(2148), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(3691), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [34242] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, - anon_sym_DASH_DASH, - STATE(1698), 1, - aux_sym_decl_def_repeat1, - STATE(1699), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, + STATE(3537), 1, sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3658), 1, + STATE(3708), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3625), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168392,74 +168608,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34328] = 19, + [34556] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, - anon_sym_DASH_DASH, - STATE(1700), 1, + ACTIONS(3952), 1, + anon_sym_DOT, + ACTIONS(3954), 1, + aux_sym__immediate_decimal_token5, + STATE(1703), 1, sym_comment, - STATE(1702), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3654), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, + ACTIONS(747), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 35, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [34414] = 19, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [34616] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -168470,39 +168673,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, ACTIONS(3944), 1, anon_sym_DASH_DASH, - STATE(1701), 1, + STATE(1704), 1, sym_comment, - STATE(1709), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, + STATE(2043), 1, + aux_sym_decl_def_repeat1, STATE(2148), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(3627), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3667), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3625), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168526,7 +168729,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34500] = 19, + [34702] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -168537,106 +168740,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, ACTIONS(3944), 1, anon_sym_DASH_DASH, - STATE(1702), 1, - sym_comment, - STATE(2081), 1, + STATE(1698), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1705), 1, + sym_comment, + STATE(2016), 1, sym__val_number_decimal, STATE(2148), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(3657), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3642), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3625), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [34586] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, - sym__newline, - STATE(1703), 1, - sym_comment, - STATE(1763), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, - sym__val_number_decimal, - STATE(2121), 1, - aux_sym__types_body_repeat1, - STATE(4615), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168660,72 +168796,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34672] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3946), 1, - anon_sym_DOT, - ACTIONS(3948), 1, - aux_sym__immediate_decimal_token5, - STATE(1704), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [34732] = 11, + [34788] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1600), 1, + ACTIONS(1598), 1, anon_sym_DOT, - STATE(1705), 1, + STATE(1706), 1, sym_comment, - STATE(1957), 1, + STATE(1943), 1, sym__immediate_decimal, ACTIONS(3940), 2, aux_sym__immediate_decimal_token1, @@ -168733,17 +168815,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3942), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1963), 2, + STATE(1961), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1594), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + ACTIONS(1590), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168773,149 +168855,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34802] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3950), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3952), 1, - aux_sym__immediate_decimal_token5, - STATE(1706), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [34862] = 11, + [34858] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1645), 1, sym__unquoted_pattern, STATE(1707), 1, sym_comment, - STATE(1978), 1, + STATE(2102), 1, sym__immediate_decimal, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [34932] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(1708), 1, - sym_comment, - STATE(2092), 1, - sym__immediate_decimal, - ACTIONS(3954), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(776), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1643), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 29, + ACTIONS(1641), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168945,7 +168914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35002] = 19, + [34928] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -168956,39 +168925,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, ACTIONS(3944), 1, anon_sym_DASH_DASH, - STATE(1709), 1, + STATE(1708), 1, sym_comment, - STATE(2081), 1, + STATE(1710), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, STATE(2148), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(3633), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3639), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3625), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169012,7 +168981,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35088] = 19, + [35014] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -169023,39 +168992,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, ACTIONS(3944), 1, anon_sym_DASH_DASH, - STATE(1710), 1, + STATE(1709), 1, sym_comment, - STATE(2081), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, + STATE(2043), 1, + aux_sym_decl_def_repeat1, STATE(2148), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(3666), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3645), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3625), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169079,66 +169048,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35174] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - STATE(1711), 1, - sym_comment, - STATE(1962), 1, - sym__immediate_decimal, - ACTIONS(3940), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1961), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1582), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [35244] = 19, + [35100] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -169149,39 +169059,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, ACTIONS(3944), 1, anon_sym_DASH_DASH, - STATE(1712), 1, + STATE(1710), 1, sym_comment, - STATE(1714), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, + STATE(2043), 1, + aux_sym_decl_def_repeat1, STATE(2148), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(3716), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3661), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3625), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169205,7 +169115,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35330] = 19, + [35186] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -169216,39 +169126,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, ACTIONS(3944), 1, anon_sym_DASH_DASH, - STATE(1713), 1, + STATE(1711), 1, sym_comment, - STATE(2081), 1, + STATE(1712), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, STATE(2148), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(3628), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3674), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3625), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169272,7 +169182,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35416] = 19, + [35272] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -169283,39 +169193,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, ACTIONS(3944), 1, anon_sym_DASH_DASH, - STATE(1714), 1, + STATE(1712), 1, sym_comment, - STATE(2081), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, + STATE(2043), 1, + aux_sym_decl_def_repeat1, STATE(2148), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(3648), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3700), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3625), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169339,34 +169249,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35502] = 10, + [35358] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(722), 1, - sym__immediate_decimal, - STATE(1715), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + STATE(1713), 1, sym_comment, - ACTIONS(3954), 2, + STATE(2089), 1, + sym__immediate_decimal, + ACTIONS(3956), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(721), 2, + STATE(809), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 6, + ACTIONS(1594), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1582), 29, + ACTIONS(1590), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -169396,46 +169308,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35569] = 17, + [35428] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3944), 1, + anon_sym_DASH_DASH, + STATE(1714), 1, + sym_comment, + STATE(2016), 1, + sym__val_number_decimal, + STATE(2043), 1, + aux_sym_decl_def_repeat1, + STATE(2148), 1, + sym_long_flag, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3725), 1, + sym__command_name, + ACTIONS(3625), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [35514] = 17, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2744), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2780), 1, + anon_sym_COLON2, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + STATE(1715), 1, + sym_comment, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3846), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3625), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [35595] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3960), 1, + anon_sym_QMARK2, + ACTIONS(3962), 1, + anon_sym_BANG, STATE(1716), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3845), 1, - sym__command_name, - ACTIONS(3768), 2, + STATE(1831), 1, + sym__path_suffix, + ACTIONS(1476), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1478), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [35656] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3964), 1, + anon_sym_DOT2, + STATE(1717), 1, + sym_comment, + STATE(1749), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1829), 1, + sym_path, + STATE(1866), 1, + sym_cell_path, + ACTIONS(1667), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1665), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169453,41 +169529,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35650] = 10, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [35719] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(896), 1, + STATE(960), 1, sym__immediate_decimal, - STATE(1717), 1, + STATE(1718), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3956), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(809), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1594), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + ACTIONS(1590), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -169517,37 +169605,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35717] = 11, + [35786] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(3958), 1, - anon_sym_DOT_DOT2, - ACTIONS(3962), 1, - sym_filesize_unit, - ACTIONS(3964), 1, - sym_duration_unit, - STATE(1718), 1, + ACTIONS(3966), 1, + anon_sym_DOT, + ACTIONS(3968), 1, + aux_sym__immediate_decimal_token5, + STATE(1719), 1, sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3960), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 31, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169566,6 +169645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -169575,75 +169655,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35786] = 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [35845] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, - sym__newline, ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1719), 1, - sym_comment, - STATE(1746), 1, - aux_sym__types_body_repeat1, - STATE(1831), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, - sym__all_type, - STATE(4925), 1, - sym__composite_argument_body, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 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, - [35857] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3974), 1, aux_sym__immediate_decimal_token1, - ACTIONS(3976), 1, + ACTIONS(3972), 1, aux_sym__immediate_decimal_token5, STATE(1720), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -169652,7 +169676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 34, + ACTIONS(741), 34, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -169687,91 +169711,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [35916] = 17, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1721), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4836), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [35997] = 5, + [35904] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - aux_sym__immediate_decimal_token5, - STATE(1722), 1, + ACTIONS(1592), 1, + anon_sym_DOLLAR, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + STATE(942), 1, + sym__immediate_decimal, + STATE(1721), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(3956), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3958), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(776), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1643), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, + ACTIONS(1641), 29, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169790,7 +169759,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -169800,39 +169768,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [36054] = 10, + [35971] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1734), 1, anon_sym_LPAREN2, - STATE(925), 1, - sym__immediate_decimal, - STATE(1723), 1, + ACTIONS(1744), 1, + sym__unquoted_pattern, + ACTIONS(3974), 1, + anon_sym_DOT_DOT2, + ACTIONS(3978), 1, + sym_filesize_unit, + ACTIONS(3980), 1, + sym_duration_unit, + STATE(1722), 1, sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(4715), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(3976), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(860), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 29, + ACTIONS(960), 31, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169860,7 +169826,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36121] = 17, + [36040] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3934), 1, + sym__newline, + ACTIONS(3986), 1, + anon_sym_list, + ACTIONS(3988), 1, + anon_sym_oneof, + STATE(1723), 1, + sym_comment, + STATE(1737), 1, + aux_sym__types_body_repeat1, + STATE(1828), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4549), 1, + sym__all_type, + STATE(4947), 1, + sym__composite_argument_body, + ACTIONS(3984), 2, + anon_sym_table, + anon_sym_record, + STATE(4464), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3982), 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, + [36111] = 17, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -169871,34 +169896,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(2664), 1, + ACTIONS(2744), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2780), 1, anon_sym_COLON2, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, STATE(1724), 1, sym_comment, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(4171), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4843), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3848), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3625), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -169924,14 +169949,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [36202] = 5, + [36192] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3948), 1, + ACTIONS(3954), 1, aux_sym__immediate_decimal_token5, STATE(1725), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -169940,7 +169965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 35, + ACTIONS(749), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -169976,34 +170001,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [36259] = 12, + [36249] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, ACTIONS(3934), 1, sym__newline, STATE(1726), 1, sym_comment, - STATE(1783), 1, + STATE(1803), 1, aux_sym__types_body_repeat3, - STATE(1934), 1, + STATE(1949), 1, aux_sym__types_body_repeat1, - STATE(4557), 1, + STATE(4559), 1, sym__one_type, - STATE(4821), 1, + STATE(4825), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170035,24 +170060,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36330] = 8, + [36320] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, + ACTIONS(3964), 1, anon_sym_DOT2, STATE(1727), 1, sym_comment, - STATE(1742), 1, + STATE(1749), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, + STATE(1829), 1, sym_path, - STATE(1862), 1, + STATE(1846), 1, sym_cell_path, - ACTIONS(1681), 3, + ACTIONS(1657), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1679), 37, + ACTIONS(1655), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170090,34 +170115,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36393] = 10, + [36383] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(737), 1, + STATE(873), 1, sym__immediate_decimal, STATE(1728), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3956), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(736), 2, + STATE(872), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 6, + ACTIONS(1627), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1667), 29, + ACTIONS(1625), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170147,34 +170172,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36460] = 10, + [36450] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(739), 1, + STATE(741), 1, sym__immediate_decimal, STATE(1729), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3956), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(738), 2, + STATE(739), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1673), 6, + ACTIONS(1653), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1671), 29, + ACTIONS(1651), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170204,34 +170229,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36527] = 10, + [36517] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(741), 1, + STATE(747), 1, sym__immediate_decimal, STATE(1730), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3956), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, + ACTIONS(3958), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(743), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1631), 29, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [36584] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1592), 1, + anon_sym_DOLLAR, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + STATE(752), 1, + sym__immediate_decimal, + STATE(1731), 1, + sym_comment, ACTIONS(3956), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(740), 2, + STATE(749), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 6, + ACTIONS(1649), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1675), 29, + ACTIONS(1647), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170261,26 +170343,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36594] = 12, + [36651] = 17, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2744), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2780), 1, + anon_sym_COLON2, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + STATE(1732), 1, + sym_comment, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3625), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [36732] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3990), 1, + aux_sym__immediate_decimal_token5, + STATE(1733), 1, + sym_comment, + ACTIONS(771), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(773), 35, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [36789] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3934), 1, sym__newline, - ACTIONS(3970), 1, + ACTIONS(3986), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(3988), 1, anon_sym_oneof, - STATE(1731), 1, + STATE(1734), 1, sym_comment, - STATE(1746), 1, + STATE(1737), 1, aux_sym__types_body_repeat1, - STATE(1831), 1, + STATE(1828), 1, aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, + STATE(4549), 1, sym__all_type, - STATE(4808), 1, + STATE(5201), 1, sym__composite_argument_body, - ACTIONS(3968), 2, + ACTIONS(3984), 2, anon_sym_table, anon_sym_record, STATE(4464), 4, @@ -170288,7 +170486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(3982), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170320,26 +170518,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36665] = 12, + [36860] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3964), 1, + anon_sym_DOT2, + STATE(1735), 1, + sym_comment, + STATE(1749), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1829), 1, + sym_path, + STATE(1874), 1, + sym_cell_path, + ACTIONS(1460), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1462), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [36923] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3934), 1, sym__newline, - ACTIONS(3970), 1, + ACTIONS(3986), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(3988), 1, anon_sym_oneof, - STATE(1732), 1, + STATE(1736), 1, sym_comment, - STATE(1746), 1, + STATE(1737), 1, aux_sym__types_body_repeat1, - STATE(1831), 1, + STATE(1828), 1, aux_sym__composite_argument_body_repeat1, - STATE(4543), 1, + STATE(4549), 1, sym__all_type, - STATE(5027), 1, + STATE(5029), 1, sym__composite_argument_body, - ACTIONS(3968), 2, + ACTIONS(3984), 2, + anon_sym_table, + anon_sym_record, + STATE(4464), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3982), 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, + [36994] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3934), 1, + sym__newline, + ACTIONS(3986), 1, + anon_sym_list, + ACTIONS(3988), 1, + anon_sym_oneof, + STATE(1737), 1, + sym_comment, + STATE(1838), 1, + aux_sym__composite_argument_body_repeat1, + STATE(1949), 1, + aux_sym__types_body_repeat1, + STATE(4488), 1, + sym__all_type, + ACTIONS(3984), 2, anon_sym_table, anon_sym_record, STATE(4464), 4, @@ -170347,7 +170657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(3982), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170379,24 +170689,388 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36736] = 7, + [37062] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3982), 1, + ACTIONS(3992), 1, anon_sym_QMARK2, - ACTIONS(3984), 1, + ACTIONS(3994), 1, anon_sym_BANG, - STATE(1733), 1, + STATE(1738), 1, + sym_comment, + STATE(1873), 1, + sym__path_suffix, + ACTIONS(1476), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1478), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [37122] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3767), 1, + anon_sym_LBRACK, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + STATE(1739), 1, + sym_comment, + STATE(4976), 1, + sym__type_annotation, + STATE(5163), 1, + sym__one_type, + STATE(5165), 1, + sym__multiple_types, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [37190] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3996), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3998), 1, + aux_sym__immediate_decimal_token5, + STATE(1740), 1, + sym_comment, + ACTIONS(1728), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1726), 34, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [37248] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1408), 1, + anon_sym_DQUOTE, + ACTIONS(1410), 1, + anon_sym_SQUOTE, + ACTIONS(1412), 1, + anon_sym_BQUOTE, + ACTIONS(1422), 1, + sym_raw_string_begin, + ACTIONS(3697), 1, + aux_sym_cmd_identifier_token1, + STATE(1741), 1, + sym_comment, + STATE(1751), 1, + aux_sym__command_list_body_repeat1, + STATE(2059), 1, + sym__val_number_decimal, + STATE(4405), 1, + sym__command_name, + STATE(4660), 1, + sym_cmd_identifier, + STATE(4661), 1, + sym_val_string, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3693), 2, + anon_sym_export, + anon_sym_in, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3695), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [37328] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(4000), 1, + anon_sym_GT2, + ACTIONS(4002), 1, + anon_sym_AT2, + STATE(1742), 1, + sym_comment, + STATE(4407), 1, + sym__all_type, + STATE(5016), 1, + sym_param_completer, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4669), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [37396] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + STATE(1743), 1, + sym_comment, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4952), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3625), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [37474] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + STATE(1744), 1, sym_comment, - STATE(1833), 1, - sym__path_suffix, - ACTIONS(1446), 4, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4843), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3625), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 37, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170414,44 +171088,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + [37552] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, anon_sym_DQUOTE, + ACTIONS(1788), 1, anon_sym_SQUOTE, + ACTIONS(1790), 1, anon_sym_BQUOTE, - [36797] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1734), 1, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + STATE(1745), 1, sym_comment, - STATE(1742), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - STATE(1866), 1, - sym_cell_path, - ACTIONS(1643), 3, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4210), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3625), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1641), 37, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170469,44 +171150,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + [37630] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, anon_sym_DQUOTE, + ACTIONS(1788), 1, anon_sym_SQUOTE, + ACTIONS(1790), 1, anon_sym_BQUOTE, - [36860] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1735), 1, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + STATE(1746), 1, sym_comment, - STATE(1742), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - STATE(1858), 1, - sym_cell_path, - ACTIONS(1432), 3, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3846), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3625), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1434), 37, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170524,104 +171212,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [36923] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3986), 1, - anon_sym_DOT, - ACTIONS(3988), 1, - aux_sym__immediate_decimal_token5, - STATE(1736), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [36982] = 11, + [37708] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(3990), 1, - anon_sym_GT2, - ACTIONS(3992), 1, + ACTIONS(4002), 1, anon_sym_AT2, - STATE(1737), 1, + ACTIONS(4004), 1, + anon_sym_GT2, + STATE(1747), 1, sym_comment, - STATE(4431), 1, + STATE(4544), 1, sym__all_type, - STATE(4807), 1, + STATE(4937), 1, sym_param_completer, - ACTIONS(3749), 2, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4712), 4, + STATE(4669), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170653,155 +171276,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [37050] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1738), 1, - sym_comment, - STATE(1812), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - STATE(1908), 1, - sym_cell_path, - ACTIONS(1681), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1679), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [37112] = 11, + [37776] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(3996), 1, - anon_sym_DOT_DOT2, - ACTIONS(4000), 1, - sym_filesize_unit, - ACTIONS(4002), 1, - sym_duration_unit, - STATE(1739), 1, - sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3998), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [37180] = 16, - ACTIONS(91), 1, + ACTIONS(1408), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(1410), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(1412), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(105), 1, + ACTIONS(1422), 1, sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3669), 1, + ACTIONS(3697), 1, aux_sym_cmd_identifier_token1, - STATE(1740), 1, + STATE(1748), 1, sym_comment, - STATE(1976), 1, + STATE(1751), 1, + aux_sym__command_list_body_repeat1, + STATE(2059), 1, sym__val_number_decimal, - STATE(3951), 1, + STATE(4570), 1, sym__command_name, - STATE(4246), 1, + STATE(4660), 1, sym_cmd_identifier, - STATE(4248), 1, + STATE(4661), 1, sym_val_string, - ACTIONS(3768), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(480), 4, + ACTIONS(3693), 2, + anon_sym_export, + anon_sym_in, + STATE(3527), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3665), 25, - anon_sym_export, + ACTIONS(3695), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170819,33 +171333,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [37258] = 8, + [37856] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, + ACTIONS(3964), 1, anon_sym_DOT2, - STATE(1741), 1, + STATE(1749), 1, sym_comment, - STATE(1812), 1, + STATE(1750), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, + STATE(1829), 1, sym_path, - STATE(1898), 1, - sym_cell_path, - ACTIONS(1643), 3, + ACTIONS(1534), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 36, + ACTIONS(1536), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170872,6 +171382,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -170880,22 +171392,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37320] = 7, + [37916] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, + ACTIONS(4006), 1, anon_sym_DOT2, - STATE(1742), 1, + STATE(1829), 1, + sym_path, + STATE(1750), 2, sym_comment, - STATE(1743), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - ACTIONS(1458), 3, + ACTIONS(1538), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1460), 37, + ACTIONS(1540), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170933,22 +171444,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37380] = 6, + [37974] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4004), 1, - anon_sym_DOT2, - STATE(1825), 1, - sym_path, - STATE(1743), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, - anon_sym_export, + ACTIONS(4015), 1, aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1526), 37, + ACTIONS(4024), 1, + anon_sym_DQUOTE, + ACTIONS(4027), 1, + anon_sym_SQUOTE, + ACTIONS(4030), 1, + anon_sym_BQUOTE, + ACTIONS(4033), 1, sym_raw_string_begin, + STATE(2059), 1, + sym__val_number_decimal, + STATE(4660), 1, + sym_cmd_identifier, + STATE(4661), 1, + sym_val_string, + STATE(4706), 1, + sym__command_name, + ACTIONS(4009), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4018), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4021), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1751), 2, + sym_comment, + aux_sym__command_list_body_repeat1, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4012), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170972,37 +171506,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + [38052] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + STATE(1752), 1, + sym_comment, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(5193), 1, + sym__command_name, + ACTIONS(3848), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [37438] = 6, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3625), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38130] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4007), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - aux_sym__immediate_decimal_token5, - STATE(1744), 1, + ACTIONS(4036), 1, + anon_sym_DOT2, + STATE(1753), 1, sym_comment, - ACTIONS(739), 6, + STATE(1809), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1862), 1, + sym_path, + STATE(1913), 1, + sym_cell_path, + ACTIONS(1657), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, + ACTIONS(1655), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171026,149 +171611,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37496] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(4011), 1, - anon_sym_GT2, - STATE(1745), 1, - sym_comment, - STATE(4402), 1, - sym__all_type, - STATE(5025), 1, - sym_param_completer, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4712), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [37564] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1746), 1, - sym_comment, - STATE(1828), 1, - aux_sym__composite_argument_body_repeat1, - STATE(1934), 1, - aux_sym__types_body_repeat1, - STATE(4482), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 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, - [37632] = 6, + [38192] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4013), 1, - anon_sym_DOT, - ACTIONS(4015), 1, - aux_sym__immediate_decimal_token5, - STATE(1747), 1, + STATE(1754), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1736), 34, + ACTIONS(741), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -171203,24 +171671,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [37690] = 6, + sym_duration_unit, + [38246] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4019), 1, - aux_sym__immediate_decimal_token5, - STATE(1748), 1, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + ACTIONS(1744), 1, + sym__unquoted_pattern, + ACTIONS(4038), 1, + anon_sym_DOT_DOT2, + ACTIONS(4042), 1, + sym_filesize_unit, + ACTIONS(4044), 1, + sym_duration_unit, + STATE(1755), 1, sym_comment, - ACTIONS(747), 7, + STATE(4715), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4040), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(860), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(960), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [38314] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1756), 1, + sym_comment, + ACTIONS(1506), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 34, + anon_sym_DOT2, + ACTIONS(1508), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171245,28 +171764,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37748] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [38368] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1749), 1, + ACTIONS(4036), 1, + anon_sym_DOT2, + STATE(1757), 1, sym_comment, - ACTIONS(1478), 4, + STATE(1809), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1862), 1, + sym_path, + STATE(1905), 1, + sym_cell_path, + ACTIONS(1667), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1480), 39, + ACTIONS(1665), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171293,8 +171825,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -171303,19 +171833,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37802] = 4, + [38430] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1750), 1, + STATE(1758), 1, sym_comment, - ACTIONS(1543), 4, + ACTIONS(1510), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1545), 39, + ACTIONS(1512), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171355,18 +171883,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37856] = 4, - ACTIONS(3), 1, + [38484] = 16, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1751), 1, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + STATE(1759), 1, sym_comment, - ACTIONS(1466), 4, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4997), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3625), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1468), 39, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171384,38 +171938,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37910] = 4, + [38562] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1752), 1, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + aux_sym__immediate_decimal_token5, + STATE(1760), 1, sym_comment, - ACTIONS(1470), 4, + ACTIONS(747), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1472), 39, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(749), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171440,59 +171986,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + 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, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37964] = 16, - ACTIONS(103), 1, + [38620] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1753), 1, + STATE(1761), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4950), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(1514), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1516), 39, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171510,24 +172026,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38042] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [38674] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1754), 1, + STATE(1762), 1, sym_comment, - ACTIONS(1514), 4, + ACTIONS(1518), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1516), 39, + ACTIONS(1520), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171567,44 +172097,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [38096] = 16, - ACTIONS(103), 1, + [38728] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1755), 1, + ACTIONS(4036), 1, + anon_sym_DOT2, + STATE(1763), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5195), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, + STATE(1809), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1862), 1, + sym_path, + STATE(1887), 1, + sym_cell_path, + ACTIONS(1460), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1462), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171622,14 +172134,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38174] = 16, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [38790] = 16, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -171640,179 +172162,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2839), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, - STATE(1756), 1, + STATE(1764), 1, sym_comment, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5197), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [38252] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1757), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38306] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(4021), 1, - anon_sym_GT2, - STATE(1758), 1, - sym_comment, - STATE(4541), 1, - sym__all_type, - STATE(4897), 1, - sym_param_completer, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4712), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [38374] = 4, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4131), 1, + sym__command_name, + ACTIONS(3848), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3850), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3625), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38868] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1759), 1, + ACTIONS(4050), 1, + anon_sym_DOT, + ACTIONS(4052), 1, + aux_sym__immediate_decimal_token5, + STATE(1765), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(1762), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 35, + ACTIONS(1760), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -171847,13 +172265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38428] = 4, + [38926] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1760), 1, + ACTIONS(3968), 1, + aux_sym__immediate_decimal_token5, + STATE(1766), 1, sym_comment, - ACTIONS(849), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -171862,11 +172281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(851), 35, + ACTIONS(749), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -171898,14 +172316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [38482] = 5, + [38982] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3988), 1, - aux_sym__immediate_decimal_token5, - STATE(1761), 1, + STATE(1767), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(878), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -171914,10 +172330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 34, + ACTIONS(880), 35, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -171949,12 +172366,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [38538] = 5, + [39036] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4023), 1, - aux_sym__immediate_decimal_token5, - STATE(1762), 1, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(4054), 1, + anon_sym_GT2, + STATE(1768), 1, + sym_comment, + STATE(4435), 1, + sym__all_type, + STATE(5194), 1, + sym_param_completer, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4669), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [39104] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1769), 1, sym_comment, ACTIONS(771), 8, anon_sym_GT2, @@ -171965,10 +172437,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 34, + ACTIONS(773), 35, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -172000,46 +172473,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [38594] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, + [39158] = 16, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(3784), 1, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - STATE(1763), 1, + STATE(1770), 1, sym_comment, - STATE(1764), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, + STATE(1972), 1, sym__val_number_decimal, - STATE(4568), 1, + STATE(3956), 1, sym__command_name, - STATE(4710), 1, + STATE(4250), 1, sym_cmd_identifier, - STATE(4711), 1, + STATE(4251), 1, sym_val_string, - ACTIONS(3649), 2, + ACTIONS(3848), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, + STATE(493), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(3667), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172057,51 +172528,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38674] = 16, - ACTIONS(3), 1, + [39236] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4031), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4040), 1, + ACTIONS(1786), 1, anon_sym_DQUOTE, - ACTIONS(4043), 1, + ACTIONS(1788), 1, anon_sym_SQUOTE, - ACTIONS(4046), 1, + ACTIONS(1790), 1, anon_sym_BQUOTE, - ACTIONS(4049), 1, + ACTIONS(1792), 1, sym_raw_string_begin, - STATE(2107), 1, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + STATE(1771), 1, + sym_comment, + STATE(2016), 1, sym__val_number_decimal, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, + STATE(3512), 1, sym_val_string, - STATE(4744), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(5028), 1, sym__command_name, - ACTIONS(4025), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(4034), 2, + ACTIONS(3848), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4037), 2, + ACTIONS(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(1764), 2, - sym_comment, - aux_sym__command_list_body_repeat1, - STATE(3505), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4028), 23, + ACTIONS(3625), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172119,34 +172590,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38752] = 6, + [39314] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4052), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4054), 1, + ACTIONS(4056), 1, aux_sym__immediate_decimal_token5, - STATE(1765), 1, + STATE(1772), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(771), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1726), 34, + ACTIONS(773), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -172177,393 +172647,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [38810] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1766), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4836), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [38888] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1767), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4171), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [38966] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1768), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3845), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39044] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - STATE(1769), 1, - sym_comment, - STATE(4849), 1, - sym__type_annotation, - STATE(5087), 1, - sym__one_type, - STATE(5102), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [39112] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - STATE(1764), 1, - aux_sym__command_list_body_repeat1, - STATE(1770), 1, - sym_comment, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4374), 1, - sym__command_name, - STATE(4710), 1, - sym_cmd_identifier, - STATE(4711), 1, - sym_val_string, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39192] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1771), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4092), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39270] = 7, + sym_duration_unit, + [39370] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4056), 1, - anon_sym_QMARK2, ACTIONS(4058), 1, - anon_sym_BANG, - STATE(1772), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4060), 1, + aux_sym__immediate_decimal_token5, + STATE(1773), 1, sym_comment, - STATE(1867), 1, - sym__path_suffix, - ACTIONS(1446), 4, + ACTIONS(739), 7, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 36, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 34, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172587,99 +172690,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, + 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, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39330] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1773), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5023), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39408] = 8, + [39428] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, STATE(1774), 1, sym_comment, - STATE(1812), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - STATE(1896), 1, - sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(1522), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 36, + anon_sym_DOT2, + ACTIONS(1524), 39, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172706,6 +172738,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -172714,7 +172748,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39470] = 16, + anon_sym_QMARK2, + anon_sym_BANG, + [39482] = 16, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -172725,32 +172761,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, STATE(1775), 1, sym_comment, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(5033), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(5044), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3848), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3850), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3625), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -172776,17 +172812,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39548] = 4, + [39560] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1776), 1, sym_comment, - ACTIONS(1474), 4, + ACTIONS(1526), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1476), 39, + ACTIONS(1528), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -172826,56 +172862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [39602] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1777), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [39655] = 16, + [39614] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -172886,130 +172873,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, - STATE(1778), 1, + STATE(1777), 1, sym_comment, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(4084), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39732] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1779), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, + STATE(3537), 1, sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4959), 1, + STATE(4292), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3625), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39809] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1780), 1, - sym_comment, - ACTIONS(1478), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1480), 38, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173033,262 +172923,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [39862] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1781), 1, - sym_comment, - ACTIONS(4060), 42, - 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_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [39913] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1782), 1, - sym_comment, - ACTIONS(4062), 42, - 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_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [39964] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - STATE(1783), 1, - sym_comment, - STATE(1784), 1, - aux_sym__types_body_repeat3, - STATE(4531), 1, - sym__one_type, - STATE(4821), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [40029] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4070), 1, - anon_sym_list, - ACTIONS(4073), 1, - anon_sym_oneof, - STATE(4701), 1, - sym__one_type, - STATE(4821), 1, - sym__type_annotation, - ACTIONS(4067), 2, - anon_sym_table, - anon_sym_record, - STATE(1784), 2, - sym_comment, - aux_sym__types_body_repeat3, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4064), 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, - [40092] = 16, + [39691] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1785), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4138), 1, - sym__command_name, - ACTIONS(3637), 2, + STATE(1778), 1, + sym_comment, + ACTIONS(1522), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, + anon_sym_DOT2, + ACTIONS(1524), 38, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173312,17 +172959,128 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40169] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [39744] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1786), 1, + STATE(1779), 1, + sym_comment, + ACTIONS(771), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(773), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [39797] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1780), 1, + sym_comment, + ACTIONS(878), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(880), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [39850] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1781), 1, sym_comment, - ACTIONS(1543), 4, + ACTIONS(1526), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1545), 38, + ACTIONS(1528), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -173361,17 +173119,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [40222] = 4, + [39903] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1787), 1, + STATE(1782), 1, sym_comment, - ACTIONS(1466), 4, + ACTIONS(1506), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1468), 38, + ACTIONS(1508), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -173410,154 +173168,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [40275] = 10, + [39956] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(4076), 1, - sym__newline, - STATE(1788), 1, - sym_comment, - STATE(1970), 1, - aux_sym__repeat_newline, - STATE(4401), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [40340] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(4076), 1, - sym__newline, - STATE(1789), 1, - sym_comment, - STATE(1791), 1, - aux_sym__repeat_newline, - STATE(4408), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [40405] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - STATE(1790), 1, + ACTIONS(4062), 1, + anon_sym_QMARK2, + STATE(1783), 1, sym_comment, - STATE(1976), 1, - sym__val_number_decimal, - STATE(3942), 1, - sym__command_name, - STATE(4246), 1, - sym_cmd_identifier, - STATE(4248), 1, - sym_val_string, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, + ACTIONS(1466), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3667), 23, + anon_sym_DOT2, + ACTIONS(1468), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173581,30 +173205,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40482] = 10, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [40011] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(4076), 1, + ACTIONS(4064), 1, sym__newline, - STATE(1791), 1, + STATE(1784), 1, sym_comment, - STATE(1970), 1, + STATE(2083), 1, aux_sym__repeat_newline, - STATE(4552), 1, + STATE(4459), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173636,17 +173273,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40547] = 3, + [40076] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1792), 1, - sym_comment, - ACTIONS(4078), 42, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + ACTIONS(4064), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1785), 1, + sym_comment, + STATE(1824), 1, + aux_sym__repeat_newline, + STATE(4486), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173676,20 +173326,14 @@ 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, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [40598] = 3, + [40141] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1793), 1, + STATE(1786), 1, sym_comment, - ACTIONS(4080), 42, + ACTIONS(4066), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -173732,30 +173376,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [40649] = 10, + [40192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, - anon_sym_list, - ACTIONS(4088), 1, - anon_sym_oneof, - STATE(1794), 1, + STATE(1787), 1, sym_comment, - STATE(1970), 1, - aux_sym__repeat_newline, - STATE(3026), 1, - sym__type_annotation, - ACTIONS(4084), 2, - anon_sym_table, - anon_sym_record, - STATE(3131), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4082), 31, + ACTIONS(4068), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173785,22 +173416,27 @@ 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, - [40714] = 5, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [40243] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4090), 1, - anon_sym_QMARK2, - STATE(1795), 1, + STATE(1788), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1510), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1440), 37, + ACTIONS(1512), 38, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173827,8 +173463,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -173837,197 +173471,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [40769] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1796), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [40822] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - STATE(1784), 1, - aux_sym__types_body_repeat3, - STATE(1797), 1, - sym_comment, - STATE(4559), 1, - sym__one_type, - STATE(4821), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [40887] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1798), 1, - sym_comment, - ACTIONS(849), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(851), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [40940] = 16, + anon_sym_QMARK2, + anon_sym_BANG, + [40296] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1799), 1, + STATE(1789), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5063), 1, - sym__command_name, - ACTIONS(3637), 2, + ACTIONS(1514), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, + anon_sym_DOT2, + ACTIONS(1516), 38, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174051,17 +173509,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41017] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [40349] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1790), 1, sym_comment, - ACTIONS(1470), 4, + ACTIONS(1518), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1472), 38, + ACTIONS(1520), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -174100,14 +173571,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [41070] = 5, + [40402] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4015), 1, + ACTIONS(4052), 1, aux_sym__immediate_decimal_token5, - STATE(1801), 1, + STATE(1791), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1762), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174115,7 +173586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 34, + ACTIONS(1760), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -174150,63 +173621,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41125] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1802), 1, - sym_comment, - ACTIONS(1474), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1476), 38, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41178] = 5, + [40457] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4092), 1, + ACTIONS(4070), 1, aux_sym__immediate_decimal_token5, - STATE(1803), 1, + STATE(1792), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1812), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174214,7 +173636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 34, + ACTIONS(1810), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -174249,14 +173671,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41233] = 6, + [40512] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4072), 1, + anon_sym_DOT2, + STATE(1862), 1, + sym_path, + STATE(1793), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1538), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1540), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [40569] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4094), 1, + ACTIONS(4075), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4096), 1, + ACTIONS(4077), 1, aux_sym__immediate_decimal_token5, - STATE(1804), 1, + STATE(1794), 1, sym_comment, ACTIONS(1728), 7, anon_sym_GT2, @@ -174300,16 +173773,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41290] = 6, + [40626] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4098), 1, + ACTIONS(4079), 1, anon_sym_DOT, - ACTIONS(4100), 1, + ACTIONS(4081), 1, aux_sym__immediate_decimal_token5, - STATE(1805), 1, + STATE(1795), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1762), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -174317,7 +173790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 33, + ACTIONS(1760), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -174351,19 +173824,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41347] = 4, + [40683] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1806), 1, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + STATE(1796), 1, sym_comment, - ACTIONS(1514), 4, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(3871), 1, + sym__command_name, + ACTIONS(3625), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1516), 38, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174387,25 +173885,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + [40760] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + STATE(1797), 1, + sym_comment, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4961), 1, + sym__command_name, + ACTIONS(3625), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41400] = 3, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [40837] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1807), 1, + STATE(1798), 1, sym_comment, - ACTIONS(4102), 42, + ACTIONS(4083), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -174448,12 +173994,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [41451] = 3, + [40888] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1808), 1, + ACTIONS(4064), 1, + sym__newline, + ACTIONS(4089), 1, + anon_sym_list, + ACTIONS(4091), 1, + anon_sym_oneof, + STATE(1799), 1, + sym_comment, + STATE(1815), 1, + aux_sym__repeat_newline, + STATE(3075), 1, + sym__type_annotation, + ACTIONS(4087), 2, + anon_sym_table, + anon_sym_record, + STATE(3144), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4085), 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, + [40953] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1800), 1, sym_comment, - ACTIONS(4104), 42, + ACTIONS(4093), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -174496,44 +174097,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [41502] = 16, + [41004] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1809), 1, + STATE(1801), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3871), 1, - sym__command_name, - ACTIONS(3637), 2, + ACTIONS(4095), 42, + 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_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [41055] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1802), 1, + sym_comment, + ACTIONS(4097), 42, + 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_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [41106] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + STATE(1803), 1, + sym_comment, + STATE(1804), 1, + aux_sym__types_body_repeat3, + STATE(4530), 1, + sym__one_type, + STATE(4825), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [41171] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4105), 1, + anon_sym_list, + ACTIONS(4108), 1, + anon_sym_oneof, + STATE(4649), 1, + sym__one_type, + STATE(4825), 1, + sym__type_annotation, + ACTIONS(4102), 2, + anon_sym_table, + anon_sym_record, + STATE(1804), 2, + sym_comment, + aux_sym__types_body_repeat3, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4099), 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, + [41234] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4062), 1, + anon_sym_BANG, + STATE(1805), 1, + sym_comment, + ACTIONS(1466), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, + anon_sym_DOT2, + ACTIONS(1468), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174557,30 +174339,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41579] = 10, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [41289] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(4088), 1, + ACTIONS(3775), 1, anon_sym_oneof, - STATE(1810), 1, + STATE(1804), 1, + aux_sym__types_body_repeat3, + STATE(1806), 1, sym_comment, - STATE(1814), 1, - aux_sym__repeat_newline, - STATE(3053), 1, + STATE(4561), 1, + sym__one_type, + STATE(4825), 1, sym__type_annotation, - ACTIONS(4084), 2, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(3131), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4082), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174612,30 +174407,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41644] = 10, + [41354] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3775), 1, anon_sym_oneof, - ACTIONS(4076), 1, + ACTIONS(4064), 1, sym__newline, - STATE(1788), 1, + STATE(1784), 1, aux_sym__repeat_newline, - STATE(1811), 1, + STATE(1807), 1, sym_comment, - STATE(4603), 1, + STATE(4411), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4281), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174667,22 +174462,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41709] = 7, + [41419] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1812), 1, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + STATE(1808), 1, sym_comment, - STATE(1813), 1, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4092), 1, + sym__command_name, + ACTIONS(3625), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [41496] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4036), 1, + anon_sym_DOT2, + STATE(1793), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, + STATE(1809), 1, + sym_comment, + STATE(1862), 1, sym_path, - ACTIONS(1458), 3, + ACTIONS(1534), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1460), 36, + ACTIONS(1536), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -174719,23 +174575,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [41768] = 6, + [41555] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4106), 1, - anon_sym_DOT2, - STATE(1857), 1, - sym_path, - STATE(1813), 2, + ACTIONS(4048), 1, + aux_sym__immediate_decimal_token5, + STATE(1810), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + ACTIONS(747), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1526), 36, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(749), 35, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174759,140 +174614,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + 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, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [41825] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, - anon_sym_list, - ACTIONS(4088), 1, - anon_sym_oneof, - STATE(1814), 1, - sym_comment, - STATE(1970), 1, - aux_sym__repeat_newline, - STATE(3054), 1, - sym__type_annotation, - ACTIONS(4084), 2, - anon_sym_table, - anon_sym_record, - STATE(3131), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4082), 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, - [41890] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, - anon_sym_list, - ACTIONS(4088), 1, - anon_sym_oneof, - STATE(1794), 1, - aux_sym__repeat_newline, - STATE(1815), 1, - sym_comment, - STATE(2916), 1, - sym__type_annotation, - ACTIONS(4084), 2, - anon_sym_table, - anon_sym_record, - STATE(3131), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4082), 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, - [41955] = 5, + [41610] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4090), 1, - anon_sym_BANG, - STATE(1816), 1, + ACTIONS(4111), 1, + aux_sym__immediate_decimal_token5, + STATE(1811), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(771), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 37, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(773), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -174917,57 +174664,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + 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, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [42010] = 16, + [41665] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3671), 1, aux_sym_cmd_identifier_token1, - STATE(1817), 1, + STATE(1812), 1, sym_comment, - STATE(2099), 1, + STATE(1972), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(3949), 1, + sym__command_name, + STATE(4250), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(4251), 1, sym_val_string, - STATE(4967), 1, - sym__command_name, ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + ACTIONS(3667), 2, + anon_sym_export, + anon_sym_in, + STATE(493), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3669), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174991,7 +174736,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42087] = 16, + [41742] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -175002,33 +174747,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, - STATE(1818), 1, + STATE(1813), 1, sym_comment, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(4279), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(5175), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3625), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175052,7 +174797,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42164] = 16, + [41819] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -175063,33 +174808,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, - STATE(1819), 1, + STATE(1814), 1, sym_comment, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(4273), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4287), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3625), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175113,7 +174858,172 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42241] = 16, + [41896] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4064), 1, + sym__newline, + ACTIONS(4089), 1, + anon_sym_list, + ACTIONS(4091), 1, + anon_sym_oneof, + STATE(1815), 1, + sym_comment, + STATE(2083), 1, + aux_sym__repeat_newline, + STATE(3006), 1, + sym__type_annotation, + ACTIONS(4087), 2, + anon_sym_table, + anon_sym_record, + STATE(3144), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4085), 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, + [41961] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4064), 1, + sym__newline, + ACTIONS(4089), 1, + anon_sym_list, + ACTIONS(4091), 1, + anon_sym_oneof, + STATE(1816), 1, + sym_comment, + STATE(1817), 1, + aux_sym__repeat_newline, + STATE(2936), 1, + sym__type_annotation, + ACTIONS(4087), 2, + anon_sym_table, + anon_sym_record, + STATE(3144), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4085), 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, + [42026] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4064), 1, + sym__newline, + ACTIONS(4089), 1, + anon_sym_list, + ACTIONS(4091), 1, + anon_sym_oneof, + STATE(1817), 1, + sym_comment, + STATE(2083), 1, + aux_sym__repeat_newline, + STATE(2960), 1, + sym__type_annotation, + ACTIONS(4087), 2, + anon_sym_table, + anon_sym_record, + STATE(3144), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4085), 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, + [42091] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -175124,33 +175034,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, - STATE(1820), 1, + STATE(1818), 1, sym_comment, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(5036), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4267), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3625), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175174,7 +175084,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42318] = 16, + [42168] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -175185,33 +175095,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, - STATE(1821), 1, + STATE(1819), 1, sym_comment, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(5083), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(5160), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3625), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175235,7 +175145,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42395] = 16, + [42245] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -175246,33 +175156,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3629), 1, aux_sym_cmd_identifier_token1, - STATE(1822), 1, + STATE(1820), 1, sym_comment, - STATE(2099), 1, + STATE(2016), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3512), 1, sym_val_string, - STATE(5194), 1, + STATE(3537), 1, + sym_cmd_identifier, + STATE(5090), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3625), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175296,118 +175206,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42472] = 5, + [42322] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4009), 1, - aux_sym__immediate_decimal_token5, - STATE(1823), 1, - sym_comment, - ACTIONS(739), 6, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - sym_filesize_unit, + ACTIONS(1786), 1, anon_sym_DQUOTE, + ACTIONS(1788), 1, anon_sym_SQUOTE, + ACTIONS(1790), 1, anon_sym_BQUOTE, - [42527] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4109), 1, - aux_sym__immediate_decimal_token5, - STATE(1824), 1, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + STATE(1821), 1, sym_comment, - ACTIONS(771), 6, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4823), 1, + sym__command_name, + ACTIONS(3625), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(3637), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [42582] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1825), 1, - sym_comment, - ACTIONS(1462), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 37, - sym_raw_string_begin, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175431,194 +175267,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [42634] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(4111), 1, - anon_sym_DOT_DOT2, - STATE(1826), 1, - sym_comment, - ACTIONS(4113), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1974), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [42694] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(4115), 1, - anon_sym_DOT_DOT2, - STATE(1827), 1, - sym_comment, - ACTIONS(4117), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1964), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [42754] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1828), 1, - sym_comment, - STATE(1838), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4448), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 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, - [42816] = 4, + [42399] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1829), 1, + STATE(1822), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1726), 34, + ACTIONS(741), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -175649,80 +175315,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42868] = 8, + sym_duration_unit, + [42452] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(876), 1, - anon_sym_DOT_DOT2, - ACTIONS(4119), 1, - sym_filesize_unit, - ACTIONS(4121), 1, - sym_duration_unit, - STATE(1830), 1, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(3629), 1, + aux_sym_cmd_identifier_token1, + STATE(1823), 1, sym_comment, - ACTIONS(878), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 31, + STATE(2016), 1, + sym__val_number_decimal, + STATE(3512), 1, + sym_val_string, + STATE(3537), 1, + sym_cmd_identifier, + STATE(4798), 1, + sym__command_name, + ACTIONS(3625), 2, + anon_sym_export, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [42928] = 9, + ACTIONS(3637), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [42529] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, + ACTIONS(3773), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(3775), 1, anon_sym_oneof, - STATE(1831), 1, + ACTIONS(4064), 1, + sym__newline, + STATE(1824), 1, sym_comment, - STATE(1838), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4484), 1, - sym__all_type, - ACTIONS(3968), 2, + STATE(2083), 1, + aux_sym__repeat_newline, + STATE(4555), 1, + sym__type_annotation, + ACTIONS(3771), 2, anon_sym_table, anon_sym_record, - STATE(4464), 4, + STATE(4150), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(3769), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -175754,66 +175432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [42990] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_QMARK2, - STATE(1832), 1, - sym_comment, - ACTIONS(1438), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43044] = 4, + [42594] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1833), 1, + STATE(1825), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(739), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 37, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -175835,126 +175466,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43096] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1834), 1, - sym_comment, - ACTIONS(1804), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43148] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1835), 1, - sym_comment, - ACTIONS(1872), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43200] = 5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [42646] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4100), 1, + ACTIONS(4113), 1, aux_sym__immediate_decimal_token5, - STATE(1836), 1, + STATE(1826), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1812), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -175962,7 +175495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 33, + ACTIONS(1810), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -175996,21 +175529,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43254] = 5, + [42700] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_BANG, - STATE(1837), 1, + STATE(1827), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1530), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1440), 36, + ACTIONS(1532), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176037,6 +175567,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -176045,27 +175577,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43308] = 8, + [42752] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4131), 1, + ACTIONS(3986), 1, anon_sym_list, - ACTIONS(4134), 1, + ACTIONS(3988), 1, anon_sym_oneof, - STATE(4736), 1, + STATE(1828), 1, + sym_comment, + STATE(1839), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4495), 1, sym__all_type, - ACTIONS(4128), 2, + ACTIONS(3984), 2, anon_sym_table, anon_sym_record, - STATE(1838), 2, - sym_comment, - aux_sym__composite_argument_body_repeat1, STATE(4464), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4125), 31, + ACTIONS(3982), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176097,25 +175630,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43368] = 5, + [42814] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4137), 1, - aux_sym__immediate_decimal_token5, - STATE(1839), 1, + STATE(1829), 1, + sym_comment, + ACTIONS(1549), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1551), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [42866] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + ACTIONS(4115), 1, + anon_sym_DOT_DOT2, + STATE(1830), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(4117), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1938), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 33, + ACTIONS(1936), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176134,7 +175721,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -176144,21 +175730,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43422] = 4, + [42926] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1840), 1, + STATE(1831), 1, sym_comment, - ACTIONS(747), 6, + ACTIONS(1545), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 35, + anon_sym_DOT2, + ACTIONS(1547), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176183,38 +175765,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43474] = 9, + [42978] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + ACTIONS(4119), 1, + anon_sym_DOT_DOT2, + STATE(1832), 1, + sym_comment, + ACTIONS(4121), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1948), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1946), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [43038] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT2, - ACTIONS(4143), 1, + ACTIONS(4127), 1, sym_filesize_unit, - ACTIONS(4145), 1, + ACTIONS(4129), 1, sym_duration_unit, - ACTIONS(4147), 1, + ACTIONS(4131), 1, sym__unquoted_pattern, - STATE(1841), 1, + STATE(1833), 1, sym_comment, - ACTIONS(4141), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 3, + ACTIONS(860), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 32, + ACTIONS(960), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176247,20 +175883,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43536] = 4, + [43100] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1842), 1, + ACTIONS(4133), 1, + anon_sym_BANG, + STATE(1834), 1, sym_comment, - ACTIONS(771), 6, + ACTIONS(1466), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, + anon_sym_DOT2, + ACTIONS(1468), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176284,30 +175921,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43588] = 4, + [43154] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1843), 1, + STATE(1835), 1, sym_comment, - ACTIONS(849), 6, + ACTIONS(878), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT_DOT2, sym_duration_unit, sym__unquoted_pattern, - ACTIONS(851), 35, + ACTIONS(880), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176343,17 +175980,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43640] = 4, + [43206] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1844), 1, + STATE(1836), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(771), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 37, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(773), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176378,30 +176017,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + 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, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43692] = 4, + [43258] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1845), 1, + ACTIONS(4133), 1, + anon_sym_QMARK2, + STATE(1837), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(1466), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1476), 37, + anon_sym_DOT2, + ACTIONS(1468), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176428,8 +176069,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -176438,18 +176077,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43743] = 8, + [43312] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, + ACTIONS(3986), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(3988), 1, anon_sym_oneof, - STATE(1846), 1, + STATE(1838), 1, sym_comment, - STATE(4128), 1, + STATE(1839), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4451), 1, sym__all_type, - ACTIONS(3968), 2, + ACTIONS(3984), 2, anon_sym_table, anon_sym_record, STATE(4464), 4, @@ -176457,7 +176098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(3982), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176489,10 +176130,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43802] = 4, + [43374] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1847), 1, + ACTIONS(4141), 1, + anon_sym_list, + ACTIONS(4144), 1, + anon_sym_oneof, + STATE(4732), 1, + sym__all_type, + ACTIONS(4138), 2, + anon_sym_table, + anon_sym_record, + STATE(1839), 2, + sym_comment, + aux_sym__composite_argument_body_repeat1, + STATE(4464), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4135), 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, + [43434] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1840), 1, sym_comment, ACTIONS(1728), 7, anon_sym_GT2, @@ -176502,10 +176195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 33, + ACTIONS(1726), 34, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176536,23 +176230,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43853] = 4, + [43486] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1848), 1, + ACTIONS(868), 1, + anon_sym_DOT_DOT2, + ACTIONS(4147), 1, + sym_filesize_unit, + ACTIONS(4149), 1, + sym_duration_unit, + STATE(1841), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(870), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(860), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 33, + ACTIONS(960), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176571,7 +176273,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -176581,14 +176282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43904] = 4, + [43546] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1849), 1, + STATE(1842), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(1812), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -176596,10 +176295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1870), 33, + ACTIONS(1810), 34, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176630,30 +176330,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43955] = 8, + [43598] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(4149), 1, - anon_sym_DOT_DOT2, - STATE(1850), 1, + STATE(1843), 1, sym_comment, - ACTIONS(4151), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(1856), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 30, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1854), 34, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -176672,6 +176366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -176681,243 +176376,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44014] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1851), 1, - sym_comment, - STATE(4770), 1, - sym__type_annotation, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4731), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 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, - [44073] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1852), 1, - sym_comment, - ACTIONS(2094), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2092), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [44124] = 28, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4159), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4167), 1, - anon_sym_DQUOTE, - ACTIONS(4169), 1, - anon_sym_SQUOTE, - ACTIONS(4171), 1, - anon_sym_BQUOTE, - ACTIONS(4173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, - aux_sym_unquoted_token1, - ACTIONS(4179), 1, - sym_raw_string_begin, - STATE(1853), 1, - sym_comment, - STATE(1854), 1, - sym__inter_single_quotes, - STATE(1856), 1, - sym__inter_double_quotes, - STATE(3750), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(3026), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4163), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5032), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4155), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1869), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1445), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [44223] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1854), 1, - sym_comment, - ACTIONS(2256), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2254), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [44274] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [43650] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(4181), 1, - anon_sym_DOT_DOT2, - STATE(1855), 1, + ACTIONS(4081), 1, + aux_sym__immediate_decimal_token5, + STATE(1844), 1, sym_comment, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(1762), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 30, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1760), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176939,6 +176415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -176948,16 +176425,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44333] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [43704] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1856), 1, + STATE(1845), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(2369), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 37, + ACTIONS(2367), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176995,63 +176474,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44384] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1857), 1, - sym_comment, - ACTIONS(1462), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [44435] = 4, + [43755] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1858), 1, + STATE(1846), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(1667), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1558), 37, + ACTIONS(1665), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177089,65 +176521,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44486] = 6, - ACTIONS(103), 1, + [43806] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4185), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4187), 1, - aux_sym__immediate_decimal_token5, - STATE(1859), 1, + ACTIONS(3986), 1, + anon_sym_list, + ACTIONS(3988), 1, + anon_sym_oneof, + STATE(1847), 1, sym_comment, - ACTIONS(747), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [44541] = 4, + STATE(4648), 1, + sym__type_annotation, + ACTIONS(3984), 2, + anon_sym_table, + anon_sym_record, + STATE(4623), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3982), 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, + [43865] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1860), 1, + STATE(1848), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(2375), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 37, + ACTIONS(2373), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177185,63 +176619,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44592] = 4, + [43916] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1861), 1, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + ACTIONS(4151), 1, + anon_sym_DOT_DOT2, + STATE(1849), 1, sym_comment, - ACTIONS(2264), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4153), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1948), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1946), 30, anon_sym_in, - ACTIONS(2262), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [43975] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4155), 1, + anon_sym_DOT, + ACTIONS(4157), 1, + aux_sym__immediate_decimal_token5, + STATE(1850), 1, + sym_comment, + ACTIONS(1762), 6, + anon_sym_GT2, anon_sym_STAR2, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [44643] = 4, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1760), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [44030] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1862), 1, + STATE(1851), 1, sym_comment, - ACTIONS(1643), 3, + ACTIONS(2501), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 37, + ACTIONS(2499), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177279,65 +176766,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44694] = 8, + [44081] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - STATE(1863), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + ACTIONS(4159), 1, + anon_sym_DOT_DOT2, + STATE(1852), 1, sym_comment, - STATE(4972), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4281), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 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, - [44753] = 6, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1938), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1936), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [44140] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4189), 1, + ACTIONS(4163), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4191), 1, + ACTIONS(4165), 1, aux_sym__immediate_decimal_token5, - STATE(1864), 1, + STATE(1853), 1, sym_comment, ACTIONS(1728), 6, anon_sym_GT2, @@ -177379,16 +176866,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44808] = 4, + [44195] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1865), 1, + STATE(1854), 1, sym_comment, - ACTIONS(2274), 3, + ACTIONS(1510), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 37, + ACTIONS(1512), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177426,16 +176913,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44859] = 4, + [44246] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1866), 1, + STATE(1855), 1, sym_comment, - ACTIONS(1824), 3, + ACTIONS(1522), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1822), 37, + ACTIONS(1524), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177473,19 +176960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44910] = 4, + [44297] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1867), 1, + STATE(1856), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(1506), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 36, + ACTIONS(1508), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177512,6 +176997,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -177520,19 +177007,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44961] = 4, + [44348] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1868), 1, + ACTIONS(3773), 1, + anon_sym_list, + ACTIONS(3775), 1, + anon_sym_oneof, + STATE(1857), 1, + sym_comment, + STATE(4982), 1, + sym__type_annotation, + ACTIONS(3771), 2, + anon_sym_table, + anon_sym_record, + STATE(4150), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3769), 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, + [44407] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1858), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(1514), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 36, + ACTIONS(1516), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177559,6 +177095,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -177567,16 +177105,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45012] = 4, + [44458] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1869), 1, + STATE(1859), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(1518), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 37, + ACTIONS(1520), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177614,17 +177152,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45063] = 4, + [44509] = 28, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2744), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2780), 1, + anon_sym_COLON2, + ACTIONS(4167), 1, + anon_sym_null, + ACTIONS(4171), 1, + anon_sym_LPAREN, + ACTIONS(4173), 1, + anon_sym_DOLLAR, + ACTIONS(4175), 1, + anon_sym_DOT_DOT, + ACTIONS(4179), 1, + sym_val_date, + ACTIONS(4181), 1, + anon_sym_DQUOTE, + ACTIONS(4183), 1, + anon_sym_SQUOTE, + ACTIONS(4185), 1, + anon_sym_BQUOTE, + ACTIONS(4187), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4189), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4191), 1, + aux_sym_unquoted_token1, + ACTIONS(4193), 1, + sym_raw_string_begin, + STATE(1845), 1, + sym__inter_single_quotes, + STATE(1860), 1, + sym_comment, + STATE(1880), 1, + sym__inter_double_quotes, + STATE(3751), 1, + sym__val_number_decimal, + STATE(4841), 1, + sym_val_bool, + ACTIONS(3026), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3036), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3038), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4177), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5035), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4169), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1855), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1442), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [44608] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4195), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4197), 1, + aux_sym__immediate_decimal_token5, + STATE(1861), 1, + sym_comment, + ACTIONS(739), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(741), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [44663] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1870), 1, + STATE(1862), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(1549), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1545), 37, + anon_sym_DOT2, + ACTIONS(1551), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177651,8 +177311,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -177661,16 +177319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45114] = 4, + [44714] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1871), 1, + STATE(1863), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(2379), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 37, + ACTIONS(2377), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177708,16 +177366,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45165] = 4, + [44765] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1872), 1, + ACTIONS(3986), 1, + anon_sym_list, + ACTIONS(3988), 1, + anon_sym_oneof, + STATE(1864), 1, + sym_comment, + STATE(4128), 1, + sym__all_type, + ACTIONS(3984), 2, + anon_sym_table, + anon_sym_record, + STATE(4464), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3982), 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, + [44824] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1865), 1, sym_comment, - ACTIONS(2086), 3, + ACTIONS(2505), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 37, + ACTIONS(2503), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177755,16 +177464,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45216] = 4, + [44875] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1873), 1, + STATE(1866), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(1818), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 37, + ACTIONS(1816), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177802,16 +177511,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45267] = 4, + [44926] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1874), 1, + STATE(1867), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(2104), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 37, + ACTIONS(2102), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177849,66 +177558,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45318] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4119), 1, - sym_filesize_unit, - ACTIONS(4121), 1, - sym_duration_unit, - ACTIONS(4193), 1, - anon_sym_DOT_DOT2, - STATE(1875), 1, - sym_comment, - ACTIONS(4195), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [45377] = 4, + [44977] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4197), 1, + ACTIONS(4199), 1, sym__entry_separator, - STATE(1876), 2, + STATE(1868), 2, sym_comment, aux_sym__types_body_repeat2, - ACTIONS(3710), 38, + ACTIONS(3735), 38, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_any, @@ -177947,67 +177605,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_GT2, anon_sym_oneof, - [45428] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1877), 1, - sym_comment, - STATE(4566), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4464), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 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, - [45487] = 6, + [45028] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4200), 1, - anon_sym_DOT, ACTIONS(4202), 1, + anon_sym_DOT, + ACTIONS(4204), 1, aux_sym__immediate_decimal_token5, - STATE(1878), 1, + STATE(1869), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(747), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -178016,7 +177623,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(741), 30, + ACTIONS(749), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -178047,27 +177654,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [45542] = 6, + [45083] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4204), 1, - anon_sym_DOT, + STATE(1870), 1, + sym_comment, + ACTIONS(1526), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1528), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [45134] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1871), 1, + sym_comment, + ACTIONS(2112), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2110), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [45185] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4147), 1, + sym_filesize_unit, + ACTIONS(4149), 1, + sym_duration_unit, ACTIONS(4206), 1, - aux_sym__immediate_decimal_token5, - STATE(1879), 1, + anon_sym_DOT_DOT2, + STATE(1872), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(4208), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(860), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 32, + ACTIONS(960), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -178086,7 +177790,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -178096,17 +177799,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45597] = 4, + [45244] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1880), 1, + STATE(1873), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(1545), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 37, + anon_sym_DOT2, + ACTIONS(1547), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178133,8 +177838,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -178143,18 +177846,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45648] = 4, + [45295] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1881), 1, + STATE(1874), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(1568), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 36, + ACTIONS(1570), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178181,6 +177883,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -178189,24 +177893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45698] = 7, + [45346] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4208), 1, - anon_sym_QMARK2, - ACTIONS(4210), 1, - anon_sym_BANG, - STATE(1882), 1, + STATE(1875), 1, sym_comment, - STATE(2111), 1, - sym__path_suffix, - ACTIONS(1446), 4, + ACTIONS(1530), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1448), 32, + ACTIONS(1532), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178230,7 +177929,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178238,24 +177940,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45754] = 8, + [45397] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1883), 1, + STATE(1876), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2152), 1, - sym_cell_path, - ACTIONS(1884), 3, + ACTIONS(1856), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1854), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [45448] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1877), 1, + sym_comment, + ACTIONS(1728), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1726), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [45499] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1878), 1, + sym_comment, + ACTIONS(1812), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1810), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [45550] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3986), 1, + anon_sym_list, + ACTIONS(3988), 1, + anon_sym_oneof, + STATE(1879), 1, + sym_comment, + STATE(4564), 1, + sym__all_type, + ACTIONS(3984), 2, + anon_sym_table, + anon_sym_record, + STATE(4464), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3982), 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, + [45609] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1880), 1, + sym_comment, + ACTIONS(2369), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1882), 32, + ACTIONS(2367), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178280,7 +178166,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178288,16 +178179,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45812] = 4, + [45660] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4210), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4212), 1, + aux_sym__immediate_decimal_token5, + STATE(1881), 1, + sym_comment, + ACTIONS(1728), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1726), 31, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [45714] = 27, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4167), 1, + anon_sym_null, + ACTIONS(4171), 1, + anon_sym_LPAREN, + ACTIONS(4173), 1, + anon_sym_DOLLAR, + ACTIONS(4175), 1, + anon_sym_DOT_DOT, + ACTIONS(4179), 1, + sym_val_date, + ACTIONS(4181), 1, + anon_sym_DQUOTE, + ACTIONS(4183), 1, + anon_sym_SQUOTE, + ACTIONS(4185), 1, + anon_sym_BQUOTE, + ACTIONS(4187), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4189), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4191), 1, + aux_sym_unquoted_token1, + ACTIONS(4193), 1, + sym_raw_string_begin, + STATE(1845), 1, + sym__inter_single_quotes, + STATE(1880), 1, + sym__inter_double_quotes, + STATE(1882), 1, + sym_comment, + STATE(3751), 1, + sym__val_number_decimal, + STATE(4841), 1, + sym_val_bool, + ACTIONS(3026), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3036), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3038), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4177), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5035), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4169), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1855), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1442), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [45810] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4214), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4216), 1, + aux_sym__immediate_decimal_token5, + STATE(1883), 1, + sym_comment, + ACTIONS(739), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(741), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [45864] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1884), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(1510), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1476), 36, + ACTIONS(1512), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178334,16 +178390,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45862] = 4, + [45914] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1885), 1, sym_comment, - ACTIONS(2264), 3, + ACTIONS(1526), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 36, + ACTIONS(1528), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178380,16 +178436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45912] = 4, + [45964] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1886), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(1514), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 36, + ACTIONS(1516), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178426,16 +178482,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45962] = 4, + [46014] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1887), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(1568), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 36, + ACTIONS(1570), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178472,24 +178528,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46012] = 8, + [46064] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, + ACTIONS(4157), 1, + aux_sym__immediate_decimal_token5, STATE(1888), 1, sym_comment, - STATE(1947), 1, + ACTIONS(1762), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1760), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [46116] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4218), 1, + anon_sym_DOT2, + STATE(1889), 1, + sym_comment, + STATE(1925), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2120), 1, sym_path, - STATE(2205), 1, + STATE(2173), 1, sym_cell_path, - ACTIONS(1864), 3, + ACTIONS(1860), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1862), 32, + ACTIONS(1858), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178522,18 +178625,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46070] = 4, + [46174] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1889), 1, + ACTIONS(4218), 1, + anon_sym_DOT2, + STATE(1890), 1, sym_comment, - ACTIONS(2086), 3, + STATE(1925), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2120), 1, + sym_path, + STATE(2201), 1, + sym_cell_path, + ACTIONS(1849), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 36, + ACTIONS(1846), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178557,10 +178667,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178568,16 +178675,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46120] = 4, + [46232] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1890), 1, + STATE(1891), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1522), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 36, + ACTIONS(1524), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178614,18 +178721,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46170] = 4, + [46282] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1891), 1, + ACTIONS(4218), 1, + anon_sym_DOT2, + STATE(1892), 1, sym_comment, - ACTIONS(1470), 3, + STATE(1925), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2120), 1, + sym_path, + STATE(2187), 1, + sym_cell_path, + ACTIONS(1888), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 36, + ACTIONS(1886), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178649,10 +178763,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178660,64 +178771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46220] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4214), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4216), 1, - aux_sym__immediate_decimal_token5, - STATE(1892), 1, - sym_comment, - ACTIONS(1728), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [46274] = 6, + [46340] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4218), 1, - anon_sym_DOT, - ACTIONS(4220), 1, + ACTIONS(4204), 1, aux_sym__immediate_decimal_token5, STATE(1893), 1, sym_comment, - ACTIONS(739), 7, + ACTIONS(747), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -178725,7 +178786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(741), 30, + anon_sym_COLON2, + ACTIONS(749), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -178756,25 +178818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [46328] = 8, + [46392] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, STATE(1894), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2150), 1, - sym_cell_path, - ACTIONS(1868), 3, + ACTIONS(1506), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1866), 32, + ACTIONS(1508), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178798,7 +178853,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178806,64 +178864,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46386] = 6, + [46442] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4222), 1, - anon_sym_DOT, - ACTIONS(4224), 1, - aux_sym__immediate_decimal_token5, STATE(1895), 1, sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 31, + ACTIONS(2375), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [46440] = 4, + ACTIONS(2373), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [46492] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1896), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(2379), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1558), 36, + ACTIONS(2377), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178900,85 +178956,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46490] = 27, - ACTIONS(103), 1, + [46542] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4159), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4167), 1, - anon_sym_DQUOTE, - ACTIONS(4169), 1, - anon_sym_SQUOTE, - ACTIONS(4171), 1, - anon_sym_BQUOTE, - ACTIONS(4173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, - aux_sym_unquoted_token1, - ACTIONS(4179), 1, - sym_raw_string_begin, - STATE(1854), 1, - sym__inter_single_quotes, - STATE(1856), 1, - sym__inter_double_quotes, + ACTIONS(4218), 1, + anon_sym_DOT2, STATE(1897), 1, sym_comment, - STATE(3750), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(3026), 2, + STATE(1925), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2120), 1, + sym_path, + STATE(2178), 1, + sym_cell_path, + ACTIONS(1872), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1870), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4163), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5032), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4155), 3, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(1869), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1445), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46586] = 4, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [46600] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1898), 1, sym_comment, - ACTIONS(1824), 3, + ACTIONS(2501), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1822), 36, + ACTIONS(2499), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179015,25 +179052,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46636] = 5, + [46650] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4220), 1, + anon_sym_QMARK2, + ACTIONS(4222), 1, + anon_sym_BANG, + STATE(1899), 1, + sym_comment, + STATE(2133), 1, + sym__path_suffix, + ACTIONS(1476), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1478), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [46706] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4224), 1, + anon_sym_DOT, ACTIONS(4226), 1, aux_sym__immediate_decimal_token5, - STATE(1899), 1, + STATE(1900), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1762), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1802), 32, + ACTIONS(1760), 31, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -179062,94 +179149,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46688] = 27, - ACTIONS(103), 1, + [46760] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4230), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, - anon_sym_DOLLAR, - ACTIONS(4234), 1, - anon_sym_DOT_DOT, - ACTIONS(4238), 1, - anon_sym_DQUOTE, - ACTIONS(4240), 1, - anon_sym_SQUOTE, - ACTIONS(4242), 1, - anon_sym_BQUOTE, - ACTIONS(4244), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4246), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4248), 1, - aux_sym_unquoted_token1, - ACTIONS(4250), 1, - sym_raw_string_begin, - STATE(1881), 1, - sym__inter_double_quotes, - STATE(1900), 1, + STATE(1901), 1, sym_comment, - STATE(1915), 1, - sym__inter_single_quotes, - STATE(3811), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(3026), 2, + ACTIONS(2505), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2503), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(3036), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(4236), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4918), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4228), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1886), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1455), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46784] = 8, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [46810] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1901), 1, + STATE(1902), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2209), 1, - sym_cell_path, - ACTIONS(1853), 3, + ACTIONS(2369), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1850), 32, + ACTIONS(2367), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179173,7 +179230,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179181,62 +179241,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46842] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4252), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4254), 1, - aux_sym__immediate_decimal_token5, - STATE(1902), 1, - sym_comment, - ACTIONS(747), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [46896] = 4, + [46860] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3734), 1, + ACTIONS(3746), 1, sym__entry_separator, STATE(1903), 1, sym_comment, - ACTIONS(3732), 38, + ACTIONS(3744), 38, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_any, @@ -179275,59 +179287,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_GT2, anon_sym_oneof, - [46946] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4206), 1, - aux_sym__immediate_decimal_token5, - STATE(1904), 1, - sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [46998] = 5, + [46910] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4256), 1, + ACTIONS(4228), 1, aux_sym__immediate_decimal_token5, - STATE(1905), 1, + STATE(1904), 1, sym_comment, ACTIONS(771), 8, anon_sym_STAR, @@ -179369,16 +179334,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [47050] = 4, + [46962] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1906), 1, + STATE(1905), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(1818), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 36, + ACTIONS(1816), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179415,64 +179380,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47100] = 4, - ACTIONS(3), 1, + [47012] = 27, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1907), 1, - sym_comment, - ACTIONS(2274), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2272), 36, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4167), 1, + anon_sym_null, + ACTIONS(4179), 1, + sym_val_date, + ACTIONS(4232), 1, + anon_sym_LPAREN, + ACTIONS(4234), 1, + anon_sym_DOLLAR, + ACTIONS(4236), 1, + anon_sym_DOT_DOT, + ACTIONS(4240), 1, + anon_sym_DQUOTE, + ACTIONS(4242), 1, + anon_sym_SQUOTE, + ACTIONS(4244), 1, + anon_sym_BQUOTE, + ACTIONS(4246), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4248), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4250), 1, + aux_sym_unquoted_token1, + ACTIONS(4252), 1, sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(1902), 1, + sym__inter_single_quotes, + STATE(1906), 1, + sym_comment, + STATE(1914), 1, + sym__inter_double_quotes, + STATE(3814), 1, + sym__val_number_decimal, + STATE(4841), 1, + sym_val_bool, + ACTIONS(3026), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + ACTIONS(3036), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3038), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [47150] = 4, + ACTIONS(4238), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5195), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4230), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1891), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1458), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [47108] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4254), 1, + anon_sym_DOT, + ACTIONS(4256), 1, + aux_sym__immediate_decimal_token5, + STATE(1907), 1, + sym_comment, + ACTIONS(747), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(749), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [47162] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4218), 1, + anon_sym_DOT2, STATE(1908), 1, sym_comment, - ACTIONS(1643), 3, + STATE(1925), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2120), 1, + sym_path, + STATE(2138), 1, + sym_cell_path, + ACTIONS(1842), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 36, + ACTIONS(1840), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179496,10 +179539,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179507,18 +179547,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47200] = 8, + [47220] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, + ACTIONS(4258), 1, + aux_sym__immediate_decimal_token5, STATE(1909), 1, sym_comment, - STATE(1947), 1, + ACTIONS(1812), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1810), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [47272] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4218), 1, + anon_sym_DOT2, + STATE(1910), 1, + sym_comment, + STATE(1925), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2120), 1, sym_path, - STATE(2203), 1, + STATE(2163), 1, sym_cell_path, ACTIONS(1880), 3, anon_sym_export, @@ -179557,16 +179644,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47258] = 4, + [47330] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1910), 1, + STATE(1911), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(2104), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 36, + ACTIONS(2102), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179603,25 +179690,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47308] = 8, + [47380] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1911), 1, + STATE(1912), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2182), 1, - sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(1518), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 32, + ACTIONS(1520), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179645,7 +179725,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179653,63 +179736,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47366] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4202), 1, - aux_sym__immediate_decimal_token5, - STATE(1912), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [47418] = 4, + [47430] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1913), 1, sym_comment, - ACTIONS(2094), 3, + ACTIONS(1667), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2092), 36, + ACTIONS(1665), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179746,16 +179782,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47468] = 4, + [47480] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1914), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(2369), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1545), 36, + ACTIONS(2367), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179792,16 +179828,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47518] = 4, + [47530] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1915), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(2112), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 36, + ACTIONS(2110), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179838,24 +179874,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47568] = 8, + [47580] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, + ACTIONS(4218), 1, anon_sym_DOT2, STATE(1916), 1, sym_comment, - STATE(1947), 1, + STATE(1925), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2120), 1, sym_path, - STATE(2207), 1, + STATE(2184), 1, sym_cell_path, - ACTIONS(1860), 3, + ACTIONS(1460), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1858), 32, + ACTIONS(1462), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179888,21 +179924,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47626] = 5, + [47638] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4258), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(4260), 1, + anon_sym_DOT_DOT2, STATE(1917), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(4262), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2120), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 31, + ACTIONS(2118), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -179924,7 +179962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -179934,69 +179971,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47677] = 6, + [47691] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, STATE(1918), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(1514), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1516), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [47740] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4266), 1, anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2575), 31, + ACTIONS(4268), 1, + sym__entry_separator, + STATE(1868), 1, + aux_sym__types_body_repeat2, + STATE(1919), 1, + sym_comment, + ACTIONS(4264), 35, + 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_oneof, + [47793] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4268), 1, + sym__entry_separator, + ACTIONS(4270), 1, + anon_sym_GT2, + STATE(1868), 1, + aux_sym__types_body_repeat2, + STATE(1920), 1, + sym_comment, + ACTIONS(4264), 35, + 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_oneof, + [47846] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1921), 1, + sym_comment, + ACTIONS(1506), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [47730] = 6, + anon_sym_DOT2, + ACTIONS(1508), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [47895] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1645), 1, sym__unquoted_pattern, - STATE(1919), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + STATE(1922), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(2586), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 31, + ACTIONS(2584), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180028,19 +180202,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47783] = 4, + [47948] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(860), 1, + anon_sym_COLON2, + ACTIONS(866), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4272), 1, + sym_filesize_unit, + ACTIONS(4274), 1, + sym_duration_unit, + STATE(1923), 1, + sym_comment, + ACTIONS(864), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(862), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48005] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1920), 1, + ACTIONS(4276), 1, + anon_sym_DOT2, + STATE(2120), 1, + sym_path, + STATE(1924), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1538), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1540), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48058] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4218), 1, + anon_sym_DOT2, + STATE(1924), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1925), 1, + sym_comment, + STATE(2120), 1, + sym_path, + ACTIONS(1534), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1536), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [48113] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1926), 1, + sym_comment, + ACTIONS(771), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(773), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [48162] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1927), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(2493), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(2501), 32, + ACTIONS(2491), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180073,65 +180436,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47832] = 6, - ACTIONS(103), 1, + [48211] = 27, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4262), 1, - anon_sym_GT2, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1921), 1, + ACTIONS(3036), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4232), 1, + anon_sym_LPAREN, + ACTIONS(4234), 1, + anon_sym_DOLLAR, + ACTIONS(4236), 1, + anon_sym_DOT_DOT, + ACTIONS(4240), 1, + anon_sym_DQUOTE, + ACTIONS(4242), 1, + anon_sym_SQUOTE, + ACTIONS(4244), 1, + anon_sym_BQUOTE, + ACTIONS(4246), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4248), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4250), 1, + aux_sym_unquoted_token1, + ACTIONS(4252), 1, + sym_raw_string_begin, + ACTIONS(4281), 1, + anon_sym_null, + ACTIONS(4285), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4289), 1, + sym_val_date, + STATE(1902), 1, + sym__inter_single_quotes, + STATE(1914), 1, + sym__inter_double_quotes, + STATE(1928), 1, sym_comment, - ACTIONS(4260), 35, - 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_oneof, - [47885] = 6, + STATE(3814), 1, + sym__val_number_decimal, + STATE(4841), 1, + sym_val_bool, + ACTIONS(4238), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4279), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4287), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5195), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4283), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1891), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1453), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [48306] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4268), 1, sym__entry_separator, - ACTIONS(4266), 1, + ACTIONS(4291), 1, anon_sym_RBRACK, - STATE(1876), 1, + STATE(1868), 1, aux_sym__types_body_repeat2, - STATE(1922), 1, + STATE(1929), 1, sym_comment, - ACTIONS(4268), 35, + ACTIONS(4293), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180167,18 +180551,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [47938] = 6, + [48359] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4268), 1, sym__entry_separator, - ACTIONS(4270), 1, - anon_sym_RBRACK, - STATE(1876), 1, + ACTIONS(4295), 1, + anon_sym_GT2, + STATE(1868), 1, aux_sym__types_body_repeat2, - STATE(1923), 1, + STATE(1930), 1, sym_comment, - ACTIONS(4268), 35, + ACTIONS(4264), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180214,22 +180598,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [47991] = 6, + [48412] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(1924), 1, + ACTIONS(3036), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4171), 1, + anon_sym_LPAREN, + ACTIONS(4173), 1, + anon_sym_DOLLAR, + ACTIONS(4175), 1, + anon_sym_DOT_DOT, + ACTIONS(4181), 1, + anon_sym_DQUOTE, + ACTIONS(4183), 1, + anon_sym_SQUOTE, + ACTIONS(4185), 1, + anon_sym_BQUOTE, + ACTIONS(4187), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4189), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4191), 1, + aux_sym_unquoted_token1, + ACTIONS(4193), 1, + sym_raw_string_begin, + ACTIONS(4281), 1, + anon_sym_null, + ACTIONS(4285), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4289), 1, + sym_val_date, + STATE(1845), 1, + sym__inter_single_quotes, + STATE(1880), 1, + sym__inter_double_quotes, + STATE(1931), 1, + sym_comment, + STATE(3751), 1, + sym__val_number_decimal, + STATE(4841), 1, + sym_val_bool, + ACTIONS(4177), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4279), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4287), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5035), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4297), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1855), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1444), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [48507] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4299), 1, + aux_sym__immediate_decimal_token5, + STATE(1932), 1, + sym_comment, + ACTIONS(771), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(773), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [48558] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1933), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(739), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(741), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [48607] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1934), 1, + sym_comment, + ACTIONS(1856), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 31, + sym__unquoted_pattern, + ACTIONS(1854), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180252,6 +180792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -180261,22 +180802,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48044] = 6, + [48656] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(1925), 1, + STATE(1935), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(1728), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 31, + sym__unquoted_pattern, + ACTIONS(1726), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180299,6 +180837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -180308,69 +180847,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48097] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4272), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1926), 1, - sym_comment, - ACTIONS(4268), 35, - 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_oneof, - [48150] = 6, + [48705] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, + ACTIONS(2644), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2646), 1, sym__unquoted_pattern, - STATE(1927), 1, + STATE(1936), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(2642), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 31, + ACTIONS(2640), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180402,16 +180894,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48203] = 6, + [48758] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(2557), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2559), 1, sym__unquoted_pattern, - STATE(1928), 1, + STATE(1937), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(1613), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -180449,21 +180941,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48256] = 5, + [48811] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4224), 1, + ACTIONS(4301), 1, aux_sym__immediate_decimal_token5, - STATE(1929), 1, + STATE(1938), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1812), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 31, + ACTIONS(1810), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -180495,65 +180987,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48307] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4274), 1, - anon_sym_GT2, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1930), 1, - sym_comment, - ACTIONS(4260), 35, - 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_oneof, - [48360] = 6, + [48862] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4268), 1, sym__entry_separator, - ACTIONS(4276), 1, + ACTIONS(4303), 1, anon_sym_GT2, - STATE(1876), 1, + STATE(1868), 1, aux_sym__types_body_repeat2, - STATE(1931), 1, + STATE(1939), 1, sym_comment, - ACTIONS(4260), 35, + ACTIONS(4264), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180589,22 +181034,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [48413] = 6, + [48915] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(1950), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1956), 1, sym__unquoted_pattern, - STATE(1932), 1, + STATE(1940), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(2570), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 31, + ACTIONS(2568), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180636,26 +181081,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48466] = 6, + [48968] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1933), 1, + STATE(1941), 1, + sym_comment, + ACTIONS(1510), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1512), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [49017] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4305), 1, + anon_sym_DOT_DOT2, + STATE(1942), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(4307), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1938), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 31, + ACTIONS(1936), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -180683,227 +181173,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48519] = 4, + [49070] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4278), 1, - sym__newline, - STATE(1934), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3738), 36, - anon_sym_LBRACK, - 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_oneof, - [48568] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4281), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1935), 1, + ACTIONS(4309), 1, + anon_sym_DOT_DOT2, + STATE(1943), 1, sym_comment, - ACTIONS(4268), 35, - 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_oneof, - [48621] = 27, + ACTIONS(4311), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1948), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1946), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [49123] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3036), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4159), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4167), 1, - anon_sym_DQUOTE, - ACTIONS(4169), 1, - anon_sym_SQUOTE, - ACTIONS(4171), 1, - anon_sym_BQUOTE, - ACTIONS(4173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, - aux_sym_unquoted_token1, - ACTIONS(4179), 1, - sym_raw_string_begin, - ACTIONS(4285), 1, - anon_sym_null, - ACTIONS(4289), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4293), 1, - sym_val_date, - STATE(1854), 1, - sym__inter_single_quotes, - STATE(1856), 1, - sym__inter_double_quotes, - STATE(1936), 1, - sym_comment, - STATE(3750), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(4163), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4283), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4291), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5032), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4287), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1869), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1447), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [48716] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_COLON2, - ACTIONS(874), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4295), 1, - sym_filesize_unit, - ACTIONS(4297), 1, - sym_duration_unit, - STATE(1937), 1, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(1944), 1, sym_comment, - ACTIONS(872), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(870), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [48773] = 6, + ACTIONS(1002), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1010), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [49176] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4268), 1, sym__entry_separator, - ACTIONS(4299), 1, - anon_sym_GT2, - STATE(1876), 1, + ACTIONS(4313), 1, + anon_sym_RBRACK, + STATE(1868), 1, aux_sym__types_body_repeat2, - STATE(1938), 1, + STATE(1945), 1, sym_comment, - ACTIONS(4260), 35, + ACTIONS(4293), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180938,507 +181313,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - anon_sym_oneof, - [48826] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4220), 1, - aux_sym__immediate_decimal_token5, - STATE(1939), 1, - sym_comment, - ACTIONS(739), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [48877] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4305), 1, - sym_long_flag_identifier, - ACTIONS(4307), 1, - anon_sym_EQ2, - STATE(1940), 1, - sym_comment, - STATE(2191), 1, - sym__flag_equals_value, - ACTIONS(4303), 9, - sym_raw_string_begin, - aux_sym_cmd_identifier_token4, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - ACTIONS(4301), 26, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - [48932] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1941), 1, - sym_comment, - ACTIONS(1514), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1516), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48981] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4309), 1, - aux_sym__immediate_decimal_token5, - STATE(1942), 1, - sym_comment, - ACTIONS(771), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49032] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3036), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4230), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, - anon_sym_DOLLAR, - ACTIONS(4234), 1, - anon_sym_DOT_DOT, - ACTIONS(4238), 1, - anon_sym_DQUOTE, - ACTIONS(4240), 1, - anon_sym_SQUOTE, - ACTIONS(4242), 1, - anon_sym_BQUOTE, - ACTIONS(4244), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4246), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4248), 1, - aux_sym_unquoted_token1, - ACTIONS(4250), 1, - sym_raw_string_begin, - ACTIONS(4285), 1, - anon_sym_null, - ACTIONS(4289), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4293), 1, - sym_val_date, - STATE(1881), 1, - sym__inter_double_quotes, - STATE(1915), 1, - sym__inter_single_quotes, - STATE(1943), 1, - sym_comment, - STATE(3811), 1, - sym__val_number_decimal, - STATE(5068), 1, - sym_val_bool, - ACTIONS(4236), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4283), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4291), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4918), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4311), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1886), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1458), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [49127] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1944), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49176] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1945), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49225] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1946), 1, - sym_comment, - ACTIONS(849), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(851), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49274] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1947), 1, - sym_comment, - STATE(1948), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - ACTIONS(1458), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1460), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [49329] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4313), 1, - anon_sym_DOT2, - STATE(2133), 1, - sym_path, - STATE(1948), 2, + anon_sym_oneof, + [49229] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4268), 1, + sym__entry_separator, + ACTIONS(4315), 1, + anon_sym_RBRACK, + STATE(1868), 1, + aux_sym__types_body_repeat2, + STATE(1946), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1526), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [49382] = 4, + ACTIONS(4293), 35, + 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_oneof, + [49282] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1949), 1, + ACTIONS(4317), 1, + anon_sym_DOT_DOT2, + STATE(1947), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(4319), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2078), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 32, + ACTIONS(2074), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181457,7 +181399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -181467,19 +181408,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49431] = 4, + [49335] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4268), 1, + sym__entry_separator, + ACTIONS(4321), 1, + anon_sym_RBRACK, + STATE(1868), 1, + aux_sym__types_body_repeat2, + STATE(1948), 1, + sym_comment, + ACTIONS(4293), 35, + 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_oneof, + [49388] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4323), 1, + sym__newline, + STATE(1949), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3750), 36, + anon_sym_LBRACK, + 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_oneof, + [49437] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, STATE(1950), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(994), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 32, + ACTIONS(1018), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181502,7 +181538,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -181512,19 +181547,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49480] = 4, + [49490] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, STATE(1951), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1948), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1870), 32, + ACTIONS(1946), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181547,7 +181585,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -181557,26 +181594,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49529] = 6, - ACTIONS(3), 1, + [49543] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, STATE(1952), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(878), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(880), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [49592] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4317), 1, + anon_sym_DOT_DOT2, + STATE(1953), 1, + sym_comment, + ACTIONS(4319), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1613), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 31, + ACTIONS(1706), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181604,17 +181686,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49582] = 4, + [49645] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1953), 1, + STATE(1954), 1, sym_comment, - ACTIONS(1478), 4, + ACTIONS(1518), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1480), 34, + ACTIONS(1520), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181649,22 +181731,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [49631] = 4, + [49694] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1954), 1, + ACTIONS(4330), 1, + sym_long_flag_identifier, + ACTIONS(4332), 1, + anon_sym_EQ2, + STATE(1955), 1, sym_comment, - ACTIONS(1543), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1545), 34, + STATE(2181), 1, + sym__flag_equals_value, + ACTIONS(4328), 9, sym_raw_string_begin, + aux_sym_cmd_identifier_token4, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + ACTIONS(4326), 26, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -181678,90 +181772,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49680] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2136), 1, - anon_sym_EQ_GT, - ACTIONS(4316), 1, - anon_sym_DOT_DOT2, - STATE(1955), 1, - sym_comment, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2134), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49735] = 6, + [49749] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4320), 1, - anon_sym_DOT_DOT2, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1940), 1, + anon_sym_LPAREN2, STATE(1956), 1, sym_comment, - ACTIONS(4322), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(1938), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 30, + ACTIONS(1936), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181789,23 +181826,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49788] = 6, + [49802] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4324), 1, - anon_sym_DOT_DOT2, + ACTIONS(4226), 1, + aux_sym__immediate_decimal_token5, STATE(1957), 1, sym_comment, - ACTIONS(4326), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(1762), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 30, + sym__unquoted_pattern, + ACTIONS(1760), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181827,6 +181862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -181836,17 +181872,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49841] = 4, + [49853] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1958), 1, sym_comment, - ACTIONS(1466), 4, + ACTIONS(1522), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1468), 34, + ACTIONS(1524), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -181881,23 +181917,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [49890] = 6, + [49902] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4316), 1, + ACTIONS(4334), 1, anon_sym_DOT_DOT2, STATE(1959), 1, sym_comment, - ACTIONS(4318), 2, + ACTIONS(4336), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 5, + ACTIONS(2148), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 30, + ACTIONS(2146), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181928,23 +181964,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49943] = 6, + [49955] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4328), 1, + ACTIONS(4338), 1, anon_sym_DOT_DOT2, STATE(1960), 1, sym_comment, - ACTIONS(4330), 2, + ACTIONS(4340), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 5, + ACTIONS(2168), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2152), 30, + ACTIONS(2166), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181975,23 +182011,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49996] = 6, + [50008] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4332), 1, + ACTIONS(4342), 1, anon_sym_DOT_DOT2, STATE(1961), 1, sym_comment, - ACTIONS(4334), 2, + ACTIONS(4344), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 5, + ACTIONS(2092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2100), 30, + ACTIONS(2090), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182022,26 +182058,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50049] = 6, + [50061] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4336), 1, - anon_sym_DOT_DOT2, STATE(1962), 1, sym_comment, - ACTIONS(4338), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 5, + ACTIONS(1812), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2076), 30, + sym__unquoted_pattern, + ACTIONS(1810), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182060,6 +182093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -182069,26 +182103,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50102] = 6, + [50110] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4340), 1, - anon_sym_DOT_DOT2, + ACTIONS(2622), 1, + anon_sym_LPAREN2, + ACTIONS(2624), 1, + sym__unquoted_pattern, STATE(1963), 1, sym_comment, - ACTIONS(4342), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 5, + ACTIONS(2606), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2120), 30, + ACTIONS(2604), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182116,17 +182150,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50155] = 4, + [50163] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1964), 1, sym_comment, - ACTIONS(1470), 4, + ACTIONS(1526), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1472), 34, + ACTIONS(1528), 34, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -182161,71 +182195,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [50204] = 4, - ACTIONS(3), 1, + [50212] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4256), 1, + aux_sym__immediate_decimal_token5, STATE(1965), 1, sym_comment, - ACTIONS(1474), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1476), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [50253] = 6, + ACTIONS(747), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(749), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [50263] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4316), 1, + ACTIONS(2076), 1, + anon_sym_EQ_GT, + ACTIONS(4317), 1, anon_sym_DOT_DOT2, STATE(1966), 1, sym_comment, - ACTIONS(4318), 2, + ACTIONS(4319), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 5, + ACTIONS(2078), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2134), 30, + ACTIONS(2074), 29, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182253,25 +182289,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50306] = 6, + [50318] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, + STATE(656), 1, + aux_sym__repeat_newline, STATE(1967), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2720), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 30, + ACTIONS(2718), 29, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182290,8 +182328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -182299,72 +182335,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50358] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4346), 1, - anon_sym_RBRACK, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - STATE(1968), 1, - sym_comment, - STATE(2091), 1, - aux_sym__types_body_repeat2, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [50412] = 6, + [50370] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(1744), 1, sym__unquoted_pattern, - STATE(1969), 1, + STATE(1968), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(860), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 30, + ACTIONS(960), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182392,63 +182380,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50464] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4352), 1, - sym__newline, - STATE(1970), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1955), 35, - 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_oneof, - [50512] = 4, + [50420] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1971), 1, + STATE(1969), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(2493), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 31, + ACTIONS(2491), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182480,113 +182424,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50560] = 4, + [50468] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1972), 1, + ACTIONS(4350), 1, + anon_sym_DASH2, + ACTIONS(4358), 1, + anon_sym_PLUS2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(1970), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4352), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50608] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1973), 1, - sym_comment, - ACTIONS(1872), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1870), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50656] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(1974), 1, - sym_comment, - ACTIONS(1966), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1964), 30, + ACTIONS(2718), 20, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182597,33 +182469,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50708] = 5, + [50532] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4268), 1, sym__entry_separator, - STATE(1876), 1, + STATE(1868), 1, aux_sym__types_body_repeat2, - STATE(1975), 1, + STATE(1971), 1, sym_comment, - ACTIONS(4268), 35, + ACTIONS(4293), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -182659,24 +182521,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [50758] = 7, + [50582] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4359), 1, + ACTIONS(4366), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4361), 1, + ACTIONS(4368), 1, sym_filesize_unit, - ACTIONS(4363), 1, + ACTIONS(4370), 1, sym_duration_unit, - STATE(1976), 1, + STATE(1972), 1, sym_comment, - ACTIONS(4357), 5, + ACTIONS(4364), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4355), 29, + ACTIONS(4362), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -182706,232 +182568,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [50812] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_DOT2, - STATE(453), 1, - sym_cell_path, - STATE(518), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, - sym_path, - STATE(1977), 1, - sym_comment, - ACTIONS(1432), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1434), 31, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - [50868] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1978), 1, - sym_comment, - ACTIONS(1976), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1974), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50920] = 5, + [50636] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(3740), 1, + sym_raw_string_begin, + ACTIONS(4372), 1, sym__entry_separator, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1979), 1, - sym_comment, - ACTIONS(4260), 35, - 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_oneof, - [50970] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4307), 1, - anon_sym_EQ2, - STATE(1980), 1, + STATE(1973), 2, sym_comment, - STATE(2173), 1, - sym__flag_equals_value, - ACTIONS(4365), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4367), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + aux_sym__types_body_repeat2, + ACTIONS(3735), 34, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [51022] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4369), 1, - sym__newline, - ACTIONS(4373), 1, anon_sym_LBRACK, - ACTIONS(4378), 1, - anon_sym_DOT_DOT, - STATE(1981), 1, - sym_comment, - ACTIONS(4376), 2, anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 6, - anon_sym_DOLLAR, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, 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, anon_sym_SQUOTE, @@ -182939,89 +182612,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, - [51078] = 13, + aux_sym__unquoted_in_list_token1, + [50686] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(1982), 1, - sym_comment, - STATE(1997), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(1974), 1, + sym_comment, + ACTIONS(2720), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4346), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2744), 19, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [51144] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(1983), 1, - sym_comment, - STATE(1999), 1, - aux_sym__repeat_newline, - ACTIONS(2746), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 23, + ACTIONS(2718), 24, anon_sym_in, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183044,30 +182664,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51208] = 9, + [50748] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - STATE(1984), 1, - sym_comment, - STATE(2001), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, + STATE(1975), 1, + sym_comment, + ACTIONS(4346), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4352), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2746), 3, + ACTIONS(2720), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2744), 26, + ACTIONS(2718), 27, anon_sym_in, + sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -183093,103 +182712,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51266] = 7, + [50804] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2905), 1, sym__newline, - STATE(1985), 1, + ACTIONS(4379), 1, + anon_sym_DASH2, + ACTIONS(4383), 1, + anon_sym_and2, + ACTIONS(4385), 1, + anon_sym_xor2, + ACTIONS(4395), 1, + anon_sym_PLUS2, + ACTIONS(4399), 1, + anon_sym_bit_DASHand2, + ACTIONS(4401), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4403), 1, + anon_sym_bit_DASHor2, + STATE(1976), 1, sym_comment, - STATE(2003), 1, + STATE(1982), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2746), 5, + ACTIONS(2666), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4377), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4381), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2744), 28, - anon_sym_in, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4391), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4393), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4397), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [51320] = 18, + ACTIONS(4375), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [50884] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4407), 1, + anon_sym_RBRACK, + ACTIONS(4409), 1, + sym__entry_separator, + ACTIONS(4411), 1, + sym_raw_string_begin, + STATE(1973), 1, + aux_sym__types_body_repeat2, + STATE(1977), 1, + sym_comment, + ACTIONS(4405), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [50938] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4417), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4419), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4421), 1, anon_sym_bit_DASHor2, - STATE(1986), 1, - sym_comment, - STATE(2005), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(1978), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(2718), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183198,117 +182876,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51396] = 19, + [51012] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4409), 1, + sym__entry_separator, + ACTIONS(4411), 1, + sym_raw_string_begin, + ACTIONS(4423), 1, + anon_sym_RBRACK, + STATE(1973), 1, + aux_sym__types_body_repeat2, + STATE(1979), 1, + sym_comment, + ACTIONS(4405), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [51066] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - STATE(1987), 1, + ACTIONS(2381), 1, + anon_sym_DOT2, + STATE(435), 1, + sym_cell_path, + STATE(647), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(842), 1, + sym_path, + STATE(1980), 1, sym_comment, - STATE(2007), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(1460), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2744), 3, - anon_sym_LBRACE, + ACTIONS(1462), 31, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [51474] = 20, + [51122] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4417), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4419), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4421), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4425), 1, anon_sym_and2, - ACTIONS(4409), 1, - anon_sym_xor2, - STATE(1988), 1, - sym_comment, - STATE(2009), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(2744), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4381), 2, + STATE(1981), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(2718), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183317,40 +183029,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51554] = 14, + [51198] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(1989), 1, - sym_comment, - STATE(2011), 1, + ACTIONS(4417), 1, + anon_sym_bit_DASHand2, + ACTIONS(4419), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4421), 1, + anon_sym_bit_DASHor2, + ACTIONS(4425), 1, + anon_sym_and2, + ACTIONS(4427), 1, + anon_sym_xor2, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(1982), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(2718), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4415), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183359,38 +183088,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [51622] = 7, - ACTIONS(103), 1, + [51276] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - ACTIONS(4411), 1, - anon_sym_RBRACK, - STATE(1990), 1, + ACTIONS(4429), 1, + anon_sym_QMARK2, + STATE(1983), 1, sym_comment, - STATE(2091), 1, - aux_sym__types_body_repeat2, - ACTIONS(4344), 33, + ACTIONS(1466), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1468), 32, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -183404,13 +183119,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -183418,37 +183133,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [51676] = 11, + [51326] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(1991), 1, - sym_comment, - STATE(2013), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + STATE(1984), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2744), 25, + ACTIONS(4360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4413), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2718), 12, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [51392] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2557), 1, + anon_sym_LPAREN2, + ACTIONS(2559), 1, + sym__unquoted_pattern, + STATE(1985), 1, + sym_comment, + ACTIONS(1613), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1706), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183464,59 +183223,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51738] = 15, + [51444] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(1992), 1, - sym_comment, - STATE(2015), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(1986), 1, + sym_comment, + ACTIONS(2720), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4346), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4352), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2744), 7, + ACTIONS(2718), 26, + anon_sym_in, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4397), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183524,54 +183269,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51808] = 16, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [51504] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - STATE(1993), 1, - sym_comment, - STATE(2017), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(1987), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2744), 6, + ACTIONS(2718), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183580,55 +183336,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51880] = 17, + [51572] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4417), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - STATE(1994), 1, - sym_comment, - STATE(2019), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(1988), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2744), 5, + ACTIONS(2718), 7, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183637,20 +183391,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51954] = 7, + [51642] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4415), 1, - anon_sym_RBRACK, - ACTIONS(4417), 1, + ACTIONS(4409), 1, sym__entry_separator, - ACTIONS(4419), 1, + ACTIONS(4411), 1, sym_raw_string_begin, - STATE(1995), 1, - sym_comment, - STATE(2102), 1, + ACTIONS(4431), 1, + anon_sym_RBRACK, + STATE(1973), 1, aux_sym__types_body_repeat2, - ACTIONS(4413), 33, + STATE(1989), 1, + sym_comment, + ACTIONS(4405), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -183684,32 +183438,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [52008] = 13, + [51696] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4268), 1, + sym__entry_separator, + STATE(1868), 1, + aux_sym__types_body_repeat2, + STATE(1990), 1, + sym_comment, + ACTIONS(4264), 35, + 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_oneof, + [51746] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(4350), 1, + anon_sym_DASH2, + ACTIONS(4358), 1, + anon_sym_PLUS2, + ACTIONS(4417), 1, + anon_sym_bit_DASHand2, + ACTIONS(4419), 1, + anon_sym_bit_DASHxor2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(1991), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4352), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4415), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2718), 6, sym__newline, - ACTIONS(4383), 1, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4413), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [51818] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2841), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - STATE(1996), 1, + STATE(1992), 1, sym_comment, - STATE(2032), 1, + STATE(2060), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(4387), 4, @@ -183717,7 +183572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2702), 19, + ACTIONS(2728), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -183737,38 +183592,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52074] = 12, + [51884] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1997), 1, + STATE(1993), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2706), 20, + ACTIONS(2732), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -183789,35 +183644,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52138] = 12, + [51948] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(1994), 1, + sym_comment, + ACTIONS(2642), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2640), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [52000] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(1995), 1, + sym_comment, + ACTIONS(1002), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1010), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [52052] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(1996), 1, + sym_comment, + ACTIONS(994), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1018), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [52104] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2841), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - STATE(1998), 1, + STATE(1997), 1, sym_comment, - STATE(2033), 1, + STATE(2062), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2730), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 23, + ACTIONS(2728), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -183841,33 +183834,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52202] = 11, + [52168] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(1999), 1, + STATE(1998), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2734), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4346), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4352), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 24, + ACTIONS(2732), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -183892,29 +183885,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52264] = 9, + [52230] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2841), 1, sym__newline, - STATE(2000), 1, + STATE(1999), 1, sym_comment, - STATE(2034), 1, + STATE(2063), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2704), 3, + ACTIONS(2730), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2702), 26, + ACTIONS(2728), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -183941,27 +183934,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52322] = 8, + [52288] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2001), 1, + STATE(2000), 1, sym_comment, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4346), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4352), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2708), 3, + ACTIONS(2734), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2706), 27, + ACTIONS(2732), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -183989,25 +183982,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52378] = 7, + [52344] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, + ACTIONS(4429), 1, + anon_sym_BANG, + STATE(2001), 1, + sym_comment, + ACTIONS(1466), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1468), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [52394] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4435), 1, + anon_sym_RBRACK, + ACTIONS(4437), 1, + sym__entry_separator, + ACTIONS(4439), 1, + sym_raw_string_begin, STATE(2002), 1, sym_comment, - STATE(2035), 1, + STATE(2088), 1, + aux_sym__types_body_repeat2, + ACTIONS(4433), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [52448] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4441), 1, + sym__newline, + STATE(2003), 1, + sym_comment, + ACTIONS(4444), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2940), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2942), 31, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [52500] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4437), 1, + sym__entry_separator, + ACTIONS(4439), 1, + sym_raw_string_begin, + ACTIONS(4446), 1, + anon_sym_RBRACK, + STATE(2004), 1, + sym_comment, + STATE(2088), 1, + aux_sym__types_body_repeat2, + ACTIONS(4433), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [52554] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2841), 1, + sym__newline, + STATE(2005), 1, + sym_comment, + STATE(2064), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2704), 5, + ACTIONS(2730), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2702), 28, + ACTIONS(2728), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -184036,23 +184214,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52432] = 6, + [52608] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2003), 1, + STATE(2006), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4346), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2708), 5, + ACTIONS(2734), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2706), 29, + ACTIONS(2732), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -184082,41 +184260,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52484] = 18, + [52660] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(966), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4448), 1, + sym_filesize_unit, + ACTIONS(4450), 1, + sym_duration_unit, + STATE(2007), 1, + sym_comment, + ACTIONS(964), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(962), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52714] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2841), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4401), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4403), 1, anon_sym_bit_DASHor2, - STATE(2004), 1, + STATE(2008), 1, sym_comment, - STATE(2036), 1, + STATE(2067), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 4, + ACTIONS(2728), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184126,12 +184351,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184140,56 +184365,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52560] = 17, + [52790] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4417), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4419), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4421), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2005), 1, + STATE(2009), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4352), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4415), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2732), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4413), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [52864] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2919), 1, + sym__newline, + ACTIONS(4379), 1, + anon_sym_DASH2, + ACTIONS(4395), 1, + anon_sym_PLUS2, + STATE(2010), 1, + sym_comment, + STATE(2092), 1, + aux_sym__repeat_newline, + ACTIONS(4377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4381), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4391), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4393), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4397), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4387), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2776), 19, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [52930] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2841), 1, + sym__newline, + ACTIONS(4379), 1, + anon_sym_DASH2, + ACTIONS(4383), 1, + anon_sym_and2, + ACTIONS(4395), 1, + anon_sym_PLUS2, + ACTIONS(4399), 1, + anon_sym_bit_DASHand2, + ACTIONS(4401), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4403), 1, + anon_sym_bit_DASHor2, + STATE(2011), 1, + sym_comment, + STATE(2068), 1, + aux_sym__repeat_newline, + ACTIONS(4377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4381), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4391), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4393), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4397), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2728), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4387), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4389), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4375), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [53008] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2919), 1, + sym__newline, + ACTIONS(4379), 1, + anon_sym_DASH2, + ACTIONS(4395), 1, + anon_sym_PLUS2, + STATE(2012), 1, sym_comment, - ACTIONS(4421), 2, + STATE(2098), 1, + aux_sym__repeat_newline, + ACTIONS(2778), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2706), 5, - sym__newline, + ACTIONS(2776), 23, + anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -184197,57 +184575,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52634] = 19, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [53072] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4417), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4419), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4421), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4425), 1, anon_sym_and2, - STATE(2006), 1, - sym_comment, - STATE(2037), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2013), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 3, + ACTIONS(2732), 4, + sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184256,56 +184644,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52712] = 18, + [53148] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4383), 1, + anon_sym_and2, + ACTIONS(4385), 1, + anon_sym_xor2, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4401), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4403), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2007), 1, + STATE(2014), 1, sym_comment, - ACTIONS(4421), 2, + STATE(2069), 1, + aux_sym__repeat_newline, + ACTIONS(2728), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184314,59 +184704,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52788] = 20, + [53228] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2919), 1, sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - ACTIONS(4409), 1, - anon_sym_xor2, - STATE(2008), 1, + STATE(2015), 1, sym_comment, - STATE(2038), 1, + STATE(2100), 1, aux_sym__repeat_newline, - ACTIONS(2702), 2, - anon_sym_LBRACE, - anon_sym_or2, ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(2778), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2776), 26, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [53286] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4456), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4458), 1, + sym_filesize_unit, + ACTIONS(4460), 1, + sym_duration_unit, + STATE(2016), 1, + sym_comment, + ACTIONS(4454), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4452), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [53340] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2919), 1, + sym__newline, + STATE(2017), 1, + sym_comment, + STATE(2103), 1, + aux_sym__repeat_newline, + ACTIONS(4391), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2778), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2776), 28, anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -184374,57 +184832,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52868] = 19, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [53394] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4417), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4419), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4421), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4425), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4427), 1, anon_sym_xor2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2009), 1, + STATE(2018), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 3, + ACTIONS(2732), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184433,32 +184906,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52946] = 14, + [53472] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2841), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - STATE(2010), 1, + STATE(2019), 1, sym_comment, - STATE(2039), 1, + STATE(2071), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(4387), 4, @@ -184466,7 +184939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184475,7 +184948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 11, + ACTIONS(2728), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184487,38 +184960,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53014] = 13, + [53540] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2011), 1, + STATE(2020), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184527,7 +185000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 12, + ACTIONS(2732), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -184540,32 +185013,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53080] = 11, + [53606] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2841), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - STATE(2012), 1, + STATE(2021), 1, sym_comment, - STATE(2040), 1, + STATE(2072), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2730), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 25, + ACTIONS(2728), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -184591,30 +185064,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53142] = 10, + [53668] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2919), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2013), 1, + ACTIONS(4399), 1, + anon_sym_bit_DASHand2, + ACTIONS(4401), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4403), 1, + anon_sym_bit_DASHor2, + STATE(2022), 1, sym_comment, - ACTIONS(2708), 2, + STATE(2105), 1, + aux_sym__repeat_newline, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2706), 26, + ACTIONS(4397), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2776), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4387), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4389), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4375), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [53744] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4350), 1, + anon_sym_DASH2, + ACTIONS(4358), 1, + anon_sym_PLUS2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2023), 1, + sym_comment, + ACTIONS(2734), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4352), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2732), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -184641,32 +185172,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53202] = 15, + [53804] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2024), 1, + sym_comment, + ACTIONS(771), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(773), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [53852] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2841), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - STATE(2014), 1, + STATE(2025), 1, sym_comment, - STATE(2041), 1, + STATE(2073), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(4387), 4, @@ -184674,12 +185249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 7, + ACTIONS(2728), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184687,7 +185262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184696,43 +185271,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53272] = 14, + [53922] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2015), 1, + STATE(2026), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 8, + ACTIONS(2732), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -184741,7 +185316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184750,54 +185325,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53340] = 16, + [53990] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(4332), 1, + anon_sym_EQ2, + STATE(2027), 1, + sym_comment, + STATE(2182), 1, + sym__flag_equals_value, + ACTIONS(4462), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4464), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [54042] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2919), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4383), 1, + anon_sym_and2, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, - STATE(2016), 1, + ACTIONS(4401), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4403), 1, + anon_sym_bit_DASHor2, + STATE(2028), 1, sym_comment, - STATE(2042), 1, + STATE(2109), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(2776), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184806,53 +185430,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53412] = 15, + [54120] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4383), 1, + anon_sym_and2, + ACTIONS(4385), 1, + anon_sym_xor2, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2017), 1, + ACTIONS(4401), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4403), 1, + anon_sym_bit_DASHor2, + STATE(2029), 1, sym_comment, - ACTIONS(4421), 2, + STATE(2031), 1, + aux_sym__repeat_newline, + ACTIONS(2776), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184861,36 +185490,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53482] = 17, + [54200] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2841), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - STATE(2018), 1, + STATE(2030), 1, sym_comment, - STATE(2043), 1, + STATE(2074), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(4387), 4, @@ -184898,18 +185525,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 5, + ACTIONS(2728), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184918,54 +185546,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53556] = 16, + [54272] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4417), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4419), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + ACTIONS(4421), 1, + anon_sym_bit_DASHor2, + ACTIONS(4425), 1, + anon_sym_and2, + ACTIONS(4427), 1, + anon_sym_xor2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2019), 1, + STATE(2031), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(2670), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184974,45 +185605,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53628] = 13, + [54350] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(2020), 1, - sym_comment, - STATE(2045), 1, + ACTIONS(4417), 1, + anon_sym_bit_DASHand2, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2032), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2712), 19, - anon_sym_in, + ACTIONS(4415), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2732), 7, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4413), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -185020,42 +185660,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [53694] = 12, + [54420] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2919), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - STATE(2021), 1, + STATE(2033), 1, sym_comment, - STATE(2047), 1, + STATE(2097), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + ACTIONS(2778), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2712), 23, + ACTIONS(2776), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185076,38 +185706,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53758] = 9, + [54482] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2841), 1, sym__newline, - STATE(2022), 1, + ACTIONS(4379), 1, + anon_sym_DASH2, + ACTIONS(4395), 1, + anon_sym_PLUS2, + ACTIONS(4399), 1, + anon_sym_bit_DASHand2, + ACTIONS(4401), 1, + anon_sym_bit_DASHxor2, + STATE(2034), 1, sym_comment, - STATE(2049), 1, + STATE(2075), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2714), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2712), 26, - anon_sym_in, - anon_sym_DASH2, + ACTIONS(4397), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4387), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4389), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2728), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4375), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -185115,44 +185768,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [54556] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2919), 1, + sym__newline, + ACTIONS(4379), 1, + anon_sym_DASH2, + ACTIONS(4395), 1, + anon_sym_PLUS2, + STATE(2035), 1, + sym_comment, + STATE(2042), 1, + aux_sym__repeat_newline, + ACTIONS(4377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4381), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4391), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4393), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4397), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(2776), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53816] = 7, + ACTIONS(4375), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [54626] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - STATE(2023), 1, - sym_comment, - STATE(2051), 1, + ACTIONS(4350), 1, + anon_sym_DASH2, + ACTIONS(4358), 1, + anon_sym_PLUS2, + ACTIONS(4417), 1, + anon_sym_bit_DASHand2, + ACTIONS(4419), 1, + anon_sym_bit_DASHxor2, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + STATE(2036), 1, + sym_comment, + ACTIONS(4346), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2714), 5, + ACTIONS(4348), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4352), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2712), 28, - anon_sym_in, - anon_sym_DASH2, + ACTIONS(4356), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4415), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2732), 6, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4413), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -185160,71 +185879,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [53870] = 18, + [54698] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2919), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - STATE(2024), 1, + STATE(2037), 1, sym_comment, - STATE(2053), 1, + STATE(2050), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(2776), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185233,44 +185935,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53946] = 19, + [54770] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2844), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4401), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4403), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - STATE(2025), 1, - sym_comment, - STATE(2055), 1, + STATE(2009), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2038), 1, + sym_comment, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 3, + ACTIONS(2706), 4, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, ACTIONS(4387), 4, @@ -185278,12 +185979,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185292,45 +185993,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54024] = 20, + [54846] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2919), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4401), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - ACTIONS(4409), 1, - anon_sym_xor2, - STATE(2026), 1, + STATE(2039), 1, sym_comment, STATE(2057), 1, aux_sym__repeat_newline, - ACTIONS(2712), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4381), 2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(4387), 4, @@ -185338,12 +186030,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(2776), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185352,41 +186050,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54104] = 14, + [54920] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(2027), 1, + STATE(2040), 1, sym_comment, - STATE(2059), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(1728), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4397), 8, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1726), 31, anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -185394,46 +186076,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54172] = 11, + [54968] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(2028), 1, + STATE(2041), 1, sym_comment, - STATE(2061), 1, - aux_sym__repeat_newline, - ACTIONS(2714), 2, + ACTIONS(2642), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2712), 25, + anon_sym_PLUS2, + ACTIONS(2640), 32, anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -185452,50 +186129,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54234] = 15, + [55016] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(2029), 1, - sym_comment, - STATE(2063), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2042), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 7, + ACTIONS(2670), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185503,7 +186183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185512,54 +186192,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54304] = 16, + [55084] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4470), 1, + anon_sym_DASH_DASH, + STATE(2148), 1, + sym_long_flag, + STATE(2043), 2, + sym_comment, + aux_sym_decl_def_repeat1, + ACTIONS(4466), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4468), 31, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [55136] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2844), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4383), 1, + anon_sym_and2, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, - STATE(2030), 1, - sym_comment, - STATE(2065), 1, + ACTIONS(4401), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4403), 1, + anon_sym_bit_DASHor2, + STATE(2013), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2044), 1, + sym_comment, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(2706), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185568,36 +186297,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54376] = 17, + [55214] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(888), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4473), 1, + sym_filesize_unit, + ACTIONS(4475), 1, + sym_duration_unit, + STATE(2045), 1, + sym_comment, + ACTIONS(886), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(884), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [55268] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2806), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - STATE(2031), 1, - sym_comment, - STATE(2067), 1, + STATE(1988), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2046), 1, + sym_comment, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(4387), 4, @@ -185605,18 +186379,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 5, + ACTIONS(2666), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185625,178 +186400,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54450] = 12, + [55340] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2032), 1, - sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2720), 20, - anon_sym_in, + ACTIONS(2905), 1, sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [54514] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2033), 1, - sym_comment, - ACTIONS(2722), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2720), 24, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, + ACTIONS(4383), 1, anon_sym_and2, + ACTIONS(4385), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(4395), 1, + anon_sym_PLUS2, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, + ACTIONS(4401), 1, anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [54576] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, + ACTIONS(4403), 1, + anon_sym_bit_DASHor2, + STATE(2018), 1, aux_sym__repeat_newline, - STATE(2034), 1, + STATE(2047), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(2706), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2720), 27, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4397), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [54632] = 6, + ACTIONS(4375), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [55420] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2035), 1, + STATE(2048), 1, sym_comment, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(1812), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 29, + sym__unquoted_pattern, + ACTIONS(1810), 31, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -185815,6 +186494,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -185822,55 +186504,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54684] = 17, + [55468] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4477), 1, + sym__newline, + ACTIONS(4481), 1, + anon_sym_LBRACK, + STATE(2049), 1, + sym_comment, + ACTIONS(4444), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2940), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2942), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [55522] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4417), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2036), 1, + STATE(2050), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 5, + ACTIONS(2670), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185879,57 +186606,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54758] = 18, + [55592] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - ACTIONS(4447), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2037), 1, + STATE(2051), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(1002), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2720), 4, + anon_sym_PLUS2, + ACTIONS(1010), 32, + anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4437), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -185937,98 +186633,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54834] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - ACTIONS(4447), 1, - anon_sym_and2, - ACTIONS(4449), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2038), 1, - sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2720), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [54912] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2039), 1, - sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4437), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [55640] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2052), 1, + sym_comment, + ACTIONS(1856), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1854), 31, anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -186036,46 +186676,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 12, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54978] = 10, + [55688] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2040), 1, + STATE(2053), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(994), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2720), 26, + anon_sym_PLUS2, + ACTIONS(1018), 32, anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -186094,57 +186729,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55038] = 14, + [55736] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4488), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4490), 1, + sym_filesize_unit, + ACTIONS(4492), 1, + sym_duration_unit, + STATE(2054), 1, + sym_comment, + ACTIONS(4486), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4484), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [55790] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(2020), 1, aux_sym__repeat_newline, - STATE(2041), 1, + STATE(2055), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2720), 8, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186153,53 +186827,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55106] = 15, + ACTIONS(2706), 11, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [55858] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2806), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + ACTIONS(4401), 1, + anon_sym_bit_DASHxor2, + STATE(1991), 1, aux_sym__repeat_newline, - STATE(2042), 1, + STATE(2056), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 7, - sym__newline, + ACTIONS(2666), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186208,54 +186896,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55176] = 16, + [55932] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4417), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4419), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2043), 1, + STATE(2057), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 6, + ACTIONS(2670), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186264,42 +186952,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55248] = 13, + [56004] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(2044), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + STATE(2058), 1, sym_comment, - STATE(2068), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(1938), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2728), 19, + anon_sym_PLUS2, + ACTIONS(1936), 30, anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -186310,45 +186981,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55314] = 12, + [56056] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4498), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4500), 1, + sym_filesize_unit, + ACTIONS(4502), 1, + sym_duration_unit, + STATE(2059), 1, + sym_comment, + ACTIONS(4496), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4494), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [56110] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2045), 1, + STATE(2060), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2732), 20, + ACTIONS(2740), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186369,85 +187097,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55378] = 12, + [56174] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(4441), 1, sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(2046), 1, + STATE(2061), 1, sym_comment, - STATE(2069), 1, - aux_sym__repeat_newline, - ACTIONS(2730), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2728), 23, - anon_sym_in, + ACTIONS(4444), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2940), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2942), 27, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [55442] = 11, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [56226] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2047), 1, + STATE(2062), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2742), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4346), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4352), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 24, + ACTIONS(2740), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186472,76 +187194,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55504] = 9, + [56288] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - STATE(2048), 1, - sym_comment, - STATE(2070), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, + STATE(2063), 1, + sym_comment, + ACTIONS(4346), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2730), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2728), 26, - anon_sym_in, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [55562] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2049), 1, - sym_comment, - ACTIONS(4425), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2734), 3, + ACTIONS(2742), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2732), 27, + ACTIONS(2740), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186569,26 +187242,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55618] = 7, + [56344] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - STATE(2050), 1, - sym_comment, - STATE(2071), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + STATE(2064), 1, + sym_comment, + ACTIONS(4346), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2730), 5, + ACTIONS(2742), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2728), 28, + ACTIONS(2740), 29, anon_sym_in, + sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -186616,159 +187288,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55672] = 6, - ACTIONS(3), 1, + [56396] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2051), 1, + ACTIONS(4409), 1, + sym__entry_separator, + ACTIONS(4411), 1, + sym_raw_string_begin, + ACTIONS(4504), 1, + anon_sym_RBRACK, + STATE(1973), 1, + aux_sym__types_body_repeat2, + STATE(2065), 1, sym_comment, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2734), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2732), 29, - anon_sym_in, - sym__newline, - anon_sym_DASH2, + ACTIONS(4405), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [55724] = 18, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [56450] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - STATE(2052), 1, + STATE(2066), 1, sym_comment, - STATE(2072), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2728), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4397), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [55800] = 17, + ACTIONS(2942), 37, + sym__newline, + anon_sym_LBRACK, + 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_oneof, + [56496] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4417), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4419), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4421), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2053), 1, + STATE(2067), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 5, + ACTIONS(2740), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186777,57 +187435,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55874] = 19, + [56570] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4417), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4419), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4421), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4425), 1, anon_sym_and2, - STATE(2054), 1, - sym_comment, - STATE(2073), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2068), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 3, + ACTIONS(2740), 4, + sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186836,56 +187493,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55952] = 18, + [56646] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4417), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4419), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4421), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4425), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(4427), 1, + anon_sym_xor2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2055), 1, + STATE(2069), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 4, + ACTIONS(2740), 3, sym__newline, anon_sym_LBRACE, - anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186894,58 +187552,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56028] = 20, + [56724] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2070), 1, + sym_comment, + ACTIONS(739), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(741), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [56772] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - ACTIONS(4409), 1, - anon_sym_xor2, - STATE(2056), 1, - sym_comment, - STATE(2074), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(2728), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4381), 2, + STATE(2071), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186954,99 +187636,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56108] = 19, + ACTIONS(2740), 12, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [56838] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - ACTIONS(4447), 1, - anon_sym_and2, - ACTIONS(4449), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2057), 1, + STATE(2072), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(2742), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4346), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4352), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2732), 3, + ACTIONS(2740), 26, + anon_sym_in, sym__newline, anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [56186] = 14, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [56898] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(2058), 1, - sym_comment, - STATE(2075), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2073), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4415), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2740), 8, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187055,50 +187753,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [56254] = 13, + [56966] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(540), 1, + ACTIONS(4417), 1, + anon_sym_bit_DASHand2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2059), 1, + STATE(2074), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4415), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2740), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187107,50 +187808,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 12, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [56320] = 11, + [57036] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(2060), 1, - sym_comment, - STATE(2076), 1, + ACTIONS(4417), 1, + anon_sym_bit_DASHand2, + ACTIONS(4419), 1, + anon_sym_bit_DASHxor2, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + STATE(2075), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2728), 25, - anon_sym_in, + ACTIONS(4360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4415), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2740), 6, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4413), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187158,45 +187864,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [56382] = 10, + [57108] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(2023), 1, aux_sym__repeat_newline, - STATE(2061), 1, + STATE(2076), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2708), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2732), 26, + ACTIONS(2706), 25, anon_sym_in, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187221,32 +187915,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56442] = 15, + [57170] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2806), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - STATE(2062), 1, - sym_comment, - STATE(2077), 1, + STATE(1984), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2077), 1, + sym_comment, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(4387), 4, @@ -187254,20 +187948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2728), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187276,88 +187957,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56512] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2063), 1, - sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2732), 8, - sym__newline, + ACTIONS(2666), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [56580] = 16, + [57238] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(4477), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4481), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT_DOT, + STATE(2078), 1, + sym_comment, + ACTIONS(4444), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2940), 6, + anon_sym_DOLLAR, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2942), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [57294] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - STATE(2064), 1, - sym_comment, - STATE(2078), 1, + STATE(2026), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2079), 1, + sym_comment, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(4387), 4, @@ -187365,19 +188050,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2728), 6, + ACTIONS(2706), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187386,54 +188072,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56652] = 15, + [57364] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(1993), 1, aux_sym__repeat_newline, - STATE(2065), 1, + STATE(2080), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2732), 7, - sym__newline, + ACTIONS(2706), 19, + anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4437), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187441,36 +188118,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56722] = 17, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57430] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2844), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - STATE(2066), 1, - sym_comment, - STATE(2079), 1, + STATE(2032), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2081), 1, + sym_comment, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(4387), 4, @@ -187478,18 +188160,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2728), 5, + ACTIONS(2706), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187498,54 +188181,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56796] = 16, + [57502] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4437), 1, + sym__entry_separator, + ACTIONS(4439), 1, + sym_raw_string_begin, + ACTIONS(4509), 1, + anon_sym_RBRACK, + STATE(2082), 1, + sym_comment, + STATE(2088), 1, + aux_sym__types_body_repeat2, + ACTIONS(4433), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [57556] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4511), 1, + sym__newline, + STATE(2083), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(2057), 35, + 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_oneof, + [57604] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4401), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(2036), 1, aux_sym__repeat_newline, - STATE(2067), 1, + STATE(2084), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 6, - sym__newline, + ACTIONS(2706), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187554,44 +188329,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56868] = 12, + [57678] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4437), 1, + sym__entry_separator, + ACTIONS(4439), 1, + sym_raw_string_begin, + ACTIONS(4514), 1, + anon_sym_RBRACK, + STATE(2085), 1, + sym_comment, + STATE(2088), 1, + aux_sym__types_body_repeat2, + ACTIONS(4433), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [57732] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2068), 1, + STATE(2086), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2740), 20, + ACTIONS(4413), 8, anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187599,57 +188416,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [56932] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2069), 1, - sym_comment, - ACTIONS(2742), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2740), 24, - anon_sym_in, + ACTIONS(2670), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -187657,31 +188429,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56994] = 8, + [57798] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2070), 1, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + STATE(2087), 1, sym_comment, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2742), 3, + ACTIONS(2570), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2740), 27, + ACTIONS(2568), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187700,32 +188466,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57050] = 6, + [57850] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3740), 1, + sym_raw_string_begin, + ACTIONS(4516), 1, + sym__entry_separator, + STATE(2088), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3735), 34, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [57900] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2071), 1, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + STATE(2089), 1, sym_comment, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2742), 5, + ACTIONS(1948), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2740), 29, + ACTIONS(1946), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187744,6 +188557,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -187751,56 +188566,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57102] = 17, + [57952] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2806), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(1970), 1, aux_sym__repeat_newline, - STATE(2072), 1, + STATE(2090), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4377), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2740), 5, - sym__newline, + ACTIONS(2666), 19, + anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187808,57 +188612,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57176] = 18, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58018] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2844), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - ACTIONS(4447), 1, - anon_sym_and2, - STATE(540), 1, + STATE(1998), 1, aux_sym__repeat_newline, - STATE(2073), 1, + STATE(2091), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(2708), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 4, - sym__newline, + ACTIONS(2706), 23, + anon_sym_in, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4437), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187866,98 +188660,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57252] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - ACTIONS(4447), 1, - anon_sym_and2, - ACTIONS(4449), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2074), 1, - sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2740), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [57330] = 13, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58082] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2075), 1, + STATE(2092), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(2670), 20, anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187965,12 +188716,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 12, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -187978,32 +188723,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57396] = 10, + [58146] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2806), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(1974), 1, aux_sym__repeat_newline, - STATE(2076), 1, + STATE(2093), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2668), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2740), 26, + ACTIONS(4397), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2666), 23, anon_sym_in, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -188023,58 +188772,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57456] = 14, + [58210] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(2806), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(1986), 1, aux_sym__repeat_newline, - STATE(2077), 1, + STATE(2094), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(2668), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2740), 8, - sym__newline, + ACTIONS(2666), 25, + anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4437), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -188082,110 +188813,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57524] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2078), 1, - sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [57594] = 16, + [58272] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - STATE(540), 1, + ACTIONS(2844), 1, + sym__newline, + STATE(2000), 1, aux_sym__repeat_newline, - STATE(2079), 1, + STATE(2095), 1, sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2740), 6, - sym__newline, + ACTIONS(2708), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2706), 26, + anon_sym_in, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4437), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -188193,112 +188862,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57666] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2080), 1, - sym_comment, - ACTIONS(747), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [57714] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4455), 1, - anon_sym_DASH_DASH, - STATE(2148), 1, - sym_long_flag, - STATE(2081), 2, - sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(4451), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4453), 31, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [57766] = 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58330] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2082), 1, + ACTIONS(1645), 1, + sym__unquoted_pattern, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + STATE(2096), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(2586), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 32, + ACTIONS(2584), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -188327,23 +188921,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57814] = 4, + [58382] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(2083), 1, + ACTIONS(4350), 1, + anon_sym_DASH2, + ACTIONS(4358), 1, + anon_sym_PLUS2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2097), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(2672), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4352), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1018), 32, + ACTIONS(4356), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2670), 26, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188362,34 +188966,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57862] = 6, + [58442] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2084), 1, + ACTIONS(4350), 1, + anon_sym_DASH2, + ACTIONS(4358), 1, + anon_sym_PLUS2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2098), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(2672), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4352), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2523), 30, + ACTIONS(4356), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2670), 24, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188405,218 +189016,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57914] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(974), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4458), 1, - sym_filesize_unit, - ACTIONS(4460), 1, - sym_duration_unit, - STATE(2085), 1, - sym_comment, - ACTIONS(972), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(970), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [57968] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - sym__newline, - STATE(2086), 1, - sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [58020] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - ACTIONS(4465), 1, - anon_sym_RBRACK, - STATE(2087), 1, - sym_comment, - STATE(2102), 1, - aux_sym__types_body_repeat2, - ACTIONS(4413), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58074] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2088), 1, - sym_comment, - ACTIONS(2940), 37, - sym__newline, - anon_sym_LBRACK, - 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_oneof, - [58120] = 4, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58504] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(2089), 1, + ACTIONS(2806), 1, + sym__newline, + STATE(1975), 1, + aux_sym__repeat_newline, + STATE(2099), 1, sym_comment, - ACTIONS(2637), 5, - anon_sym_GT2, + ACTIONS(4381), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(4391), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4393), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2668), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2635), 32, + ACTIONS(2666), 26, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188635,123 +189066,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58168] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2090), 1, - sym_comment, - ACTIONS(771), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [58216] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4467), 1, - sym__entry_separator, - STATE(2091), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 34, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [58266] = 6, + [58562] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2092), 1, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2100), 1, sym_comment, - ACTIONS(2569), 5, - anon_sym_GT2, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4352), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2672), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2567), 30, + ACTIONS(2670), 27, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188770,31 +189114,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58318] = 4, + [58618] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2093), 1, + ACTIONS(2806), 1, + sym__newline, + STATE(1967), 1, + aux_sym__repeat_newline, + STATE(2101), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(4391), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2668), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 31, + ACTIONS(2666), 28, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188813,9 +189159,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -188823,112 +189166,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58366] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4470), 1, - anon_sym_QMARK2, - STATE(2094), 1, - sym_comment, - ACTIONS(1438), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [58416] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4470), 1, - anon_sym_BANG, - STATE(2095), 1, - sym_comment, - ACTIONS(1438), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [58466] = 6, + [58672] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, + ACTIONS(2622), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2624), 1, sym__unquoted_pattern, - STATE(2096), 1, + STATE(2102), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(2606), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 30, + ACTIONS(2604), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -188959,25 +189212,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58518] = 6, + [58724] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2097), 1, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2103), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2672), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 30, + ACTIONS(2670), 29, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188996,8 +189251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -189005,27 +189258,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58570] = 5, + [58776] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(2098), 1, + ACTIONS(2806), 1, + sym__newline, + ACTIONS(4379), 1, + anon_sym_DASH2, + ACTIONS(4395), 1, + anon_sym_PLUS2, + ACTIONS(4399), 1, + anon_sym_bit_DASHand2, + ACTIONS(4401), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4403), 1, + anon_sym_bit_DASHor2, + STATE(1978), 1, + aux_sym__repeat_newline, + STATE(2104), 1, sym_comment, - ACTIONS(868), 5, + ACTIONS(4377), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4381), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, + ACTIONS(4391), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4393), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4397), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2666), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4387), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4389), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4375), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189033,89 +189316,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [58852] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4350), 1, + anon_sym_DASH2, + ACTIONS(4358), 1, + anon_sym_PLUS2, + ACTIONS(4417), 1, + anon_sym_bit_DASHand2, + ACTIONS(4419), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4421), 1, + anon_sym_bit_DASHor2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2105), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4352), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + ACTIONS(2670), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4413), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [58926] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2806), 1, + sym__newline, + ACTIONS(4379), 1, + anon_sym_DASH2, + ACTIONS(4383), 1, + anon_sym_and2, + ACTIONS(4395), 1, + anon_sym_PLUS2, + ACTIONS(4399), 1, + anon_sym_bit_DASHand2, + ACTIONS(4401), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4403), 1, + anon_sym_bit_DASHor2, + STATE(1981), 1, + aux_sym__repeat_newline, + STATE(2106), 1, + sym_comment, + ACTIONS(4377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4381), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58620] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4476), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4478), 1, - sym_filesize_unit, - ACTIONS(4480), 1, - sym_duration_unit, - STATE(2099), 1, - sym_comment, - ACTIONS(4474), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4472), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [58674] = 6, + ACTIONS(2666), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4387), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4389), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4375), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [59004] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2100), 1, + ACTIONS(2844), 1, + sym__newline, + STATE(2006), 1, + aux_sym__repeat_newline, + STATE(2107), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(4391), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2708), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 30, + ACTIONS(2706), 28, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -189134,8 +189472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -189143,386 +189479,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58726] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(888), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4482), 1, - sym_filesize_unit, - ACTIONS(4484), 1, - sym_duration_unit, - STATE(2101), 1, - sym_comment, - ACTIONS(886), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(884), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [58780] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4486), 1, - sym__entry_separator, - STATE(2102), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58830] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4493), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4495), 1, - sym_filesize_unit, - ACTIONS(4497), 1, - sym_duration_unit, - STATE(2103), 1, - sym_comment, - ACTIONS(4491), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4489), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [58884] = 7, - ACTIONS(103), 1, + [59058] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - ACTIONS(4499), 1, - anon_sym_RBRACK, - STATE(2102), 1, - aux_sym__types_body_repeat2, - STATE(2104), 1, + ACTIONS(2806), 1, + sym__newline, + ACTIONS(4379), 1, + anon_sym_DASH2, + ACTIONS(4395), 1, + anon_sym_PLUS2, + STATE(1987), 1, + aux_sym__repeat_newline, + STATE(2108), 1, sym_comment, - ACTIONS(4413), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(4377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4381), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4391), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4393), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4397), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4387), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4389), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2666), 7, 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58938] = 7, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4375), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [59128] = 18, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4350), 1, + anon_sym_DASH2, + ACTIONS(4358), 1, + anon_sym_PLUS2, ACTIONS(4417), 1, - sym__entry_separator, + anon_sym_bit_DASHand2, ACTIONS(4419), 1, - sym_raw_string_begin, - ACTIONS(4501), 1, - anon_sym_RBRACK, - STATE(2102), 1, - aux_sym__types_body_repeat2, - STATE(2105), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4421), 1, + anon_sym_bit_DASHor2, + ACTIONS(4425), 1, + anon_sym_and2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2109), 1, sym_comment, - ACTIONS(4413), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58992] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4352), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4356), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4360), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2670), 4, sym__newline, - ACTIONS(4373), 1, - anon_sym_LBRACK, - STATE(2106), 1, - sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [59046] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4507), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4509), 1, - sym_filesize_unit, - ACTIONS(4511), 1, - sym_duration_unit, - STATE(2107), 1, - sym_comment, - ACTIONS(4505), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4503), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [59100] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - ACTIONS(4513), 1, - anon_sym_RBRACK, - STATE(2091), 1, - aux_sym__types_body_repeat2, - STATE(2108), 1, - sym_comment, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4354), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4415), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4413), 8, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59154] = 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [59204] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2109), 1, + STATE(2110), 1, sym_comment, - ACTIONS(849), 7, + ACTIONS(878), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -189530,7 +189605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(851), 30, + ACTIONS(880), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189561,64 +189636,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [59202] = 7, - ACTIONS(103), 1, + [59252] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - ACTIONS(4515), 1, - anon_sym_RBRACK, - STATE(2091), 1, - aux_sym__types_body_repeat2, - STATE(2110), 1, + ACTIONS(2919), 1, + sym__newline, + ACTIONS(4379), 1, + anon_sym_DASH2, + ACTIONS(4395), 1, + anon_sym_PLUS2, + STATE(2086), 1, + aux_sym__repeat_newline, + STATE(2111), 1, sym_comment, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(4377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4381), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4391), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4393), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4397), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4387), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4375), 8, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59256] = 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2776), 11, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [59320] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2111), 1, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(2112), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(2642), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 32, + ACTIONS(2640), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189651,104 +189734,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59303] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2112), 1, - sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [59350] = 4, - ACTIONS(103), 1, + [59369] = 20, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2811), 1, + anon_sym_DASH2, + ACTIONS(2823), 1, + anon_sym_PLUS2, + ACTIONS(2827), 1, + anon_sym_bit_DASHand2, + ACTIONS(2829), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2831), 1, + anon_sym_bit_DASHor2, + ACTIONS(2869), 1, + anon_sym_and2, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(2907), 1, + anon_sym_xor2, + ACTIONS(4519), 1, + anon_sym_or2, STATE(2113), 1, sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 34, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(2115), 1, + aux_sym__repeat_newline, + ACTIONS(2809), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2813), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2819), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2821), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2825), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2815), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2817), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2804), 8, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59397] = 5, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [59448] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, + ACTIONS(4131), 1, sym__unquoted_pattern, STATE(2114), 1, sym_comment, - ACTIONS(2637), 3, + ACTIONS(860), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2635), 32, + ACTIONS(960), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189781,18 +189837,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59446] = 5, + [59497] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4147), 1, - sym__unquoted_pattern, + ACTIONS(2851), 1, + anon_sym_DASH2, + ACTIONS(2857), 1, + anon_sym_PLUS2, + ACTIONS(2861), 1, + anon_sym_bit_DASHand2, + ACTIONS(2863), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2865), 1, + anon_sym_bit_DASHor2, + ACTIONS(2903), 1, + anon_sym_and2, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(2909), 1, + anon_sym_xor2, + ACTIONS(4521), 1, + anon_sym_or2, + STATE(656), 1, + aux_sym__repeat_newline, STATE(2115), 1, sym_comment, - ACTIONS(868), 3, + ACTIONS(2833), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2835), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2837), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2849), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2859), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2853), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2855), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2847), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [59576] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4523), 1, + sym__newline, + STATE(2116), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3748), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 32, + ACTIONS(3750), 31, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189817,7 +189933,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -189825,18 +189940,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59495] = 5, + [59625] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, + ACTIONS(2660), 1, sym__unquoted_pattern, - STATE(2116), 1, + STATE(2117), 1, sym_comment, - ACTIONS(1619), 3, + ACTIONS(1002), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1706), 32, + ACTIONS(1010), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189869,62 +189984,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59544] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4517), 1, - sym__newline, - STATE(2117), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3738), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [59593] = 6, + [59674] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(4409), 1, sym__entry_separator, - ACTIONS(4419), 1, + ACTIONS(4411), 1, sym_raw_string_begin, - STATE(2102), 1, + STATE(1973), 1, aux_sym__types_body_repeat2, STATE(2118), 1, sym_comment, - ACTIONS(4413), 33, + ACTIONS(4405), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -189958,18 +190029,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [59644] = 5, + [59725] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(2559), 1, sym__unquoted_pattern, STATE(2119), 1, sym_comment, - ACTIONS(996), 3, + ACTIONS(1613), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(994), 32, + ACTIONS(1706), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190002,24 +190073,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59693] = 6, - ACTIONS(103), 1, + [59774] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - STATE(2091), 1, - aux_sym__types_body_repeat2, STATE(2120), 1, sym_comment, - ACTIONS(4344), 33, + ACTIONS(1549), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1551), 32, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -190033,81 +190102,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [59821] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2121), 1, + sym_comment, + ACTIONS(3746), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3744), 34, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59744] = 5, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [59868] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4520), 1, + ACTIONS(4526), 1, sym__newline, - STATE(2121), 2, + STATE(2122), 2, sym_comment, aux_sym__types_body_repeat1, - ACTIONS(3736), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(3738), 31, + ACTIONS(3748), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3750), 27, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, + 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, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59793] = 5, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [59917] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2122), 1, + STATE(2123), 1, sym_comment, - ACTIONS(1016), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1018), 32, + ACTIONS(3746), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3744), 34, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -190121,13 +190231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190135,116 +190246,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59842] = 20, + [59964] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(4379), 1, anon_sym_DASH2, - ACTIONS(2847), 1, - anon_sym_PLUS2, - ACTIONS(2858), 1, - anon_sym_bit_DASHand2, - ACTIONS(2860), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2862), 1, - anon_sym_bit_DASHor2, - ACTIONS(2908), 1, + ACTIONS(4383), 1, anon_sym_and2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(2914), 1, + ACTIONS(4385), 1, anon_sym_xor2, - ACTIONS(4523), 1, - anon_sym_or2, - STATE(2123), 1, - sym_comment, - STATE(2124), 1, - aux_sym__repeat_newline, - ACTIONS(2835), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2839), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2843), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2845), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2849), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2841), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2856), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2851), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [59921] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2792), 1, - anon_sym_DASH2, - ACTIONS(2798), 1, + ACTIONS(4395), 1, anon_sym_PLUS2, - ACTIONS(2802), 1, + ACTIONS(4399), 1, anon_sym_bit_DASHand2, - ACTIONS(2804), 1, + ACTIONS(4401), 1, anon_sym_bit_DASHxor2, - ACTIONS(2903), 1, + ACTIONS(4403), 1, anon_sym_bit_DASHor2, - ACTIONS(2910), 1, - anon_sym_and2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(2918), 1, - anon_sym_xor2, - ACTIONS(4525), 1, + ACTIONS(4529), 1, anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, STATE(2124), 1, sym_comment, - ACTIONS(2782), 2, + STATE(2126), 1, + aux_sym__repeat_newline, + ACTIONS(4377), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4381), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2784), 2, + ACTIONS(4391), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2786), 2, + ACTIONS(4393), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2800), 2, + ACTIONS(4397), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2794), 4, + ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2796), 4, + ACTIONS(4389), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2788), 8, + ACTIONS(4375), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190253,105 +190305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60000] = 5, + [60043] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, STATE(2125), 1, sym_comment, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60049] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4527), 1, - anon_sym_LBRACK2, - STATE(2126), 1, - sym_comment, - ACTIONS(2130), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2128), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [60098] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2127), 1, - sym_comment, - ACTIONS(1535), 4, + ACTIONS(1530), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1537), 32, + ACTIONS(1532), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190384,57 +190348,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60145] = 20, + [60090] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4350), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4358), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4417), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4419), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4421), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + ACTIONS(4425), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4427), 1, anon_sym_xor2, - ACTIONS(4529), 1, + ACTIONS(4531), 1, anon_sym_or2, - STATE(2128), 1, - sym_comment, - STATE(2129), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + STATE(2126), 1, + sym_comment, + ACTIONS(4346), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4352), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4354), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4415), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4413), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190443,58 +190407,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60224] = 20, + [60169] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - ACTIONS(4447), 1, - anon_sym_and2, - ACTIONS(4449), 1, - anon_sym_xor2, - ACTIONS(4531), 1, - anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2129), 1, + ACTIONS(1744), 1, + sym__unquoted_pattern, + STATE(2127), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(860), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + anon_sym_PLUS2, + ACTIONS(960), 30, anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -190502,135 +190434,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60303] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - ACTIONS(3826), 1, - anon_sym_xor2, - ACTIONS(4533), 1, - anon_sym_or2, - STATE(2130), 1, - sym_comment, - STATE(2131), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [60382] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - ACTIONS(3862), 1, - anon_sym_xor2, - ACTIONS(4535), 1, - anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2131), 1, - sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [60461] = 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [60218] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2132), 1, + STATE(2128), 1, sym_comment, - ACTIONS(2503), 4, + ACTIONS(2493), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, sym__unquoted_pattern, - ACTIONS(2501), 32, + ACTIONS(2491), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190663,148 +190494,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60508] = 4, - ACTIONS(3), 1, + [60265] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2133), 1, - sym_comment, - ACTIONS(1462), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 32, + ACTIONS(4437), 1, + sym__entry_separator, + ACTIONS(4439), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [60555] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2134), 1, - sym_comment, - ACTIONS(2096), 36, - sym__newline, - 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_oneof, - [60600] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2135), 1, + STATE(2088), 1, + aux_sym__types_body_repeat2, + STATE(2129), 1, sym_comment, - ACTIONS(2573), 3, + ACTIONS(4433), 33, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2571), 32, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [60646] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2136), 1, - sym_comment, - ACTIONS(2938), 3, - anon_sym_export, aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2940), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -190818,13 +190525,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190832,499 +190539,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60692] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - STATE(2137), 1, - sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 23, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60750] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2138), 1, - sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2533), 26, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60802] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2139), 1, - sym_comment, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2533), 28, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60850] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - ACTIONS(4557), 1, - anon_sym_bit_DASHand2, - ACTIONS(4559), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, - anon_sym_bit_DASHor2, - STATE(2140), 1, - sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2533), 4, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4553), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4555), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4549), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [60920] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - ACTIONS(4557), 1, - anon_sym_bit_DASHand2, - ACTIONS(4559), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, - anon_sym_bit_DASHor2, - ACTIONS(4563), 1, - anon_sym_and2, - STATE(2141), 1, - sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2533), 3, - anon_sym_EQ_GT, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4553), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4555), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4549), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [60992] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - ACTIONS(4557), 1, - anon_sym_bit_DASHand2, - ACTIONS(4559), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, - anon_sym_bit_DASHor2, - ACTIONS(4563), 1, - anon_sym_and2, - ACTIONS(4565), 1, - anon_sym_xor2, - STATE(2142), 1, - sym_comment, - ACTIONS(2533), 2, - anon_sym_EQ_GT, - anon_sym_or2, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4555), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4549), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [61066] = 12, + [60316] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(3755), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(3763), 1, anon_sym_PLUS2, - STATE(2143), 1, - sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4549), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 11, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(3791), 1, anon_sym_bit_DASHand2, + ACTIONS(3793), 1, anon_sym_bit_DASHxor2, + ACTIONS(3795), 1, anon_sym_bit_DASHor2, - [61128] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - STATE(2144), 1, - sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2533), 25, - anon_sym_in, - anon_sym_EQ_GT, + ACTIONS(3797), 1, anon_sym_and2, + ACTIONS(3799), 1, anon_sym_xor2, + ACTIONS(4533), 1, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [61184] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - STATE(2145), 1, + STATE(2130), 1, sym_comment, - ACTIONS(4539), 2, + STATE(2131), 1, + aux_sym__repeat_newline, + ACTIONS(3757), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(3759), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(3761), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, + ACTIONS(3781), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4553), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4555), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2533), 7, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4549), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [61248] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - ACTIONS(4557), 1, - anon_sym_bit_DASHand2, - STATE(2146), 1, - sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(3785), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(3783), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(3789), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 6, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4549), 8, + ACTIONS(3787), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191333,51 +190598,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61314] = 15, + [60395] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(3809), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(3819), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(3827), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(3829), 1, anon_sym_bit_DASHxor2, - STATE(2147), 1, + ACTIONS(3831), 1, + anon_sym_bit_DASHor2, + ACTIONS(3833), 1, + anon_sym_and2, + ACTIONS(3835), 1, + anon_sym_xor2, + ACTIONS(4535), 1, + anon_sym_or2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2131), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(3807), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3811), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(3815), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(3817), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(3821), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(3813), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(3825), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 5, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4549), 8, + ACTIONS(3823), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191386,16 +190657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61382] = 4, + [60474] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2148), 1, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(2132), 1, sym_comment, - ACTIONS(4567), 3, + ACTIONS(994), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4569), 32, + ACTIONS(1018), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191428,59 +190701,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61428] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4575), 1, - aux_sym_cmd_identifier_token6, - STATE(2149), 1, - sym_comment, - ACTIONS(4573), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4571), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [61476] = 4, + [60523] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2150), 1, + STATE(2133), 1, sym_comment, - ACTIONS(2521), 3, + ACTIONS(1545), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2519), 32, + anon_sym_DOT2, + ACTIONS(1547), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191513,59 +190744,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61522] = 5, - ACTIONS(103), 1, + [60570] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1002), 1, - aux_sym_cmd_identifier_token6, - STATE(2151), 1, + STATE(2134), 1, sym_comment, - ACTIONS(1000), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(998), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [61570] = 4, + ACTIONS(2064), 36, + sym__newline, + 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_oneof, + [60615] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2152), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK2, + STATE(2135), 1, sym_comment, - ACTIONS(1860), 3, + ACTIONS(2070), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1858), 32, + ACTIONS(2068), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191598,58 +190830,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61616] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2153), 1, - sym_comment, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 28, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [61662] = 4, + [60664] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2136), 1, sym_comment, - ACTIONS(2086), 3, + ACTIONS(2369), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 32, + ACTIONS(2367), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191682,16 +190872,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61708] = 4, + [60710] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1000), 1, + aux_sym_cmd_identifier_token6, + STATE(2137), 1, + sym_comment, + ACTIONS(998), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(996), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [60758] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2155), 1, + STATE(2138), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(1872), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 32, + ACTIONS(1870), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191724,16 +190957,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61754] = 4, + [60804] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(2156), 1, + ACTIONS(4543), 1, + anon_sym_DASH2, + ACTIONS(4555), 1, + anon_sym_PLUS2, + STATE(2139), 1, + sym_comment, + ACTIONS(4541), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4545), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4551), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4553), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4557), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4547), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4549), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2576), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4539), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [60868] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2140), 1, sym_comment, - ACTIONS(2274), 3, + ACTIONS(2501), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 32, + ACTIONS(2499), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191766,81 +191050,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61800] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4585), 1, - anon_sym_GT2, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - STATE(2157), 1, - sym_comment, - STATE(2224), 1, - aux_sym__types_body_repeat1, - STATE(2250), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4539), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - STATE(5104), 1, - sym__collection_body, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [61892] = 4, + [60914] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2158), 1, + STATE(2141), 1, sym_comment, - ACTIONS(1888), 3, + ACTIONS(2505), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1886), 32, + ACTIONS(2503), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191873,81 +191092,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61938] = 27, + [60960] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - ACTIONS(4599), 1, + ACTIONS(4543), 1, + anon_sym_DASH2, + ACTIONS(4555), 1, + anon_sym_PLUS2, + ACTIONS(4559), 1, + anon_sym_bit_DASHand2, + STATE(2142), 1, + sym_comment, + ACTIONS(4541), 2, anon_sym_GT2, - STATE(2159), 1, + anon_sym_LT2, + ACTIONS(4545), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4551), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4553), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4557), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4547), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4549), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2576), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4539), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61026] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4561), 1, + anon_sym_DASH2, + ACTIONS(4569), 1, + anon_sym_PLUS2, + STATE(2143), 1, sym_comment, - STATE(2224), 1, - aux_sym__types_body_repeat1, - STATE(2250), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4539), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - STATE(5019), 1, - sym__collection_body, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [62030] = 4, + ACTIONS(2578), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4563), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4565), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4567), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4571), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2576), 23, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [61084] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2160), 1, + STATE(2144), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(1868), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 32, + ACTIONS(1866), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191980,20 +191234,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62076] = 5, + [61130] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_DASH2, + ACTIONS(4555), 1, + anon_sym_PLUS2, + ACTIONS(4559), 1, + anon_sym_bit_DASHand2, + ACTIONS(4573), 1, + anon_sym_bit_DASHxor2, + STATE(2145), 1, + sym_comment, + ACTIONS(4541), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4545), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4551), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4553), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4557), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4547), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4549), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2576), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4539), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61198] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2146), 1, + sym_comment, + ACTIONS(4563), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4565), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4567), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2578), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2576), 26, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [61250] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4579), 1, aux_sym_cmd_identifier_token6, - STATE(2161), 1, + STATE(2147), 1, sym_comment, - ACTIONS(4603), 5, + ACTIONS(4577), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4601), 29, + ACTIONS(4575), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -192023,16 +191375,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [62124] = 4, + [61298] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2162), 1, + STATE(2148), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(4581), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1545), 32, + ACTIONS(4583), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192065,16 +191417,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62170] = 4, + [61344] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2163), 1, + STATE(2149), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(2365), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 32, + ACTIONS(2363), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192107,58 +191459,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62216] = 4, + [61390] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2164), 1, + STATE(2150), 1, sym_comment, - ACTIONS(868), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4565), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2578), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2576), 28, anon_sym_in, - ACTIONS(968), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62262] = 4, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [61438] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(2165), 1, + ACTIONS(4561), 1, + anon_sym_DASH2, + ACTIONS(4569), 1, + anon_sym_PLUS2, + ACTIONS(4593), 1, + anon_sym_bit_DASHand2, + ACTIONS(4595), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4597), 1, + anon_sym_bit_DASHor2, + STATE(2151), 1, + sym_comment, + ACTIONS(4563), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4565), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4567), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4571), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4587), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2576), 4, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4589), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4591), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4585), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61508] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2152), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(4599), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 32, + ACTIONS(4601), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192191,58 +191598,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62308] = 4, + [61554] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(2166), 1, + ACTIONS(4543), 1, + anon_sym_DASH2, + ACTIONS(4555), 1, + anon_sym_PLUS2, + STATE(2153), 1, sym_comment, - ACTIONS(1474), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4541), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4545), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4551), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4553), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4557), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4547), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4539), 8, anon_sym_in, - ACTIONS(1476), 32, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2576), 11, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [61616] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4607), 1, + aux_sym_cmd_identifier_token6, + STATE(2154), 1, + sym_comment, + ACTIONS(4605), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4603), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [61664] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1408), 1, + anon_sym_DQUOTE, + ACTIONS(1410), 1, + anon_sym_SQUOTE, + ACTIONS(1412), 1, + anon_sym_BQUOTE, + ACTIONS(1422), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, + ACTIONS(3060), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4611), 1, anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + ACTIONS(4615), 1, + sym__newline, + ACTIONS(4617), 1, + anon_sym_GT2, + ACTIONS(4619), 1, + anon_sym_DOT_DOT, + ACTIONS(4623), 1, aux_sym__val_number_decimal_token1, + ACTIONS(4625), 1, aux_sym__val_number_decimal_token2, + ACTIONS(4629), 1, + sym_val_date, + STATE(2155), 1, + sym_comment, + STATE(2224), 1, + aux_sym__types_body_repeat1, + STATE(2247), 1, + aux_sym__collection_body_repeat1, + STATE(3844), 1, + sym__val_number_decimal, + STATE(4540), 1, + sym__collection_entry, + STATE(4936), 1, + sym_val_bool, + STATE(5086), 1, + sym__collection_body, + ACTIONS(4609), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4621), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4627), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62354] = 4, + STATE(4245), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(4874), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4613), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [61756] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + aux_sym_cmd_identifier_token6, + STATE(2156), 1, + sym_comment, + ACTIONS(1014), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1012), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [61804] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2167), 1, + STATE(2157), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1522), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 32, + ACTIONS(1524), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192275,16 +191841,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62400] = 4, + [61850] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2168), 1, + STATE(2158), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(1518), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 32, + ACTIONS(1520), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192317,41 +191883,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62446] = 11, + [61896] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4635), 1, + aux_sym_cmd_identifier_token6, + STATE(2159), 1, + sym_comment, + ACTIONS(4633), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4631), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [61944] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4561), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - STATE(2169), 1, + ACTIONS(4593), 1, + anon_sym_bit_DASHand2, + ACTIONS(4595), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4597), 1, + anon_sym_bit_DASHor2, + ACTIONS(4637), 1, + anon_sym_and2, + STATE(2160), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4563), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4571), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4587), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2576), 3, + anon_sym_EQ_GT, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4589), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 19, + ACTIONS(4591), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4585), 8, anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -192359,71 +191981,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62506] = 10, + [62016] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2161), 1, + sym_comment, + ACTIONS(2940), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2942), 28, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [62062] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4561), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - STATE(2170), 1, + ACTIONS(4593), 1, + anon_sym_bit_DASHand2, + ACTIONS(4595), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4597), 1, + anon_sym_bit_DASHor2, + ACTIONS(4637), 1, + anon_sym_and2, + ACTIONS(4639), 1, + anon_sym_xor2, + STATE(2162), 1, sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(2576), 2, + anon_sym_EQ_GT, + anon_sym_or2, + ACTIONS(4563), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4571), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 23, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4587), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4589), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4591), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62564] = 4, + ACTIONS(4585), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [62136] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2171), 1, + STATE(2163), 1, sym_comment, - ACTIONS(1619), 3, + ACTIONS(2184), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1706), 32, + ACTIONS(2182), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192456,31 +192121,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62610] = 7, + [62182] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(2172), 1, + ACTIONS(4543), 1, + anon_sym_DASH2, + ACTIONS(4555), 1, + anon_sym_PLUS2, + ACTIONS(4559), 1, + anon_sym_bit_DASHand2, + ACTIONS(4573), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4641), 1, + anon_sym_and2, + ACTIONS(4643), 1, + anon_sym_xor2, + ACTIONS(4645), 1, + anon_sym_bit_DASHor2, + STATE(2164), 1, sym_comment, - ACTIONS(4611), 2, + ACTIONS(2576), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4541), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4545), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4551), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4553), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2533), 26, + ACTIONS(4557), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4547), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4549), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4539), 8, anon_sym_in, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -192488,29 +192177,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [62256] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4561), 1, + anon_sym_DASH2, + ACTIONS(4569), 1, + anon_sym_PLUS2, + STATE(2165), 1, + sym_comment, + ACTIONS(4563), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4565), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4567), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4571), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4587), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4589), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4585), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2576), 11, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [62662] = 4, + [62318] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2173), 1, + STATE(2166), 1, sym_comment, - ACTIONS(4623), 3, + ACTIONS(2598), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4625), 32, + ACTIONS(2596), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192543,16 +192269,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62708] = 4, + [62364] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2174), 1, + STATE(2167), 1, sym_comment, - ACTIONS(4627), 3, + ACTIONS(4647), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4629), 32, + ACTIONS(4649), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192585,59 +192311,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62754] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2175), 1, - sym_comment, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2533), 28, - anon_sym_in, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62802] = 4, + [62410] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2176), 1, + STATE(2168), 1, sym_comment, - ACTIONS(4631), 3, + ACTIONS(2602), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4633), 32, + ACTIONS(2600), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192670,70 +192353,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62848] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, - anon_sym_bit_DASHor2, - STATE(2177), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [62918] = 4, + [62456] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2178), 1, + STATE(2169), 1, sym_comment, - ACTIONS(2114), 3, + ACTIONS(2563), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2112), 32, + ACTIONS(2561), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192766,16 +192395,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62964] = 4, + [62502] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1008), 1, + aux_sym_cmd_identifier_token6, + STATE(2170), 1, + sym_comment, + ACTIONS(1006), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1004), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [62550] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2179), 1, + STATE(2171), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(2525), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 32, + ACTIONS(2523), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192808,16 +192480,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63010] = 4, + [62596] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2180), 1, + STATE(2172), 1, sym_comment, - ACTIONS(1876), 3, + ACTIONS(2369), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1874), 32, + ACTIONS(2367), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192850,16 +192522,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63056] = 4, + [62642] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2181), 1, + STATE(2173), 1, sym_comment, - ACTIONS(2507), 3, + ACTIONS(2537), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2505), 32, + ACTIONS(2535), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192892,16 +192564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63102] = 4, + [62688] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2182), 1, + STATE(2174), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(1876), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1558), 32, + ACTIONS(1874), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192934,16 +192606,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63148] = 4, + [62734] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2183), 1, + STATE(2175), 1, sym_comment, - ACTIONS(2617), 3, + ACTIONS(2212), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2615), 32, + ACTIONS(2210), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192976,53 +192648,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63194] = 17, + [62780] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4543), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4555), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(4559), 1, anon_sym_bit_DASHand2, - ACTIONS(4641), 1, + ACTIONS(4573), 1, anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, - anon_sym_bit_DASHor2, - ACTIONS(4645), 1, + ACTIONS(4641), 1, anon_sym_and2, - STATE(2184), 1, + ACTIONS(4645), 1, + anon_sym_bit_DASHor2, + STATE(2176), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4541), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4545), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4551), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4553), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4557), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 3, + ACTIONS(2576), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4613), 4, + ACTIONS(4547), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4549), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4635), 8, + ACTIONS(4539), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193031,93 +192703,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63266] = 18, + [62852] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, + ACTIONS(1408), 1, + anon_sym_DQUOTE, + ACTIONS(1410), 1, + anon_sym_SQUOTE, + ACTIONS(1412), 1, + anon_sym_BQUOTE, + ACTIONS(1422), 1, + sym_raw_string_begin, + ACTIONS(3060), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4611), 1, + anon_sym_null, + ACTIONS(4615), 1, + sym__newline, ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, - anon_sym_bit_DASHor2, - ACTIONS(4645), 1, - anon_sym_and2, - ACTIONS(4647), 1, - anon_sym_xor2, - STATE(2185), 1, - sym_comment, - ACTIONS(2533), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4607), 2, + anon_sym_DOT_DOT, + ACTIONS(4623), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4625), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4629), 1, + sym_val_date, + ACTIONS(4651), 1, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, + STATE(2177), 1, + sym_comment, + STATE(2224), 1, + aux_sym__types_body_repeat1, + STATE(2247), 1, + aux_sym__collection_body_repeat1, + STATE(3844), 1, + sym__val_number_decimal, + STATE(4540), 1, + sym__collection_entry, + STATE(4936), 1, + sym_val_bool, + STATE(5008), 1, + sym__collection_body, + ACTIONS(4609), 2, + anon_sym_true, + anon_sym_false, ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4635), 8, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4627), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4245), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(4874), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4613), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [62944] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2178), 1, + sym_comment, + ACTIONS(2582), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63340] = 12, + ACTIONS(2580), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62990] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4561), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - STATE(2186), 1, + STATE(2179), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(2578), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4563), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4635), 8, + ACTIONS(2576), 25, anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -193125,40 +192844,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [63402] = 9, + [63046] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2180), 1, + sym_comment, + ACTIONS(2104), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2102), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [63092] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2181), 1, + sym_comment, + ACTIONS(4653), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4655), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [63138] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2182), 1, + sym_comment, + ACTIONS(4657), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4659), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [63184] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4543), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4555), 1, anon_sym_PLUS2, - STATE(2187), 1, + STATE(2183), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2578), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4545), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4551), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4553), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2533), 25, + ACTIONS(4557), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2576), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -193179,54 +193028,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [63458] = 13, + [63242] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2184), 1, + sym_comment, + ACTIONS(1568), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1570), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [63288] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4561), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - STATE(2188), 1, + STATE(2185), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4563), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4571), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4587), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4589), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4591), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 7, - anon_sym_LBRACE, + ACTIONS(2576), 7, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4635), 8, + ACTIONS(4585), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193235,51 +193124,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63522] = 14, + [63352] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - STATE(2189), 1, + STATE(2186), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4545), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4551), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4553), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2533), 6, + ACTIONS(2578), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2576), 26, + anon_sym_in, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4635), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -193287,69 +193156,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63588] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - STATE(2190), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [63656] = 4, + [63404] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2191), 1, + STATE(2187), 1, sym_comment, - ACTIONS(4649), 3, + ACTIONS(2224), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4651), 32, + ACTIONS(2222), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193382,59 +193211,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63702] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1014), 1, - aux_sym_cmd_identifier_token6, - STATE(2192), 1, - sym_comment, - ACTIONS(1012), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1010), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [63750] = 4, + [63450] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2193), 1, + STATE(2188), 1, sym_comment, - ACTIONS(2565), 3, + ACTIONS(860), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2563), 32, + ACTIONS(960), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193467,16 +193253,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63796] = 4, + [63496] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(2194), 1, + ACTIONS(4561), 1, + anon_sym_DASH2, + ACTIONS(4569), 1, + anon_sym_PLUS2, + ACTIONS(4593), 1, + anon_sym_bit_DASHand2, + STATE(2189), 1, + sym_comment, + ACTIONS(4563), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4565), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4567), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4571), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4587), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4589), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4591), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2576), 6, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4585), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [63562] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2190), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(2517), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 32, + ACTIONS(2515), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193509,59 +193347,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63842] = 5, - ACTIONS(103), 1, + [63608] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1008), 1, - aux_sym_cmd_identifier_token6, - STATE(2195), 1, + ACTIONS(4661), 1, + sym__newline, + STATE(2191), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(1006), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1004), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [63890] = 4, + ACTIONS(2062), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2057), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [63656] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(2196), 1, + ACTIONS(4561), 1, + anon_sym_DASH2, + ACTIONS(4569), 1, + anon_sym_PLUS2, + ACTIONS(4593), 1, + anon_sym_bit_DASHand2, + ACTIONS(4595), 1, + anon_sym_bit_DASHxor2, + STATE(2192), 1, + sym_comment, + ACTIONS(4563), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4565), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4567), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4571), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4587), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4589), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4591), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2576), 5, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4585), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [63724] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2193), 1, sym_comment, - ACTIONS(2220), 3, + ACTIONS(1514), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2218), 32, + ACTIONS(1516), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193594,16 +193485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63936] = 4, + [63770] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2197), 1, + STATE(2194), 1, sym_comment, - ACTIONS(2264), 3, + ACTIONS(2940), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 32, + ACTIONS(2942), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193628,7 +193519,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -193636,16 +193527,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63982] = 4, + [63816] = 27, ACTIONS(3), 1, anon_sym_POUND, - STATE(2198), 1, + ACTIONS(1408), 1, + anon_sym_DQUOTE, + ACTIONS(1410), 1, + anon_sym_SQUOTE, + ACTIONS(1412), 1, + anon_sym_BQUOTE, + ACTIONS(1422), 1, + sym_raw_string_begin, + ACTIONS(3060), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4611), 1, + anon_sym_null, + ACTIONS(4615), 1, + sym__newline, + ACTIONS(4619), 1, + anon_sym_DOT_DOT, + ACTIONS(4623), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4625), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4629), 1, + sym_val_date, + ACTIONS(4664), 1, + anon_sym_GT2, + STATE(2195), 1, + sym_comment, + STATE(2224), 1, + aux_sym__types_body_repeat1, + STATE(2247), 1, + aux_sym__collection_body_repeat1, + STATE(3844), 1, + sym__val_number_decimal, + STATE(4540), 1, + sym__collection_entry, + STATE(4891), 1, + sym__collection_body, + STATE(4936), 1, + sym_val_bool, + ACTIONS(4609), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4621), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4627), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4245), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(4874), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4613), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [63908] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2196), 1, sym_comment, - ACTIONS(2609), 3, + ACTIONS(1506), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2607), 32, + ACTIONS(1508), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193678,210 +193634,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64028] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4657), 1, - aux_sym_cmd_identifier_token6, - STATE(2199), 1, - sym_comment, - ACTIONS(4655), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4653), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [64076] = 5, - ACTIONS(103), 1, + [63954] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4663), 1, - aux_sym_cmd_identifier_token6, - STATE(2200), 1, + ACTIONS(4543), 1, + anon_sym_DASH2, + ACTIONS(4555), 1, + anon_sym_PLUS2, + STATE(2197), 1, sym_comment, - ACTIONS(4661), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4659), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [64124] = 5, + ACTIONS(2578), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4545), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4551), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4553), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2576), 25, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [64010] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4665), 1, - sym__newline, - STATE(2201), 2, - aux_sym__repeat_newline, + STATE(2198), 1, sym_comment, - ACTIONS(1960), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1955), 25, + ACTIONS(2112), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2110), 32, sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - 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_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, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [64172] = 27, + [64056] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - ACTIONS(4668), 1, - anon_sym_GT2, - STATE(2202), 1, + STATE(2199), 1, sym_comment, - STATE(2224), 1, - aux_sym__types_body_repeat1, - STATE(2250), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4539), 1, - sym__collection_entry, - STATE(4871), 1, - sym__collection_body, - STATE(4928), 1, - sym_val_bool, - ACTIONS(4577), 2, + ACTIONS(2088), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2086), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [64264] = 4, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64102] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2203), 1, + STATE(2200), 1, sym_comment, - ACTIONS(2224), 3, + ACTIONS(1510), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2222), 32, + ACTIONS(1512), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193914,16 +193807,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64310] = 4, + [64148] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2204), 1, + STATE(2201), 1, sym_comment, - ACTIONS(2539), 3, + ACTIONS(1860), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2537), 32, + ACTIONS(1858), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193956,16 +193849,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64356] = 4, + [64194] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2205), 1, + STATE(2202), 1, sym_comment, - ACTIONS(2204), 3, + ACTIONS(2656), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2202), 32, + ACTIONS(2654), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193998,16 +193891,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64402] = 4, + [64240] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2206), 1, + STATE(2203), 1, sym_comment, - ACTIONS(2513), 3, + ACTIONS(2541), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2511), 32, + ACTIONS(2539), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194040,16 +193933,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64448] = 4, + [64286] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2207), 1, + STATE(2204), 1, sym_comment, - ACTIONS(2593), 3, + ACTIONS(1613), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2591), 32, + ACTIONS(1706), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194082,16 +193975,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64494] = 4, + [64332] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(2208), 1, + ACTIONS(4561), 1, + anon_sym_DASH2, + ACTIONS(4569), 1, + anon_sym_PLUS2, + STATE(2205), 1, + sym_comment, + ACTIONS(4563), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4565), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4567), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4571), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4587), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4589), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2576), 19, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [64392] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2206), 1, + sym_comment, + ACTIONS(4551), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2578), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2576), 28, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [64440] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2207), 1, sym_comment, - ACTIONS(2094), 3, + ACTIONS(2375), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2092), 32, + ACTIONS(2373), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194124,16 +194109,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64540] = 4, + [64486] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2209), 1, + STATE(2208), 1, sym_comment, - ACTIONS(1868), 3, + ACTIONS(2497), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1866), 32, + ACTIONS(2495), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194166,16 +194151,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64586] = 4, + [64532] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4543), 1, + anon_sym_DASH2, + ACTIONS(4555), 1, + anon_sym_PLUS2, + ACTIONS(4559), 1, + anon_sym_bit_DASHand2, + ACTIONS(4573), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4645), 1, + anon_sym_bit_DASHor2, + STATE(2209), 1, + sym_comment, + ACTIONS(4541), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4545), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4551), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4553), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4557), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2576), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4547), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4549), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4539), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [64602] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2210), 1, sym_comment, - ACTIONS(2196), 3, + ACTIONS(2379), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2194), 32, + ACTIONS(2377), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194208,16 +194247,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64632] = 4, + [64648] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2211), 1, sym_comment, - ACTIONS(2517), 3, + ACTIONS(1526), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2515), 32, + ACTIONS(1528), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194250,38 +194289,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64678] = 11, + [64694] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4670), 1, + aux_sym_cmd_identifier_token6, + STATE(2212), 1, + sym_comment, + ACTIONS(4668), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4666), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [64742] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4543), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4555), 1, anon_sym_PLUS2, - STATE(2212), 1, + STATE(2213), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(4541), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4545), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4551), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4553), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4557), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(4547), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 19, + ACTIONS(2576), 19, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -194299,53 +194381,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [64738] = 18, + [64802] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2810), 1, - anon_sym_DASH2, - ACTIONS(2822), 1, - anon_sym_PLUS2, - ACTIONS(2826), 1, - anon_sym_bit_DASHand2, - ACTIONS(2828), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2830), 1, - anon_sym_bit_DASHor2, - ACTIONS(2864), 1, - anon_sym_and2, - ACTIONS(2866), 1, - anon_sym_xor2, - ACTIONS(4670), 1, - anon_sym_or2, - STATE(2213), 1, + STATE(2214), 1, sym_comment, - ACTIONS(2808), 2, + ACTIONS(4676), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2812), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2818), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2820), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2824), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2814), 4, + ACTIONS(4678), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2816), 4, + ACTIONS(4680), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2806), 8, + ACTIONS(4672), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194354,53 +194408,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64811] = 18, + ACTIONS(4674), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [64853] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(4543), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(4555), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(4559), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(4573), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, - anon_sym_bit_DASHor2, - ACTIONS(3890), 1, + ACTIONS(4641), 1, anon_sym_and2, - ACTIONS(3892), 1, + ACTIONS(4643), 1, anon_sym_xor2, - ACTIONS(4672), 1, + ACTIONS(4645), 1, + anon_sym_bit_DASHor2, + ACTIONS(4682), 1, anon_sym_or2, - STATE(2214), 1, + STATE(2215), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(4541), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(4545), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(4551), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(4553), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(4557), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(4547), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(4549), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(4539), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194409,53 +194480,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64884] = 18, + [64926] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(3912), 1, + anon_sym_and2, + ACTIONS(3914), 1, + anon_sym_xor2, + ACTIONS(3924), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHand2, - ACTIONS(4641), 1, + ACTIONS(3930), 1, anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, + ACTIONS(3932), 1, anon_sym_bit_DASHor2, - ACTIONS(4645), 1, - anon_sym_and2, - ACTIONS(4647), 1, - anon_sym_xor2, - ACTIONS(4674), 1, + ACTIONS(4684), 1, anon_sym_or2, - STATE(2215), 1, + STATE(2216), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(3920), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(3922), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(3926), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(3916), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(3918), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4635), 8, + ACTIONS(3904), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194464,53 +194535,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64957] = 18, + [64999] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(2948), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(2952), 1, + anon_sym_and2, + ACTIONS(2954), 1, + anon_sym_xor2, + ACTIONS(2964), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(2968), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(2970), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(2972), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, - anon_sym_and2, - ACTIONS(4565), 1, - anon_sym_xor2, - ACTIONS(4676), 1, + ACTIONS(4686), 1, anon_sym_or2, - STATE(2216), 1, + STATE(2217), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(2946), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2950), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(2960), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(2962), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(2966), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(2956), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(2958), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(2944), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194519,25 +194590,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65030] = 7, + [65072] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(2217), 1, + ACTIONS(2786), 1, + anon_sym_DASH2, + ACTIONS(2798), 1, + anon_sym_PLUS2, + ACTIONS(2802), 1, + anon_sym_bit_DASHand2, + ACTIONS(2911), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2913), 1, + anon_sym_bit_DASHor2, + ACTIONS(2915), 1, + anon_sym_and2, + ACTIONS(2917), 1, + anon_sym_xor2, + ACTIONS(4688), 1, + anon_sym_or2, + STATE(2218), 1, sym_comment, - ACTIONS(4682), 2, + ACTIONS(2784), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4684), 4, + ACTIONS(2788), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2794), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2796), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2800), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2790), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4686), 4, + ACTIONS(2792), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4678), 8, + ACTIONS(2782), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194546,70 +194645,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4680), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [65081] = 18, + [65145] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(3854), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(3864), 1, anon_sym_PLUS2, - ACTIONS(2964), 1, + ACTIONS(3872), 1, anon_sym_bit_DASHand2, - ACTIONS(2966), 1, + ACTIONS(3874), 1, anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, + ACTIONS(3876), 1, anon_sym_bit_DASHor2, - ACTIONS(2974), 1, + ACTIONS(3878), 1, anon_sym_and2, - ACTIONS(3024), 1, + ACTIONS(3880), 1, anon_sym_xor2, - ACTIONS(4688), 1, + ACTIONS(4690), 1, anon_sym_or2, - STATE(2218), 1, + STATE(2219), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(3852), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(3856), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(3860), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(3862), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(3866), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(3858), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, + ACTIONS(3870), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2944), 8, + ACTIONS(3868), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194618,12 +194700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65154] = 4, + [65218] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2219), 1, + STATE(2220), 1, sym_comment, - ACTIONS(2098), 8, + ACTIONS(2066), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -194632,7 +194714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2096), 26, + ACTIONS(2064), 26, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -194659,80 +194741,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [65199] = 18, + [65263] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(4561), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(4569), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(4593), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(4595), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(4597), 1, anon_sym_bit_DASHor2, - ACTIONS(3930), 1, + ACTIONS(4637), 1, anon_sym_and2, - ACTIONS(3932), 1, + ACTIONS(4639), 1, anon_sym_xor2, - ACTIONS(4690), 1, + ACTIONS(4692), 1, anon_sym_or2, - STATE(2220), 1, + STATE(2221), 1, sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(4563), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(4565), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(4567), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(4571), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3922), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3920), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [65272] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2221), 1, - sym_comment, - ACTIONS(4694), 2, + ACTIONS(4587), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4696), 4, + ACTIONS(4589), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4698), 4, + ACTIONS(4591), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4692), 8, + ACTIONS(4585), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194741,33 +194796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4680), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [65322] = 5, + [65336] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3715), 1, + ACTIONS(3740), 1, sym_raw_string_begin, - ACTIONS(4700), 1, + ACTIONS(4694), 1, sym__entry_separator, STATE(2222), 2, sym_comment, aux_sym__types_body_repeat2, - ACTIONS(3710), 30, + ACTIONS(3735), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194798,20 +194837,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65368] = 7, - ACTIONS(103), 1, + [65382] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4705), 1, - anon_sym_RBRACE, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4709), 1, - sym_raw_string_begin, - STATE(2222), 1, - aux_sym__types_body_repeat2, - STATE(2223), 1, + ACTIONS(4697), 1, + sym__newline, + STATE(2223), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(4703), 29, + ACTIONS(2062), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_record_token1, + ACTIONS(2057), 24, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194820,102 +194863,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, 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, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [65418] = 25, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [65428] = 25, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1408), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1410), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1412), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1422), 1, sym_raw_string_begin, - ACTIONS(3066), 1, + ACTIONS(3060), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + ACTIONS(4611), 1, anon_sym_null, - ACTIONS(4583), 1, + ACTIONS(4615), 1, sym__newline, - ACTIONS(4587), 1, + ACTIONS(4619), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4623), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(4625), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(4629), 1, sym_val_date, STATE(2224), 1, sym_comment, - STATE(2246), 1, + STATE(2248), 1, aux_sym__collection_body_repeat1, - STATE(2386), 1, + STATE(2415), 1, aux_sym__types_body_repeat1, - STATE(3843), 1, + STATE(3844), 1, sym__val_number_decimal, - STATE(4439), 1, + STATE(4449), 1, sym__collection_entry, - STATE(4928), 1, + STATE(4936), 1, sym_val_bool, - ACTIONS(4577), 2, + ACTIONS(4609), 2, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + ACTIONS(4621), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + ACTIONS(4627), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4239), 2, + STATE(4245), 2, sym_val_string, sym__unquoted_in_record, - STATE(4861), 2, + STATE(4874), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + ACTIONS(4613), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, + STATE(3527), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [65504] = 7, + [65514] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(4702), 1, + anon_sym_RBRACE, + ACTIONS(4704), 1, sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(4706), 1, sym_raw_string_begin, - ACTIONS(4711), 1, - anon_sym_RBRACE, STATE(2222), 1, aux_sym__types_body_repeat2, STATE(2225), 1, sym_comment, - ACTIONS(4703), 29, + ACTIONS(4700), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194945,24 +194982,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65554] = 5, - ACTIONS(3), 1, + [65564] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4713), 1, - sym__newline, - STATE(2226), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1960), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_record_token1, - ACTIONS(1955), 24, + ACTIONS(4704), 1, + sym__entry_separator, + ACTIONS(4706), 1, sym_raw_string_begin, + ACTIONS(4708), 1, + anon_sym_RBRACE, + STATE(2222), 1, + aux_sym__types_body_repeat2, + STATE(2226), 1, + sym_comment, + ACTIONS(4700), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194971,35 +195004,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, 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, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [65600] = 7, + aux_sym_unquoted_token1, + [65614] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(4704), 1, sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(4706), 1, sym_raw_string_begin, - ACTIONS(4716), 1, + ACTIONS(4710), 1, anon_sym_RBRACE, STATE(2222), 1, aux_sym__types_body_repeat2, STATE(2227), 1, sym_comment, - ACTIONS(4703), 29, + ACTIONS(4700), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195029,16 +195068,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65650] = 4, + [65664] = 7, ACTIONS(3), 1, anon_sym_POUND, STATE(2228), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(4714), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4716), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4718), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4712), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(4674), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [65714] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3740), 1, + sym_raw_string_begin, + ACTIONS(4720), 1, + sym__entry_separator, + STATE(2229), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3735), 29, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + 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, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_list_token1, + [65759] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2230), 1, + sym_comment, + ACTIONS(1510), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1480), 29, + ACTIONS(1512), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195068,16 +195190,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [65693] = 4, + [65802] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2229), 1, + STATE(2231), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(1514), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1472), 29, + ACTIONS(1516), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195107,16 +195229,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [65736] = 4, + [65845] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2230), 1, + STATE(2232), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(1518), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1476), 29, + ACTIONS(1520), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195146,100 +195268,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [65779] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, - STATE(2231), 1, - sym_comment, - STATE(2245), 1, - aux_sym__types_body_repeat2, - ACTIONS(4720), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4718), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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_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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [65828] = 7, - ACTIONS(103), 1, + [65888] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, - STATE(2232), 1, + STATE(2233), 1, sym_comment, - STATE(2245), 1, - aux_sym__types_body_repeat2, - ACTIONS(4726), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4718), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + ACTIONS(1506), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1508), 29, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_DOLLAR, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_LBRACE, - 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, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [65877] = 4, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [65931] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2233), 1, + STATE(2234), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1522), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1516), 29, + ACTIONS(1524), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195269,21 +195346,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [65920] = 7, + [65974] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4727), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4729), 1, sym_raw_string_begin, - STATE(2234), 1, - sym_comment, - STATE(2245), 1, + STATE(2229), 1, aux_sym__types_body_repeat2, - ACTIONS(4728), 2, + STATE(2235), 1, + sym_comment, + ACTIONS(4725), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(4723), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195311,21 +195388,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [65969] = 7, + [66023] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4727), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4729), 1, sym_raw_string_begin, - STATE(2235), 1, - sym_comment, - STATE(2245), 1, + STATE(2229), 1, aux_sym__types_body_repeat2, - ACTIONS(4730), 2, + STATE(2236), 1, + sym_comment, + ACTIONS(4731), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(4723), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195353,21 +195430,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66018] = 7, + [66072] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4727), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4729), 1, sym_raw_string_begin, - STATE(2236), 1, - sym_comment, - STATE(2245), 1, + STATE(2229), 1, aux_sym__types_body_repeat2, - ACTIONS(4730), 2, + STATE(2237), 1, + sym_comment, + ACTIONS(4731), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(4723), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195395,27 +195472,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66067] = 8, + [66121] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4477), 1, sym__newline, - ACTIONS(4373), 1, + ACTIONS(4481), 1, anon_sym_LBRACK, - ACTIONS(4378), 1, + ACTIONS(4506), 1, anon_sym_DOT_DOT, - STATE(2237), 1, + STATE(2238), 1, sym_comment, - ACTIONS(4376), 2, + ACTIONS(4444), 2, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(2938), 5, + ACTIONS(2940), 5, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 22, + ACTIONS(2942), 22, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -195438,21 +195515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66118] = 7, + [66172] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4704), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4706), 1, sym_raw_string_begin, - STATE(2238), 1, - sym_comment, - STATE(2245), 1, + STATE(2222), 1, aux_sym__types_body_repeat2, - ACTIONS(4720), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4718), 27, + STATE(2239), 1, + sym_comment, + ACTIONS(4700), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195463,6 +195537,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -195479,16 +195555,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66167] = 4, - ACTIONS(103), 1, + aux_sym_unquoted_token1, + [66219] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2239), 1, + ACTIONS(4733), 1, + sym__newline, + STATE(2240), 2, sym_comment, - ACTIONS(3734), 2, + aux_sym__types_body_repeat1, + ACTIONS(3748), 7, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3750), 23, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195499,9 +195584,43 @@ 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_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [66264] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4727), 1, + sym__entry_separator, + ACTIONS(4729), 1, + sym_raw_string_begin, + STATE(2229), 1, + aux_sym__types_body_repeat2, + STATE(2241), 1, + sym_comment, + ACTIONS(4736), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, + ACTIONS(4723), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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_token1, @@ -195518,19 +195637,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [66210] = 6, + aux_sym__unquoted_in_list_token1, + [66313] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(4727), 1, sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(4729), 1, sym_raw_string_begin, - STATE(2222), 1, + STATE(2229), 1, aux_sym__types_body_repeat2, - STATE(2240), 1, + STATE(2242), 1, sym_comment, - ACTIONS(4703), 29, + ACTIONS(4736), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4723), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195541,8 +195663,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -195559,24 +195679,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [66257] = 5, + aux_sym__unquoted_in_list_token1, + [66362] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4732), 1, - sym__newline, - STATE(2241), 2, + STATE(2243), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, - anon_sym__, + ACTIONS(2066), 7, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3738), 23, + aux_sym__unquoted_in_record_token1, + ACTIONS(2064), 25, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -195584,9 +195701,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -195600,55 +195717,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66302] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2242), 1, - sym_comment, - ACTIONS(1543), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1545), 29, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - [66345] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [66405] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2243), 1, + STATE(2244), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1526), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1468), 29, + ACTIONS(1528), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195678,56 +195758,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [66388] = 4, - ACTIONS(3), 1, + [66448] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2244), 1, + ACTIONS(4727), 1, + sym__entry_separator, + ACTIONS(4729), 1, + sym_raw_string_begin, + STATE(2229), 1, + aux_sym__types_body_repeat2, + STATE(2245), 1, sym_comment, - ACTIONS(2098), 7, - anon_sym_DOLLAR, + ACTIONS(4738), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_record_token1, - ACTIONS(2096), 25, - sym_raw_string_begin, + ACTIONS(4723), 27, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, 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_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, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [66431] = 5, + aux_sym__unquoted_in_list_token1, + [66497] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3715), 1, + STATE(2246), 1, + sym_comment, + ACTIONS(3746), 2, sym_raw_string_begin, - ACTIONS(4735), 1, sym__entry_separator, - STATE(2245), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 29, + ACTIONS(3744), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195735,10 +195816,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, 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, @@ -195756,81 +195838,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66476] = 23, + aux_sym_unquoted_token1, + [66540] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1408), 1, + anon_sym_DQUOTE, + ACTIONS(1410), 1, + anon_sym_SQUOTE, + ACTIONS(1412), 1, + anon_sym_BQUOTE, + ACTIONS(1422), 1, + sym_raw_string_begin, + ACTIONS(3060), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4611), 1, + anon_sym_null, + ACTIONS(4619), 1, + anon_sym_DOT_DOT, + ACTIONS(4623), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4625), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4629), 1, + sym_val_date, + STATE(2247), 1, + sym_comment, + STATE(2249), 1, + aux_sym__collection_body_repeat1, + STATE(3844), 1, + sym__val_number_decimal, + STATE(4452), 1, + sym__collection_entry, + STATE(4936), 1, + sym_val_bool, + ACTIONS(4609), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4621), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4627), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4245), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(4874), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4613), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [66620] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1408), 1, + anon_sym_DQUOTE, + ACTIONS(1410), 1, + anon_sym_SQUOTE, + ACTIONS(1412), 1, + anon_sym_BQUOTE, + ACTIONS(1422), 1, + sym_raw_string_begin, + ACTIONS(3060), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4611), 1, + anon_sym_null, + ACTIONS(4619), 1, + anon_sym_DOT_DOT, + ACTIONS(4623), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4625), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4629), 1, + sym_val_date, + STATE(2248), 1, + sym_comment, + STATE(2249), 1, + aux_sym__collection_body_repeat1, + STATE(3844), 1, + sym__val_number_decimal, + STATE(4448), 1, + sym__collection_entry, + STATE(4936), 1, + sym_val_bool, + ACTIONS(4609), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4621), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4627), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4245), 2, + sym_val_string, + sym__unquoted_in_record, + STATE(4874), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4613), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [66700] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + ACTIONS(4743), 1, anon_sym_null, - ACTIONS(4587), 1, + ACTIONS(4749), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4755), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(4758), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(4764), 1, sym_val_date, - STATE(2246), 1, - sym_comment, - STATE(2249), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, + ACTIONS(4767), 1, + anon_sym_DQUOTE, + ACTIONS(4770), 1, + anon_sym_SQUOTE, + ACTIONS(4773), 1, + anon_sym_BQUOTE, + ACTIONS(4776), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4779), 1, + sym_raw_string_begin, + STATE(3844), 1, sym__val_number_decimal, - STATE(4445), 1, + STATE(4722), 1, sym__collection_entry, - STATE(4928), 1, + STATE(4936), 1, sym_val_bool, - ACTIONS(4577), 2, + ACTIONS(4740), 2, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + ACTIONS(4752), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + ACTIONS(4761), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4239), 2, + STATE(2249), 2, + sym_comment, + aux_sym__collection_body_repeat1, + STATE(4618), 2, sym_val_string, sym__unquoted_in_record, - STATE(4861), 2, + STATE(4874), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + ACTIONS(4746), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, + STATE(3527), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [66556] = 5, - ACTIONS(3), 1, + [66778] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4738), 1, - sym__newline, - STATE(2247), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 6, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3738), 23, + ACTIONS(4727), 1, + sym__entry_separator, + ACTIONS(4729), 1, sym_raw_string_begin, + STATE(2229), 1, + aux_sym__types_body_repeat2, + STATE(2250), 1, + sym_comment, + ACTIONS(4723), 28, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195841,27 +196031,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, 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, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66600] = 4, + aux_sym__unquoted_in_list_token1, + [66824] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2248), 1, + STATE(2251), 1, sym_comment, - ACTIONS(3734), 2, + ACTIONS(3746), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(3732), 29, + ACTIONS(3744), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195891,133 +196087,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66642] = 22, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_null, - ACTIONS(4750), 1, - anon_sym_DOT_DOT, - ACTIONS(4756), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4759), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4765), 1, - sym_val_date, - ACTIONS(4768), 1, - anon_sym_DQUOTE, - ACTIONS(4771), 1, - anon_sym_SQUOTE, - ACTIONS(4774), 1, - anon_sym_BQUOTE, - ACTIONS(4777), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4780), 1, - sym_raw_string_begin, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4729), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - ACTIONS(4741), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4753), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4762), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2249), 2, - sym_comment, - aux_sym__collection_body_repeat1, - STATE(4618), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4747), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66720] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - STATE(2249), 1, - aux_sym__collection_body_repeat1, - STATE(2250), 1, - sym_comment, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4441), 1, - sym__collection_entry, - STATE(4928), 1, - sym_val_bool, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4239), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66800] = 4, + [66866] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2251), 1, + ACTIONS(4782), 1, + sym__newline, + STATE(2252), 2, sym_comment, - ACTIONS(2938), 7, - anon_sym__, + aux_sym__types_body_repeat1, + ACTIONS(3748), 6, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2940), 24, + aux_sym__unquoted_in_list_token1, + ACTIONS(3750), 23, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -196025,7 +196110,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -196042,59 +196126,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66842] = 6, - ACTIONS(103), 1, + [66910] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, - STATE(2245), 1, - aux_sym__types_body_repeat2, - STATE(2252), 1, + STATE(2253), 1, sym_comment, - ACTIONS(4718), 28, + ACTIONS(2940), 7, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2942), 24, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, 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, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66888] = 4, + [66952] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2253), 1, + STATE(2254), 1, sym_comment, - ACTIONS(2938), 6, + ACTIONS(2940), 6, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 24, + ACTIONS(2942), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -196119,14 +196201,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66929] = 6, + [66993] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2254), 1, + STATE(2255), 1, sym_comment, - STATE(3109), 1, + STATE(3116), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(4787), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196135,7 +196217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(4789), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196144,7 +196226,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(4783), 13, + ACTIONS(4785), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196158,14 +196240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [66974] = 6, + [67038] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2255), 1, + STATE(2256), 1, sym_comment, - STATE(3079), 1, + STATE(3150), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(4787), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196174,7 +196256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(4789), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196183,7 +196265,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(4789), 13, + ACTIONS(4791), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196197,14 +196279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [67019] = 6, + [67083] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2256), 1, + STATE(2257), 1, sym_comment, - STATE(3295), 1, + STATE(3278), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(4793), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196213,7 +196295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(4795), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196223,6 +196305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, ACTIONS(4791), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196234,8 +196317,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, - [67063] = 25, + [67127] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196246,89 +196328,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4801), 1, anon_sym_DASH2, - ACTIONS(4799), 1, + ACTIONS(4803), 1, anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2257), 1, + STATE(2258), 1, sym_comment, - STATE(2370), 1, + STATE(2259), 1, + aux_sym__repeat_newline, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2776), 1, + STATE(2708), 1, sym__binary_predicate_parenthesized, - STATE(2777), 1, + STATE(2710), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - STATE(3134), 1, + STATE(3120), 1, sym_val_closure, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67145] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2258), 1, - sym_comment, - ACTIONS(1556), 2, - anon_sym_EQ, - anon_sym_DOT_DOT2, - ACTIONS(1558), 27, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [67185] = 25, + [67209] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196339,60 +196385,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4801), 1, anon_sym_DASH2, - ACTIONS(4799), 1, + ACTIONS(4803), 1, anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2257), 1, - aux_sym__repeat_newline, STATE(2259), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2763), 1, + STATE(2765), 1, sym__binary_predicate_parenthesized, - STATE(2770), 1, + STATE(2767), 1, sym_where_predicate, - STATE(3096), 1, + STATE(3040), 1, + aux_sym__repeat_newline, + STATE(3138), 1, sym_val_closure, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67267] = 6, + [67291] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2260), 1, sym_comment, - STATE(3230), 1, + STATE(3250), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(4787), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196401,7 +196447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(4789), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196410,7 +196456,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(4803), 12, + ACTIONS(4807), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196423,14 +196469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [67311] = 6, + [67335] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2261), 1, sym_comment, - STATE(3334), 1, + STATE(3338), 1, sym_redirection, - ACTIONS(4805), 8, + ACTIONS(4793), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196439,7 +196485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4807), 8, + ACTIONS(4795), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196448,7 +196494,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(4789), 12, + ACTIONS(4785), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -196461,14 +196507,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, - [67355] = 6, + [67379] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2262), 1, sym_comment, - STATE(3229), 1, + ACTIONS(1568), 2, + anon_sym_EQ, + anon_sym_DOT_DOT2, + ACTIONS(1570), 27, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [67419] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2263), 1, + sym_comment, + STATE(3268), 1, sym_redirection, - ACTIONS(4805), 8, + ACTIONS(4787), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196477,7 +196559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4807), 8, + ACTIONS(4789), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196486,8 +196568,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(4783), 12, - ts_builtin_sym_end, + ACTIONS(4809), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196499,21 +196580,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, - [67399] = 7, + anon_sym_RPAREN, + [67463] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4809), 1, - anon_sym_QMARK2, ACTIONS(4811), 1, + anon_sym_QMARK2, + ACTIONS(4813), 1, anon_sym_BANG, - STATE(437), 1, + STATE(434), 1, sym__path_suffix, - STATE(2263), 1, + STATE(2264), 1, sym_comment, - ACTIONS(1446), 2, + ACTIONS(1476), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1448), 23, + ACTIONS(1478), 23, anon_sym_if, anon_sym_in, sym__newline, @@ -196537,7 +196619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [67444] = 23, + [67508] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196548,49 +196630,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2264), 1, + STATE(2265), 1, sym_comment, - STATE(2370), 1, + STATE(2275), 1, + aux_sym__repeat_newline, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2759), 1, + STATE(2804), 1, sym__binary_predicate_parenthesized, - STATE(2765), 1, + STATE(2805), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67520] = 23, + [67584] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + ACTIONS(4815), 1, + anon_sym_DOT, + STATE(2266), 1, + sym_comment, + STATE(2405), 1, + sym__immediate_decimal, + ACTIONS(4817), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4819), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2514), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1590), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [67636] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196601,49 +196724,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4803), 1, + anon_sym_LBRACE, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2264), 1, - aux_sym__repeat_newline, - STATE(2265), 1, + STATE(2267), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2749), 1, - sym__binary_predicate_parenthesized, - STATE(2750), 1, + STATE(2645), 1, + sym__binary_predicate, + STATE(2648), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3139), 1, + sym_val_closure, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67596] = 23, + [67712] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196654,49 +196777,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2266), 1, + STATE(2268), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2718), 1, + STATE(2705), 1, sym__binary_predicate_parenthesized, - STATE(2719), 1, + STATE(2706), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3040), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67672] = 23, + [67788] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196707,49 +196830,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2267), 1, + STATE(2269), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2672), 1, + STATE(2714), 1, sym__binary_predicate_parenthesized, - STATE(2673), 1, + STATE(2717), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3040), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67748] = 23, + [67864] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196760,49 +196883,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, ACTIONS(4797), 1, - anon_sym_DASH2, + sym__newline, ACTIONS(4799), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2268), 1, + STATE(2270), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2743), 1, - sym__binary_predicate, - STATE(2744), 1, + STATE(2731), 1, + sym__binary_predicate_parenthesized, + STATE(2747), 1, sym_where_predicate, - STATE(3161), 1, - sym_val_closure, - ACTIONS(1937), 2, + STATE(3040), 1, + aux_sym__repeat_newline, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67824] = 23, + [67940] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196813,49 +196936,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2269), 1, + STATE(2271), 1, sym_comment, - STATE(2279), 1, + STATE(2286), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2727), 1, + STATE(2754), 1, sym__binary_predicate_parenthesized, - STATE(2729), 1, + STATE(2756), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67900] = 23, + [68016] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196866,49 +196989,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2270), 1, + STATE(2272), 1, sym_comment, - STATE(2280), 1, + STATE(2287), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2738), 1, + STATE(2758), 1, sym__binary_predicate_parenthesized, - STATE(2739), 1, + STATE(2759), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67976] = 23, + [68092] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196919,49 +197042,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2271), 1, + STATE(2273), 1, sym_comment, - STATE(2281), 1, + STATE(2289), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2746), 1, + STATE(2760), 1, sym__binary_predicate_parenthesized, - STATE(2753), 1, + STATE(2768), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68052] = 23, + [68168] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196972,87 +197095,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2272), 1, + STATE(2274), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2754), 1, + STATE(2774), 1, sym__binary_predicate_parenthesized, - STATE(2755), 1, + STATE(2778), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3040), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68128] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1432), 1, - anon_sym_DOT_DOT2, - ACTIONS(4813), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2258), 1, - sym_cell_path, - STATE(2273), 1, - sym_comment, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 22, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [68174] = 23, + [68244] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197063,49 +197148,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2274), 1, + STATE(2275), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2771), 1, + STATE(2784), 1, sym__binary_predicate_parenthesized, - STATE(2772), 1, + STATE(2785), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3040), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68250] = 23, + [68320] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197116,49 +197201,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2275), 1, + STATE(2276), 1, sym_comment, - STATE(2289), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2775), 1, + STATE(2792), 1, sym__binary_predicate_parenthesized, - STATE(2781), 1, + STATE(2799), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3040), 1, + aux_sym__repeat_newline, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68326] = 23, + [68396] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197169,49 +197254,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2267), 1, - aux_sym__repeat_newline, - STATE(2276), 1, + STATE(2277), 1, sym_comment, - STATE(2370), 1, + STATE(2290), 1, + aux_sym__repeat_newline, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2788), 1, + STATE(2812), 1, sym__binary_predicate_parenthesized, - STATE(2804), 1, + STATE(2813), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68402] = 23, + [68472] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197222,49 +197307,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2277), 1, - sym_comment, STATE(2278), 1, + sym_comment, + STATE(2291), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2646), 1, + STATE(2814), 1, sym__binary_predicate_parenthesized, - STATE(2680), 1, + STATE(2815), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68478] = 23, + [68548] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1667), 1, + anon_sym_DOT_DOT2, + ACTIONS(4821), 1, + anon_sym_DOT2, + STATE(451), 1, + sym_path, + STATE(469), 1, + sym_cell_path, + STATE(2279), 1, + sym_comment, + STATE(2293), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1665), 22, + anon_sym_if, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [68594] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197275,49 +197398,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2278), 1, + STATE(2268), 1, + aux_sym__repeat_newline, + STATE(2280), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2676), 1, + STATE(2772), 1, sym__binary_predicate_parenthesized, - STATE(2677), 1, + STATE(2773), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68554] = 23, + [68670] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197328,49 +197451,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2279), 1, + STATE(2269), 1, + aux_sym__repeat_newline, + STATE(2281), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2649), 1, + STATE(2775), 1, sym__binary_predicate_parenthesized, - STATE(2650), 1, + STATE(2777), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68630] = 23, + [68746] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197381,49 +197504,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2280), 1, + STATE(2270), 1, + aux_sym__repeat_newline, + STATE(2282), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2654), 1, + STATE(2781), 1, sym__binary_predicate_parenthesized, - STATE(2655), 1, + STATE(2782), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68706] = 23, + [68822] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197434,49 +197557,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2281), 1, + STATE(2274), 1, + aux_sym__repeat_newline, + STATE(2283), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2658), 1, + STATE(2786), 1, sym__binary_predicate_parenthesized, - STATE(2659), 1, + STATE(2788), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68782] = 23, + [68898] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197487,73 +197610,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, + ACTIONS(1592), 1, + anon_sym_DOLLAR, ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(4797), 1, + sym__newline, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(4801), 1, anon_sym_DASH2, - ACTIONS(4821), 1, - anon_sym_LBRACE, - STATE(1294), 1, + ACTIONS(4805), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2282), 1, + STATE(2276), 1, + aux_sym__repeat_newline, + STATE(2284), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2823), 1, - sym__binary_predicate, - STATE(2827), 1, + STATE(2808), 1, + sym__binary_predicate_parenthesized, + STATE(2809), 1, sym_where_predicate, - STATE(3287), 1, - sym_val_closure, - ACTIONS(2174), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68858] = 11, + [68974] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(4823), 1, - anon_sym_DOT, - STATE(2283), 1, + ACTIONS(1460), 1, + anon_sym_DOT_DOT2, + ACTIONS(4821), 1, + anon_sym_DOT2, + STATE(451), 1, + sym_path, + STATE(2262), 1, + sym_cell_path, + STATE(2285), 1, sym_comment, - STATE(2409), 1, - sym__immediate_decimal, - ACTIONS(4825), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4827), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2503), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 16, + STATE(2293), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1462), 22, + anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -197566,11 +197682,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, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [68910] = 23, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [69020] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197581,49 +197701,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2284), 1, + STATE(2286), 1, sym_comment, - STATE(2288), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2730), 1, + STATE(2664), 1, sym__binary_predicate_parenthesized, - STATE(2731), 1, + STATE(2668), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3040), 1, + aux_sym__repeat_newline, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68986] = 23, + [69096] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197634,49 +197754,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2285), 1, + STATE(2287), 1, sym_comment, - STATE(2294), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2732), 1, + STATE(2671), 1, sym__binary_predicate_parenthesized, - STATE(2740), 1, + STATE(2673), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3040), 1, + aux_sym__repeat_newline, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69062] = 23, + [69172] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197687,49 +197807,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(2694), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4823), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_DOLLAR, + ACTIONS(4827), 1, + anon_sym_DASH2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(1269), 1, + sym__expr_unary_minus, + STATE(2288), 1, + sym_comment, + STATE(2378), 1, + sym_val_string, + STATE(2411), 1, + sym__where_predicate_lhs_path_head, + STATE(2557), 1, + sym__where_predicate_lhs, + STATE(2866), 1, + sym__binary_predicate, + STATE(2867), 1, + sym_where_predicate, + STATE(3263), 1, + sym_val_closure, + ACTIONS(2272), 2, + anon_sym_true, + anon_sym_false, + STATE(2228), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2870), 2, + sym_expr_unary, + sym_val_bool, + STATE(419), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69248] = 23, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2266), 1, - aux_sym__repeat_newline, - STATE(2286), 1, + STATE(2289), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2741), 1, + STATE(2676), 1, sym__binary_predicate_parenthesized, - STATE(2742), 1, + STATE(2677), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3040), 1, + aux_sym__repeat_newline, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69138] = 23, + [69324] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197740,49 +197913,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2272), 1, - aux_sym__repeat_newline, - STATE(2287), 1, + STATE(2290), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2747), 1, + STATE(2690), 1, sym__binary_predicate_parenthesized, - STATE(2748), 1, + STATE(2691), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3040), 1, + aux_sym__repeat_newline, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69214] = 23, + [69400] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197793,49 +197966,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2288), 1, + STATE(2291), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2697), 1, + STATE(2694), 1, sym__binary_predicate_parenthesized, - STATE(2698), 1, + STATE(2695), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3040), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69290] = 23, + [69476] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197846,62 +198019,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4797), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2289), 1, + STATE(2292), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2668), 1, + STATE(2698), 1, sym__binary_predicate_parenthesized, - STATE(2669), 1, + STATE(2699), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3040), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69366] = 7, + [69552] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1458), 1, + ACTIONS(1534), 1, anon_sym_DOT_DOT2, - ACTIONS(4813), 1, + ACTIONS(4821), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(451), 1, sym_path, - STATE(2290), 1, + STATE(2293), 1, sym_comment, - STATE(2291), 1, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 23, + ACTIONS(1536), 23, anon_sym_if, anon_sym_in, sym__newline, @@ -197925,19 +198098,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [69410] = 6, + [69596] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1524), 1, + ACTIONS(1538), 1, anon_sym_DOT_DOT2, - ACTIONS(4829), 1, + ACTIONS(4831), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(451), 1, sym_path, - STATE(2291), 2, + STATE(2294), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 23, + ACTIONS(1540), 23, anon_sym_if, anon_sym_in, sym__newline, @@ -197961,60 +198134,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [69452] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_DOT_DOT2, - ACTIONS(4813), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(465), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2292), 1, - sym_comment, - ACTIONS(1679), 22, - anon_sym_if, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69498] = 8, + [69638] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, + ACTIONS(1657), 1, anon_sym_DOT_DOT2, - ACTIONS(4813), 1, + ACTIONS(4821), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(451), 1, sym_path, - STATE(466), 1, + STATE(475), 1, sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(2293), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2295), 1, sym_comment, - ACTIONS(1641), 22, + ACTIONS(1655), 22, anon_sym_if, sym__newline, anon_sym_SEMI, @@ -198037,7 +198172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [69544] = 23, + [69684] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198048,158 +198183,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, - anon_sym_LPAREN, ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2294), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2703), 1, - sym__binary_predicate_parenthesized, - STATE(2712), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [69620] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4793), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2274), 1, + STATE(2292), 1, aux_sym__repeat_newline, - STATE(2295), 1, + STATE(2296), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2751), 1, + STATE(2646), 1, sym__binary_predicate_parenthesized, - STATE(2752), 1, + STATE(2647), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69696] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1700), 1, - anon_sym_BANG, - STATE(2296), 1, - sym_comment, - ACTIONS(1438), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 23, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69735] = 10, + [69760] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, + ACTIONS(4834), 1, anon_sym_DOLLAR, + ACTIONS(4836), 1, + anon_sym_DOT, STATE(2297), 1, sym_comment, - STATE(2502), 1, + STATE(2427), 1, sym__immediate_decimal, - ACTIONS(1592), 2, + ACTIONS(4838), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1594), 2, + ACTIONS(4840), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2501), 2, + STATE(2579), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 16, + ACTIONS(1590), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198211,37 +198262,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69784] = 11, + [69811] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1651), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - ACTIONS(4834), 1, + ACTIONS(1629), 1, anon_sym_DOT, + ACTIONS(2881), 1, + anon_sym_DOLLAR, STATE(2298), 1, sym_comment, - STATE(2436), 1, + STATE(2513), 1, sym__immediate_decimal, - ACTIONS(4836), 2, + ACTIONS(1600), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4838), 2, + ACTIONS(1602), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2580), 2, + STATE(2512), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 15, - ts_builtin_sym_end, + ACTIONS(1625), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198253,32 +198299,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69835] = 10, + [69860] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1606), 1, sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(2881), 1, anon_sym_DOLLAR, STATE(2299), 1, sym_comment, - STATE(2533), 1, + STATE(2524), 1, sym__immediate_decimal, - ACTIONS(4840), 2, + ACTIONS(4842), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, + ACTIONS(4844), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(809), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 16, + ACTIONS(1590), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198295,29 +198343,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69884] = 10, + [69909] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, + ACTIONS(1683), 1, + anon_sym_BANG, STATE(2300), 1, sym_comment, - STATE(2535), 1, - sym__immediate_decimal, - ACTIONS(4840), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 16, + ACTIONS(1466), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1468), 23, + anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198330,34 +198368,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_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69933] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [69948] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1651), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(1645), 1, + sym__unquoted_pattern, + ACTIONS(2881), 1, anon_sym_DOLLAR, STATE(2301), 1, sym_comment, - STATE(2603), 1, + STATE(2580), 1, sym__immediate_decimal, - ACTIONS(4844), 2, + ACTIONS(4842), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, + ACTIONS(4844), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1311), 2, + STATE(776), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 15, - ts_builtin_sym_end, + ACTIONS(1641), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198369,10 +198411,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69981] = 21, + [69997] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198383,116 +198427,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(2694), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(4823), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, + ACTIONS(4825), 1, anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(4827), 1, anon_sym_DASH2, - STATE(1294), 1, + STATE(1269), 1, sym__expr_unary_minus, STATE(2302), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2854), 1, - sym__binary_predicate, - STATE(2855), 1, - sym_where_predicate, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70051] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2303), 1, - sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2557), 1, sym__where_predicate_lhs, STATE(2861), 1, sym__binary_predicate, - STATE(2862), 1, + STATE(2877), 1, sym_where_predicate, - ACTIONS(2174), 2, + ACTIONS(2272), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2228), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2870), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70121] = 10, + [70067] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1645), 1, sym__unquoted_pattern, - ACTIONS(1651), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(4834), 1, anon_sym_DOLLAR, - STATE(2304), 1, + STATE(2303), 1, sym_comment, - STATE(2618), 1, + STATE(2612), 1, sym__immediate_decimal, - ACTIONS(4844), 2, + ACTIONS(4846), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, + ACTIONS(4848), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1343), 2, + STATE(1284), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1631), 15, + ACTIONS(1641), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -198508,7 +198503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70169] = 21, + [70115] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198519,176 +198514,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2694), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4805), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4823), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4825), 1, + anon_sym_DOLLAR, + ACTIONS(4827), 1, anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(1269), 1, sym__expr_unary_minus, - STATE(2305), 1, + STATE(2304), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2557), 1, sym__where_predicate_lhs, - STATE(2798), 1, - sym__binary_predicate, - STATE(2799), 1, + STATE(2855), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(2903), 1, + sym__binary_predicate, + ACTIONS(2272), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2228), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2870), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70239] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(722), 1, - sym__immediate_decimal, - STATE(2306), 1, - sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(721), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [70285] = 9, + [70185] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(4834), 1, anon_sym_DOLLAR, - STATE(737), 1, - sym__immediate_decimal, - STATE(2307), 1, + STATE(2305), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(736), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [70331] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(739), 1, + STATE(2604), 1, sym__immediate_decimal, - STATE(2308), 1, - sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(4846), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(738), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [70377] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(741), 1, - sym__immediate_decimal, - STATE(2309), 1, - sym_comment, - ACTIONS(1594), 2, + ACTIONS(4848), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(740), 2, + STATE(1319), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 16, + ACTIONS(1590), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198700,12 +198587,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70423] = 21, + [70233] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198716,45 +198601,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2310), 1, + STATE(2306), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2800), 1, + STATE(2733), 1, sym__binary_predicate, - STATE(2801), 1, + STATE(2738), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70493] = 21, + [70303] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198765,45 +198650,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2311), 1, + STATE(2307), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2802), 1, + STATE(2739), 1, sym__binary_predicate, - STATE(2803), 1, + STATE(2741), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70563] = 21, + [70373] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198814,124 +198699,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2312), 1, + STATE(2308), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2805), 1, + STATE(2743), 1, sym__binary_predicate, - STATE(2808), 1, + STATE(2744), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70633] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4848), 1, - anon_sym_DOT, - ACTIONS(4850), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, - aux_sym__immediate_decimal_token2, - STATE(2313), 1, - sym_comment, - STATE(2509), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2608), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 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, - [70687] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(1687), 1, - anon_sym_DOT, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(2314), 1, - sym_comment, - STATE(2579), 1, - sym__immediate_decimal, - ACTIONS(1655), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2578), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [70735] = 21, + [70443] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198942,45 +198748,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2315), 1, + STATE(2309), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2809), 1, + STATE(2745), 1, sym__binary_predicate, - STATE(2810), 1, + STATE(2746), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70805] = 21, + [70513] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198991,45 +198797,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, ACTIONS(4801), 1, + anon_sym_DASH2, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2316), 1, + STATE(2310), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2812), 1, + STATE(2748), 1, sym__binary_predicate, - STATE(2813), 1, + STATE(2749), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70875] = 21, + [70583] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199040,143 +198846,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2317), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2864), 1, - sym__binary_predicate, - STATE(2865), 1, - sym_where_predicate, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70945] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2318), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2890), 1, - sym_where_predicate, - STATE(2915), 1, - sym__binary_predicate, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71015] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, anon_sym_DASH2, - STATE(1294), 1, + ACTIONS(4805), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(901), 1, sym__expr_unary_minus, - STATE(2319), 1, + STATE(2311), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2554), 1, sym__where_predicate_lhs, - STATE(2856), 1, + STATE(2750), 1, sym__binary_predicate, - STATE(2858), 1, + STATE(2751), 1, sym_where_predicate, - ACTIONS(2174), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2214), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2652), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71085] = 21, + [70653] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199187,57 +198895,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(2694), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, + ACTIONS(4805), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(4823), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, + ACTIONS(4825), 1, anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(4827), 1, anon_sym_DASH2, - STATE(1294), 1, + STATE(1269), 1, sym__expr_unary_minus, - STATE(2320), 1, + STATE(2312), 1, sym_comment, - STATE(2370), 1, + STATE(2378), 1, sym_val_string, - STATE(2389), 1, + STATE(2411), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2557), 1, sym__where_predicate_lhs, - STATE(2859), 1, + STATE(2842), 1, sym__binary_predicate, - STATE(2860), 1, + STATE(2884), 1, sym_where_predicate, - ACTIONS(2174), 2, + ACTIONS(2272), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2228), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2870), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(419), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71155] = 6, + [70723] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4856), 1, - anon_sym_DOT, - ACTIONS(4858), 1, - aux_sym__immediate_decimal_token5, - STATE(2321), 1, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(741), 1, + sym__immediate_decimal, + STATE(2313), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(1602), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1635), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(739), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1651), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199254,24 +198970,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71195] = 6, + [70769] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4860), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4862), 1, - aux_sym__immediate_decimal_token5, - STATE(2322), 1, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(747), 1, + sym__immediate_decimal, + STATE(2314), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(1602), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1635), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(743), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1631), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199288,58 +199007,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71235] = 9, + [70815] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(2881), 1, anon_sym_DOLLAR, - STATE(1342), 1, + STATE(752), 1, sym__immediate_decimal, - STATE(2323), 1, + STATE(2315), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1602), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1635), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1341), 2, + STATE(749), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [71280] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym__immediate_decimal_token5, - STATE(2324), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(1647), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199356,37 +199044,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71317] = 12, + [70861] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1590), 1, sym__space, - ACTIONS(3212), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR, ACTIONS(4850), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT, ACTIONS(4852), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4854), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4866), 1, - anon_sym_DOT, - STATE(2325), 1, + STATE(2316), 1, sym_comment, - STATE(2607), 1, + STATE(2510), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(4856), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2606), 2, + STATE(2621), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 13, + ACTIONS(1594), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199400,35 +199085,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [71368] = 13, - ACTIONS(103), 1, + [70915] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3251), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4868), 1, + ACTIONS(1700), 1, anon_sym_DOT, - ACTIONS(4870), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, - aux_sym__immediate_decimal_token2, - STATE(2326), 1, + ACTIONS(4834), 1, + anon_sym_DOLLAR, + STATE(2317), 1, sym_comment, - STATE(2560), 1, + STATE(2578), 1, sym__immediate_decimal, - ACTIONS(1596), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4874), 2, + ACTIONS(1677), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1679), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2706), 2, + STATE(2577), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 11, + ACTIONS(1625), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199440,20 +199120,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, - [71421] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [70963] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4876), 1, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2694), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4823), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_DOLLAR, + ACTIONS(4827), 1, + anon_sym_DASH2, + STATE(1269), 1, + sym__expr_unary_minus, + STATE(2318), 1, + sym_comment, + STATE(2378), 1, + sym_val_string, + STATE(2411), 1, + sym__where_predicate_lhs_path_head, + STATE(2557), 1, + sym__where_predicate_lhs, + STATE(2880), 1, + sym__binary_predicate, + STATE(2882), 1, + sym_where_predicate, + ACTIONS(2272), 2, + anon_sym_true, + anon_sym_false, + STATE(2228), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2870), 2, + sym_expr_unary, + sym_val_bool, + STATE(419), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71033] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4858), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4878), 1, + ACTIONS(4860), 1, aux_sym__immediate_decimal_token5, - STATE(2327), 1, + STATE(2319), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 20, - ts_builtin_sym_end, + ACTIONS(741), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199465,6 +199196,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_and2, anon_sym_xor2, anon_sym_or2, @@ -199473,20 +199206,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71460] = 6, + [71073] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4880), 1, + ACTIONS(4862), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4864), 1, aux_sym__immediate_decimal_token5, - STATE(2328), 1, + STATE(2320), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 20, - ts_builtin_sym_end, + ACTIONS(749), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199498,6 +199230,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_and2, anon_sym_xor2, anon_sym_or2, @@ -199506,32 +199240,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71499] = 12, - ACTIONS(103), 1, + [71113] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2694), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4823), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_DOLLAR, + ACTIONS(4827), 1, + anon_sym_DASH2, + STATE(1269), 1, + sym__expr_unary_minus, + STATE(2321), 1, + sym_comment, + STATE(2378), 1, + sym_val_string, + STATE(2411), 1, + sym__where_predicate_lhs_path_head, + STATE(2557), 1, + sym__where_predicate_lhs, + STATE(2887), 1, + sym__binary_predicate, + STATE(2888), 1, + sym_where_predicate, + ACTIONS(2272), 2, + anon_sym_true, + anon_sym_false, + STATE(2228), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2870), 2, + sym_expr_unary, + sym_val_bool, + STATE(419), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71183] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2694), 1, + aux_sym_expr_unary_token1, + ACTIONS(4805), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4823), 1, + anon_sym_LPAREN, + ACTIONS(4825), 1, + anon_sym_DOLLAR, + ACTIONS(4827), 1, + anon_sym_DASH2, + STATE(1269), 1, + sym__expr_unary_minus, + STATE(2322), 1, + sym_comment, + STATE(2378), 1, + sym_val_string, + STATE(2411), 1, + sym__where_predicate_lhs_path_head, + STATE(2557), 1, + sym__where_predicate_lhs, + STATE(2897), 1, + sym__binary_predicate, + STATE(2898), 1, + sym_where_predicate, + ACTIONS(2272), 2, + anon_sym_true, + anon_sym_false, + STATE(2228), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2870), 2, + sym_expr_unary, + sym_val_bool, + STATE(419), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71253] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__space, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(2881), 1, anon_sym_DOLLAR, - ACTIONS(4884), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, - aux_sym__immediate_decimal_token2, - STATE(2329), 1, - sym_comment, - STATE(2713), 1, + STATE(873), 1, sym__immediate_decimal, - ACTIONS(4888), 2, + STATE(2323), 1, + sym_comment, + ACTIONS(1602), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3013), 2, + ACTIONS(1635), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(872), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 13, + ACTIONS(1625), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199545,32 +199372,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [71550] = 12, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [71299] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1590), 1, sym__space, - ACTIONS(1615), 1, + ACTIONS(1606), 1, sym__unquoted_pattern, - ACTIONS(3212), 1, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR, - ACTIONS(4884), 1, + ACTIONS(4866), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, + ACTIONS(4868), 1, aux_sym__immediate_decimal_token2, - STATE(2330), 1, + STATE(2324), 1, sym_comment, - STATE(2708), 1, + STATE(2802), 1, sym__immediate_decimal, - ACTIONS(4888), 2, + ACTIONS(4870), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2982), 2, + STATE(3055), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 13, + ACTIONS(1594), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199584,27 +199414,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [71601] = 10, + [71350] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(4890), 1, - anon_sym_DOT_DOT2, - ACTIONS(4894), 1, - sym_filesize_unit, - ACTIONS(4896), 1, - sym_duration_unit, - STATE(2331), 1, + ACTIONS(4864), 1, + aux_sym__immediate_decimal_token5, + STATE(2325), 1, sym_comment, - STATE(4739), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4892), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 16, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199621,27 +199441,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71648] = 9, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71387] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(4834), 1, anon_sym_DOLLAR, - STATE(1337), 1, + STATE(1317), 1, sym__immediate_decimal, - STATE(2332), 1, + STATE(2326), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1679), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1710), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1336), 2, + STATE(1316), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1667), 15, + ACTIONS(1625), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199657,27 +199482,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71693] = 9, + [71432] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(4834), 1, anon_sym_DOLLAR, - STATE(1271), 1, + STATE(1279), 1, sym__immediate_decimal, - STATE(2333), 1, + STATE(2327), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1679), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1710), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1269), 2, + STATE(1278), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 15, + ACTIONS(1651), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199693,27 +199518,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71738] = 9, + [71477] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(4834), 1, anon_sym_DOLLAR, - STATE(1340), 1, + STATE(1281), 1, sym__immediate_decimal, - STATE(2334), 1, + STATE(2328), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1679), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1710), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1339), 2, + STATE(1280), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1671), 15, + ACTIONS(1631), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199729,17 +199554,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71783] = 5, + [71522] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4858), 1, - aux_sym__immediate_decimal_token5, - STATE(2335), 1, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + ACTIONS(4834), 1, + anon_sym_DOLLAR, + STATE(1283), 1, + sym__immediate_decimal, + STATE(2329), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(1679), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1710), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1282), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1647), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199751,25 +199587,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71820] = 4, + [71567] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2336), 1, + ACTIONS(4872), 1, + aux_sym__immediate_decimal_token5, + STATE(2330), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(773), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199791,19 +199622,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71854] = 6, - ACTIONS(3), 1, + [71604] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4898), 1, + ACTIONS(1625), 1, + sym__space, + ACTIONS(3096), 1, + anon_sym_LPAREN2, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + ACTIONS(4852), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4900), 1, - aux_sym__immediate_decimal_token5, - STATE(2337), 1, + ACTIONS(4854), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(4874), 1, + anon_sym_DOT, + STATE(2331), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 19, + STATE(2620), 1, + sym__immediate_decimal, + ACTIONS(4856), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2619), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1627), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199817,33 +199661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [71892] = 10, + [71655] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, - ACTIONS(4902), 1, - anon_sym_DOT_DOT2, - ACTIONS(4906), 1, - sym_filesize_unit, - ACTIONS(4908), 1, - sym_duration_unit, - STATE(2338), 1, + ACTIONS(4876), 1, + anon_sym_DOT, + ACTIONS(4878), 1, + aux_sym__immediate_decimal_token5, + STATE(2332), 1, sym_comment, - STATE(4775), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4904), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 15, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199859,15 +199689,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71938] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71694] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2339), 1, + ACTIONS(4880), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4882), 1, + aux_sym__immediate_decimal_token5, + STATE(2333), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 21, + ACTIONS(741), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199879,8 +199719,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_and2, anon_sym_xor2, anon_sym_or2, @@ -199889,33 +199727,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71972] = 12, + [71733] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(3232), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4870), 1, + ACTIONS(4884), 1, + anon_sym_DOT, + ACTIONS(4886), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, + ACTIONS(4888), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4910), 1, - anon_sym_DOT, - STATE(2340), 1, + STATE(2334), 1, sym_comment, - STATE(2705), 1, + STATE(2556), 1, sym__immediate_decimal, - ACTIONS(1582), 2, + ACTIONS(1590), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, + ACTIONS(4890), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2704), 2, + STATE(2667), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 11, + ACTIONS(1594), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199927,52 +199767,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, - [72022] = 11, - ACTIONS(103), 1, + [71786] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, + ACTIONS(1734), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, - aux_sym__immediate_decimal_token2, - STATE(2341), 1, + ACTIONS(1744), 1, + sym__unquoted_pattern, + ACTIONS(4892), 1, + anon_sym_DOT_DOT2, + ACTIONS(4896), 1, + sym_filesize_unit, + ACTIONS(4898), 1, + sym_duration_unit, + STATE(2335), 1, sym_comment, - STATE(2981), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2979), 2, + STATE(4715), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 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, - [72070] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2342), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(4894), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(960), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199989,35 +199804,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72104] = 11, + [71833] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1667), 1, + ACTIONS(1641), 1, sym__space, - ACTIONS(3212), 1, + ACTIONS(1645), 1, + sym__unquoted_pattern, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(4866), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, + ACTIONS(4868), 1, aux_sym__immediate_decimal_token2, - STATE(2343), 1, + STATE(2336), 1, sym_comment, - STATE(3008), 1, + STATE(2644), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(4870), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3006), 2, + STATE(3011), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 13, + ACTIONS(1643), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200031,30 +199843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72152] = 11, - ACTIONS(103), 1, + [71884] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1671), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, - aux_sym__immediate_decimal_token2, - STATE(2344), 1, + STATE(2337), 1, sym_comment, - STATE(3010), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 13, + ACTIONS(878), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(880), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200068,30 +199865,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72200] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1675), 1, - sym__space, - ACTIONS(3212), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4912), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, - aux_sym__immediate_decimal_token2, - STATE(2345), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71918] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2338), 1, sym_comment, - STATE(3012), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3011), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 13, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200105,33 +199895,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72248] = 12, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71952] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1645), 1, sym__unquoted_pattern, - ACTIONS(3251), 1, + ACTIONS(3232), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4916), 1, + ACTIONS(4900), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, + ACTIONS(4902), 1, aux_sym__immediate_decimal_token2, - STATE(2346), 1, + STATE(2339), 1, sym_comment, - STATE(2875), 1, + STATE(2849), 1, sym__immediate_decimal, - ACTIONS(1596), 2, + ACTIONS(1641), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4920), 2, + ACTIONS(4904), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3199), 2, + STATE(3094), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 11, + ACTIONS(1643), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200143,17 +199941,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, - [72298] = 5, + [72002] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4922), 1, + ACTIONS(4878), 1, aux_sym__immediate_decimal_token5, - STATE(2347), 1, + STATE(2340), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 20, + ACTIONS(749), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200174,19 +199972,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [72334] = 6, + [72038] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4924), 1, - anon_sym_DOT, - ACTIONS(4926), 1, + ACTIONS(4906), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4908), 1, aux_sym__immediate_decimal_token5, - STATE(2348), 1, + STATE(2341), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1728), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 19, + ACTIONS(1726), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200206,21 +200004,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [72372] = 7, + [72076] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(724), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2349), 1, + ACTIONS(4910), 1, + aux_sym__immediate_decimal_token5, + STATE(2342), 1, sym_comment, - ACTIONS(1862), 19, - anon_sym_if, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200232,95 +200027,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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72412] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4930), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4932), 1, - aux_sym__immediate_decimal_token5, - STATE(2350), 1, - sym_comment, - ACTIONS(749), 6, - sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(747), 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, - sym__unquoted_pattern, - [72450] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(735), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2351), 1, - sym_comment, - ACTIONS(1878), 19, - anon_sym_if, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [72490] = 6, + [72112] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4934), 1, + ACTIONS(4912), 1, anon_sym_DOT, - ACTIONS(4936), 1, + ACTIONS(4914), 1, aux_sym__immediate_decimal_token5, - STATE(2352), 1, + STATE(2343), 1, sym_comment, - ACTIONS(741), 6, + ACTIONS(749), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(739), 15, + ACTIONS(747), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200336,33 +200067,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [72528] = 12, + [72150] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1606), 1, sym__unquoted_pattern, - ACTIONS(3251), 1, + ACTIONS(3232), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4916), 1, + ACTIONS(4900), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, + ACTIONS(4902), 1, aux_sym__immediate_decimal_token2, - STATE(2353), 1, + STATE(2344), 1, sym_comment, - STATE(2894), 1, + STATE(2838), 1, sym__immediate_decimal, - ACTIONS(1631), 2, + ACTIONS(1590), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4920), 2, + ACTIONS(4904), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3138), 2, + STATE(3209), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 11, + ACTIONS(1594), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200374,46 +200105,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, - [72578] = 5, + [72200] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4882), 1, - aux_sym__immediate_decimal_token5, - STATE(2354), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 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_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(1734), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1838), 1, + sym__unquoted_pattern, + ACTIONS(4916), 1, + anon_sym_DOT_DOT2, + ACTIONS(4920), 1, sym_filesize_unit, + ACTIONS(4922), 1, sym_duration_unit, - [72614] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2355), 1, + STATE(2345), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, + STATE(4765), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4918), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(960), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200429,36 +200141,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72647] = 11, + [72246] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(3232), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4938), 1, + ACTIONS(4886), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, + ACTIONS(4888), 1, aux_sym__immediate_decimal_token2, - STATE(2356), 1, + ACTIONS(4924), 1, + anon_sym_DOT, + STATE(2346), 1, sym_comment, - STATE(3132), 1, + STATE(2666), 1, sym__immediate_decimal, - ACTIONS(1675), 2, + ACTIONS(1625), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, + ACTIONS(4890), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3125), 2, + STATE(2665), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 11, + ACTIONS(1627), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200470,24 +200179,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, - [72694] = 6, + [72296] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4942), 1, - anon_sym_DOT, - ACTIONS(4944), 1, + ACTIONS(4926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4928), 1, aux_sym__immediate_decimal_token5, - STATE(2357), 1, + STATE(2347), 1, sym_comment, - ACTIONS(741), 7, - ts_builtin_sym_end, + ACTIONS(741), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(739), 13, + ACTIONS(739), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200499,60 +200207,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, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [72731] = 11, + [72334] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(1625), 1, + sym__space, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR, - ACTIONS(4938), 1, + ACTIONS(4930), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, + ACTIONS(4932), 1, aux_sym__immediate_decimal_token2, - STATE(2358), 1, + STATE(2348), 1, sym_comment, - STATE(3195), 1, + STATE(3053), 1, sym__immediate_decimal, - ACTIONS(1582), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4874), 2, + ACTIONS(4856), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3182), 2, + STATE(3049), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 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, - [72778] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_QMARK2, - ACTIONS(4948), 1, - anon_sym_BANG, - STATE(784), 1, - sym__path_suffix, - STATE(2359), 1, - sym_comment, - ACTIONS(1446), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1448), 17, - ts_builtin_sym_end, + ACTIONS(1627), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200564,22 +200246,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [72817] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [72382] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4926), 1, - aux_sym__immediate_decimal_token5, - STATE(2360), 1, + ACTIONS(1651), 1, + sym__space, + ACTIONS(3096), 1, + anon_sym_LPAREN2, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + ACTIONS(4930), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4932), 1, + aux_sym__immediate_decimal_token2, + STATE(2349), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 19, + STATE(2974), 1, + sym__immediate_decimal, + ACTIONS(4856), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2967), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1653), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200593,97 +200285,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [72852] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4950), 1, - sym__entry_separator, - STATE(2361), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 19, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_GT2, - 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, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [72887] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4955), 1, - anon_sym_GT2, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2362), 1, - sym_comment, - ACTIONS(4953), 18, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [72926] = 11, + [72430] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(1631), 1, sym__space, - ACTIONS(1752), 1, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(4961), 1, - anon_sym_DOT_DOT2, - ACTIONS(4965), 1, - sym_filesize_unit, - ACTIONS(4967), 1, - sym_duration_unit, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2363), 1, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + ACTIONS(4930), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4932), 1, + aux_sym__immediate_decimal_token2, + STATE(2350), 1, sym_comment, - STATE(4625), 1, + STATE(2995), 1, + sym__immediate_decimal, + ACTIONS(4856), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2982), 2, sym__expr_parenthesized_immediate, - ACTIONS(4963), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 13, + sym_val_variable, + ACTIONS(1633), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200697,23 +200322,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72973] = 8, + [72478] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_DOT_DOT2, - ACTIONS(4971), 1, + ACTIONS(4934), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(451), 1, sym_path, - STATE(932), 1, + STATE(714), 1, sym_cell_path, - STATE(2364), 1, - sym_comment, - STATE(2387), 1, + STATE(2293), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1679), 17, - ts_builtin_sym_end, + STATE(2351), 1, + sym_comment, + ACTIONS(1878), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200725,25 +200348,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, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73014] = 6, - ACTIONS(3), 1, + [72518] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4973), 1, + ACTIONS(1647), 1, + sym__space, + ACTIONS(3096), 1, + anon_sym_LPAREN2, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + ACTIONS(4930), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4975), 1, - aux_sym__immediate_decimal_token5, - STATE(2365), 1, + ACTIONS(4932), 1, + aux_sym__immediate_decimal_token2, + STATE(2352), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 18, - ts_builtin_sym_end, + STATE(3010), 1, + sym__immediate_decimal, + ACTIONS(4856), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3000), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1649), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200755,23 +200390,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73051] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [72566] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4977), 1, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(4938), 1, aux_sym__immediate_decimal_token5, - STATE(2366), 1, + STATE(2353), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1762), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 19, + ACTIONS(1760), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200791,84 +200424,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73086] = 8, + [72604] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - anon_sym_DOT_DOT2, - ACTIONS(4971), 1, + ACTIONS(4934), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(451), 1, sym_path, - STATE(935), 1, + STATE(736), 1, sym_cell_path, - STATE(2367), 1, - sym_comment, - STATE(2387), 1, + STATE(2293), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1641), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73127] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4979), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4981), 1, - aux_sym__immediate_decimal_token5, - STATE(2368), 1, - sym_comment, - ACTIONS(749), 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(747), 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, - sym__unquoted_pattern, - [73164] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4983), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - aux_sym__immediate_decimal_token5, - STATE(2369), 1, + STATE(2354), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 18, - ts_builtin_sym_end, + ACTIONS(1886), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200880,180 +200450,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_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73201] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1663), 1, - anon_sym_QMARK2, - ACTIONS(1665), 1, - anon_sym_BANG, - STATE(2370), 1, - sym_comment, - STATE(2496), 1, - sym__path_suffix, - ACTIONS(4989), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4987), 17, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_DOT2, - [73240] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4936), 1, - aux_sym__immediate_decimal_token5, - STATE(2371), 1, - sym_comment, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 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, - sym__unquoted_pattern, - [73275] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - ACTIONS(4991), 1, - anon_sym_GT2, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2372), 1, - sym_comment, - ACTIONS(4953), 18, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73314] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - ACTIONS(4993), 1, - anon_sym_GT2, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2373), 1, - sym_comment, - ACTIONS(4953), 18, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73353] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4995), 1, - anon_sym_QMARK2, - ACTIONS(4997), 1, - anon_sym_BANG, - STATE(2374), 1, - sym_comment, - STATE(2476), 1, - sym__path_suffix, - ACTIONS(1446), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1448), 16, - anon_sym_EQ, - sym_identifier, - sym__newline, - 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_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73392] = 4, + [72644] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2375), 1, + STATE(2355), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 20, - ts_builtin_sym_end, + ACTIONS(741), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201062,74 +200474,44 @@ 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73425] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - ACTIONS(4999), 1, - anon_sym_GT2, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2376), 1, - sym_comment, - ACTIONS(4953), 18, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - 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, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73464] = 11, + 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [72678] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(3232), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4938), 1, - aux_sym__immediate_decimal_token1, ACTIONS(4940), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4942), 1, aux_sym__immediate_decimal_token2, - STATE(2377), 1, + STATE(2356), 1, sym_comment, - STATE(3111), 1, + STATE(3089), 1, sym__immediate_decimal, - ACTIONS(1667), 2, + ACTIONS(1651), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, + ACTIONS(4890), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3110), 2, + STATE(3088), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 11, + ACTIONS(1653), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201141,35 +200523,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, - [73511] = 13, + [72725] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1606), 1, sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(3839), 1, anon_sym_DOLLAR, - ACTIONS(5001), 1, + ACTIONS(4944), 1, anon_sym_DOT, - ACTIONS(5003), 1, + ACTIONS(4946), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5005), 1, + ACTIONS(4948), 1, aux_sym__immediate_decimal_token2, - STATE(2378), 1, + STATE(2357), 1, sym_comment, - STATE(2637), 1, + STATE(2629), 1, sym__immediate_decimal, - ACTIONS(1598), 2, + ACTIONS(1594), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, + ACTIONS(4950), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2913), 2, + STATE(2841), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 9, + ACTIONS(1590), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -201179,16 +200561,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [73562] = 4, + [72776] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2379), 1, + ACTIONS(4952), 1, + aux_sym__immediate_decimal_token5, + STATE(2358), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(1812), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 20, - ts_builtin_sym_end, + ACTIONS(1810), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201200,69 +200583,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_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73595] = 5, - ACTIONS(103), 1, + [72811] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5009), 1, - aux_sym__immediate_decimal_token5, - STATE(2380), 1, + STATE(2359), 1, sym_comment, - ACTIONS(773), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 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, + ACTIONS(878), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [73630] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4938), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token2, - STATE(2381), 1, - sym_comment, - STATE(3121), 1, - sym__immediate_decimal, - ACTIONS(1671), 2, + ACTIONS(880), 20, ts_builtin_sym_end, - sym__space, - ACTIONS(4874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3112), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1673), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201274,22 +200612,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, - [73677] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [72844] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1432), 1, + ACTIONS(4954), 1, + anon_sym_QMARK2, + ACTIONS(4956), 1, + anon_sym_BANG, + STATE(810), 1, + sym__path_suffix, + STATE(2360), 1, + sym_comment, + ACTIONS(1476), 2, anon_sym_DOT_DOT2, - ACTIONS(4971), 1, anon_sym_DOT2, - STATE(453), 1, - sym_cell_path, - STATE(783), 1, - sym_path, - STATE(2382), 1, - sym_comment, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 17, + ACTIONS(1478), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201307,88 +200652,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73718] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5013), 1, - aux_sym__immediate_decimal_token2, - STATE(2383), 1, - sym_comment, - STATE(2994), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5015), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3221), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 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, - [73766] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5019), 1, - aux_sym__immediate_decimal_token5, - STATE(2384), 1, - sym_comment, - ACTIONS(1726), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 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, - sym__unquoted_pattern, - [73802] = 4, + [72883] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2385), 1, - sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, + ACTIONS(4960), 1, + anon_sym_GT2, + ACTIONS(4962), 1, sym__entry_separator, - ACTIONS(3732), 19, + ACTIONS(4964), 1, + sym_raw_string_begin, + STATE(2361), 1, + sym_comment, + STATE(2364), 1, + aux_sym__types_body_repeat2, + ACTIONS(4958), 18, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_GT2, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -201401,50 +200684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [73834] = 5, + [72922] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5021), 1, - sym__newline, - STATE(2386), 2, + ACTIONS(4938), 1, + aux_sym__immediate_decimal_token5, + STATE(2362), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3738), 16, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [73868] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1458), 1, + ACTIONS(1762), 2, anon_sym_DOT_DOT2, - ACTIONS(4971), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(2387), 1, - sym_comment, - STATE(2407), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 17, - ts_builtin_sym_end, + sym__unquoted_pattern, + ACTIONS(1760), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201456,29 +200706,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73906] = 8, + [72957] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2388), 1, + ACTIONS(4966), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4968), 1, + aux_sym__immediate_decimal_token5, + STATE(2363), 1, sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2615), 1, - sym_cell_path, - ACTIONS(1641), 3, + ACTIONS(741), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201490,49 +200743,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, anon_sym_DOT_DOT2, - [73946] = 7, - ACTIONS(3), 1, + sym__unquoted_pattern, + [72994] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2389), 1, + ACTIONS(3740), 1, + sym_raw_string_begin, + ACTIONS(4970), 1, + sym__entry_separator, + STATE(2364), 2, sym_comment, - STATE(2417), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(5028), 2, + aux_sym__types_body_repeat2, + ACTIONS(3735), 19, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5026), 16, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - [73984] = 4, + 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, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [73029] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2390), 1, + ACTIONS(4973), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4975), 1, + aux_sym__immediate_decimal_token5, + STATE(2365), 1, sym_comment, - ACTIONS(1514), 2, + ACTIONS(1728), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1516), 19, + sym__unquoted_pattern, + ACTIONS(1726), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201548,23 +200803,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74016] = 4, + [73066] = 11, ACTIONS(103), 1, anon_sym_POUND, - STATE(2391), 1, + ACTIONS(3232), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4940), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4942), 1, + aux_sym__immediate_decimal_token2, + STATE(2366), 1, sym_comment, - ACTIONS(851), 6, + STATE(3091), 1, + sym__immediate_decimal, + ACTIONS(1631), 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(849), 15, + ACTIONS(4890), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3090), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201576,62 +200842,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_DOT_DOT2, - sym__unquoted_pattern, - [74048] = 12, - ACTIONS(3), 1, + [73113] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(3232), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(5003), 1, + ACTIONS(4940), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5005), 1, + ACTIONS(4942), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5030), 1, - anon_sym_DOT, - STATE(2392), 1, + STATE(2367), 1, sym_comment, - STATE(2909), 1, + STATE(3208), 1, sym__immediate_decimal, - ACTIONS(1586), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, + ACTIONS(1625), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4890), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2906), 2, + STATE(3207), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 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, - [74096] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4944), 1, - aux_sym__immediate_decimal_token5, - STATE(2393), 1, - sym_comment, - ACTIONS(741), 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(739), 13, + ACTIONS(1627), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201643,26 +200878,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, - sym__unquoted_pattern, - [74130] = 8, - ACTIONS(103), 1, + [73160] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(1657), 1, + anon_sym_DOT_DOT2, + ACTIONS(4977), 1, anon_sym_DOT2, - STATE(2394), 1, - sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(842), 1, sym_path, - STATE(2627), 1, + STATE(948), 1, sym_cell_path, - ACTIONS(1434), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1432), 14, + STATE(2368), 1, + sym_comment, + STATE(2386), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1655), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201674,93 +200906,66 @@ static const uint16_t ts_small_parse_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, - [74170] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [73201] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_DOT, - ACTIONS(5034), 1, + ACTIONS(4914), 1, aux_sym__immediate_decimal_token5, - STATE(2395), 1, + STATE(2369), 1, sym_comment, - ACTIONS(739), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(741), 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(749), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74206] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5036), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5038), 1, - aux_sym__immediate_decimal_token5, - STATE(2396), 1, - sym_comment, - ACTIONS(747), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(749), 13, - anon_sym_EQ, + ACTIONS(747), 15, 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, - [74242] = 11, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [73236] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(3232), 1, anon_sym_LPAREN2, - ACTIONS(5040), 1, - anon_sym_DOT_DOT2, - ACTIONS(5044), 1, - sym_filesize_unit, - ACTIONS(5046), 1, - sym_duration_unit, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(2397), 1, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4940), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4942), 1, + aux_sym__immediate_decimal_token2, + STATE(2370), 1, sym_comment, - STATE(4725), 1, - sym__expr_parenthesized_immediate, - ACTIONS(968), 2, + STATE(3093), 1, + sym__immediate_decimal, + ACTIONS(1647), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5042), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 11, + ACTIONS(4890), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3092), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1649), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201772,15 +200977,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, - [74288] = 4, + [73283] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2398), 1, + ACTIONS(4979), 1, + anon_sym_DOT, + ACTIONS(4981), 1, + aux_sym__immediate_decimal_token5, + STATE(2371), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1762), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 19, + ACTIONS(1760), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201792,52 +201002,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_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74320] = 5, + [73320] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5050), 1, - aux_sym__immediate_decimal_token5, - STATE(2399), 1, + ACTIONS(4962), 1, + sym__entry_separator, + ACTIONS(4964), 1, + sym_raw_string_begin, + ACTIONS(4983), 1, + anon_sym_GT2, + STATE(2364), 1, + aux_sym__types_body_repeat2, + STATE(2372), 1, sym_comment, - ACTIONS(773), 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(771), 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, - sym__unquoted_pattern, - [74354] = 4, + ACTIONS(4958), 18, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [73359] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2400), 1, + STATE(2373), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 19, + ACTIONS(741), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201849,23 +201061,63 @@ static const uint16_t ts_small_parse_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_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74386] = 4, + sym_filesize_unit, + sym_duration_unit, + [73392] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2401), 1, + ACTIONS(4985), 1, + anon_sym_QMARK2, + ACTIONS(4987), 1, + anon_sym_BANG, + STATE(2374), 1, sym_comment, - ACTIONS(1872), 2, + STATE(2466), 1, + sym__path_suffix, + ACTIONS(1476), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 19, + anon_sym_DOT2, + ACTIONS(1478), 16, + anon_sym_EQ, + sym_identifier, + sym__newline, + 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_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [73431] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1667), 1, + anon_sym_DOT_DOT2, + ACTIONS(4977), 1, + anon_sym_DOT2, + STATE(842), 1, + sym_path, + STATE(917), 1, + sym_cell_path, + STATE(2375), 1, + sym_comment, + STATE(2386), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1665), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201877,26 +201129,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_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74418] = 6, + [73472] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(4962), 1, sym__entry_separator, - ACTIONS(4959), 1, + ACTIONS(4964), 1, sym_raw_string_begin, - STATE(2361), 1, + ACTIONS(4989), 1, + anon_sym_GT2, + STATE(2364), 1, aux_sym__types_body_repeat2, - STATE(2402), 1, + STATE(2376), 1, + sym_comment, + ACTIONS(4958), 18, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [73511] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4962), 1, + sym__entry_separator, + ACTIONS(4964), 1, + sym_raw_string_begin, + ACTIONS(4991), 1, + anon_sym_GT2, + STATE(2364), 1, + aux_sym__types_body_repeat2, + STATE(2377), 1, sym_comment, - ACTIONS(4953), 18, + ACTIONS(4958), 18, anon_sym_true, anon_sym_false, anon_sym_null, @@ -201915,15 +201198,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [74454] = 4, + [73550] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2403), 1, + ACTIONS(1661), 1, + anon_sym_QMARK2, + ACTIONS(1663), 1, + anon_sym_BANG, + STATE(2378), 1, sym_comment, - ACTIONS(1474), 2, + STATE(2506), 1, + sym__path_suffix, + ACTIONS(4995), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4993), 17, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_DOT2, + [73589] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1460), 1, anon_sym_DOT_DOT2, + ACTIONS(4977), 1, anon_sym_DOT2, - ACTIONS(1476), 19, + STATE(435), 1, + sym_cell_path, + STATE(842), 1, + sym_path, + STATE(2379), 1, + sym_comment, + STATE(2386), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1462), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201941,24 +201263,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74486] = 7, + [73630] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5052), 1, - anon_sym_QMARK2, - ACTIONS(5054), 1, - anon_sym_BANG, - STATE(2404), 1, + ACTIONS(4997), 1, + anon_sym_DOT, + ACTIONS(4999), 1, + aux_sym__immediate_decimal_token5, + STATE(2380), 1, sym_comment, - STATE(2566), 1, - sym__path_suffix, - ACTIONS(1448), 3, + ACTIONS(749), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201970,54 +201292,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_DOT_DOT2, - anon_sym_DOT2, - [74524] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4985), 1, - aux_sym__immediate_decimal_token5, - STATE(2405), 1, - sym_comment, - ACTIONS(1738), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74558] = 7, - ACTIONS(3), 1, + [73667] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(960), 1, + sym__space, + ACTIONS(1734), 1, anon_sym_LPAREN2, - ACTIONS(5056), 1, + ACTIONS(5001), 1, anon_sym_DOT_DOT2, - STATE(2406), 1, + ACTIONS(5005), 1, + sym_filesize_unit, + ACTIONS(5007), 1, + sym_duration_unit, + ACTIONS(5009), 1, + sym__unquoted_pattern, + STATE(2381), 1, sym_comment, - ACTIONS(5058), 2, + STATE(4656), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5003), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 16, + ACTIONS(860), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202031,22 +201330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74596] = 6, + [73714] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1524), 1, - anon_sym_DOT_DOT2, - ACTIONS(5060), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(2407), 2, + STATE(2382), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 17, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202062,18 +201354,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74632] = 4, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [73747] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2408), 1, + ACTIONS(5011), 1, + aux_sym__immediate_decimal_token5, + STATE(2383), 1, sym_comment, - ACTIONS(1466), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1468), 19, - ts_builtin_sym_end, + ACTIONS(773), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(771), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202085,28 +201385,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [73782] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5013), 1, anon_sym_QMARK2, + ACTIONS(5015), 1, anon_sym_BANG, - [74664] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5063), 1, - anon_sym_DOT_DOT2, - STATE(2409), 1, + STATE(2384), 1, sym_comment, - ACTIONS(5065), 2, + STATE(2525), 1, + sym__path_suffix, + ACTIONS(1478), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 16, + ACTIONS(1476), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202120,22 +201418,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74702] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [73820] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2410), 1, + ACTIONS(4999), 1, + aux_sym__immediate_decimal_token5, + STATE(2385), 1, sym_comment, - ACTIONS(749), 6, + ACTIONS(749), 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(747), 15, + ACTIONS(747), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202147,19 +201447,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_DOT_DOT2, sym__unquoted_pattern, - [74734] = 4, + [73854] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2411), 1, - sym_comment, - ACTIONS(1470), 2, + ACTIONS(1534), 1, anon_sym_DOT_DOT2, + ACTIONS(4977), 1, anon_sym_DOT2, - ACTIONS(1472), 19, + STATE(842), 1, + sym_path, + STATE(2386), 1, + sym_comment, + STATE(2394), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1536), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202177,26 +201480,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74766] = 8, + [73892] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2412), 1, + ACTIONS(5017), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5019), 1, + aux_sym__immediate_decimal_token5, + STATE(2387), 1, sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2601), 1, - sym_cell_path, - ACTIONS(1679), 3, + ACTIONS(1726), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 14, + ACTIONS(1728), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202211,51 +201509,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [74806] = 7, + sym__unquoted_pattern, + [73928] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(930), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2413), 1, + STATE(2388), 1, sym_comment, - ACTIONS(1882), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74844] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(1522), 2, + anon_sym_DOT_DOT2, anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(923), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2414), 1, - sym_comment, - ACTIONS(1850), 17, + ACTIONS(1524), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202267,57 +201531,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_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74882] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [73960] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(936), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2415), 1, + STATE(2389), 1, sym_comment, - ACTIONS(1858), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74920] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(1526), 2, + anon_sym_DOT_DOT2, anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(899), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2416), 1, - sym_comment, - ACTIONS(1866), 17, + ACTIONS(1528), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202329,90 +201559,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_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74958] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(420), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, - sym_path, - STATE(2417), 1, - sym_comment, - ACTIONS(5069), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5067), 16, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - [74996] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5013), 1, - aux_sym__immediate_decimal_token2, - STATE(2418), 1, - sym_comment, - STATE(2991), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5015), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3351), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 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, - [75044] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [73992] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5071), 1, - aux_sym__immediate_decimal_token5, - STATE(2419), 1, + STATE(2390), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1506), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 18, + anon_sym_DOT2, + ACTIONS(1508), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202428,18 +201590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75078] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [74024] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2420), 1, + STATE(2391), 1, sym_comment, - ACTIONS(1478), 2, + ACTIONS(1510), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1480), 19, + ACTIONS(1512), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202459,43 +201622,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [75110] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2421), 1, - sym_comment, - ACTIONS(773), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 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, - sym__unquoted_pattern, - [75142] = 4, + [74056] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2422), 1, + STATE(2392), 1, sym_comment, - ACTIONS(1543), 2, + ACTIONS(1514), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1545), 19, + ACTIONS(1516), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202515,21 +201650,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [75174] = 6, - ACTIONS(103), 1, + [74088] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5073), 1, - anon_sym_DOT, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - STATE(2423), 1, + STATE(2393), 1, sym_comment, - ACTIONS(1736), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 15, + ACTIONS(1518), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1520), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202541,19 +201671,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_DOT_DOT2, - sym__unquoted_pattern, - [75210] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [74120] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2424), 1, - sym_comment, - ACTIONS(1872), 2, + ACTIONS(1538), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 18, + ACTIONS(5021), 1, + anon_sym_DOT2, + STATE(842), 1, + sym_path, + STATE(2394), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1540), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202569,28 +201706,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75241] = 8, + [74156] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5024), 1, anon_sym_DOT2, - STATE(2425), 1, + STATE(2395), 1, sym_comment, - STATE(2489), 1, + STATE(2455), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2567), 1, sym_path, - STATE(2701), 1, + STATE(2592), 1, sym_cell_path, - ACTIONS(1434), 4, - ts_builtin_sym_end, + ACTIONS(1462), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1432), 12, + ACTIONS(1460), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202602,21 +201737,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_DOT_DOT2, - [75280] = 4, + [74196] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2426), 1, + STATE(2396), 1, sym_comment, - ACTIONS(851), 7, - ts_builtin_sym_end, + ACTIONS(741), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(849), 13, + ACTIONS(739), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202628,126 +201764,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, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [75311] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, - aux_sym__immediate_decimal_token2, - STATE(2427), 1, - sym_comment, - STATE(3279), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3275), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 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, - [75356] = 11, - ACTIONS(3), 1, + [74228] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, - aux_sym__immediate_decimal_token2, - STATE(2428), 1, + STATE(2397), 1, sym_comment, - STATE(3304), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3285), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 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, - [75401] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(773), 6, + sym__space, anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, - aux_sym__immediate_decimal_token2, - STATE(2429), 1, - sym_comment, - STATE(3220), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3305), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 9, - anon_sym_EQ, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(771), 15, 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, - [75446] = 7, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [74260] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, + STATE(2398), 1, sym_comment, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - ACTIONS(1460), 3, + ACTIONS(880), 6, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1458), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(878), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202762,22 +201823,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [75483] = 6, + sym__unquoted_pattern, + [74292] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5083), 1, - anon_sym_DOT, - ACTIONS(5085), 1, + ACTIONS(5026), 1, aux_sym__immediate_decimal_token5, - STATE(2431), 1, + STATE(2399), 1, sym_comment, - ACTIONS(1736), 5, + ACTIONS(773), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(771), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202791,25 +201853,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [75518] = 8, + [74326] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2432), 1, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + ACTIONS(5028), 1, + anon_sym_DOT_DOT2, + ACTIONS(5032), 1, + sym_filesize_unit, + ACTIONS(5034), 1, + sym_duration_unit, + ACTIONS(5036), 1, + sym__unquoted_pattern, + STATE(2400), 1, sym_comment, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2756), 1, - sym_cell_path, - ACTIONS(1679), 4, + STATE(4703), 1, + sym__expr_parenthesized_immediate, + ACTIONS(960), 2, ts_builtin_sym_end, sym__space, + ACTIONS(5030), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 12, + ACTIONS(860), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202821,23 +201888,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_DOT_DOT2, - [75557] = 7, + [74372] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1606), 1, sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(1940), 1, anon_sym_LPAREN2, - ACTIONS(5087), 1, + ACTIONS(5038), 1, anon_sym_DOT_DOT2, - STATE(2433), 1, + STATE(2401), 1, sym_comment, - ACTIONS(5089), 2, + ACTIONS(5040), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 15, - ts_builtin_sym_end, + ACTIONS(1936), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202849,24 +201914,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_and2, anon_sym_xor2, anon_sym_or2, - [75594] = 6, + [74410] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5091), 1, - anon_sym_DOT2, - STATE(2542), 1, - sym_path, - STATE(2434), 2, + ACTIONS(5042), 1, + anon_sym_DOT, + ACTIONS(5044), 1, + aux_sym__immediate_decimal_token5, + STATE(2402), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 3, + ACTIONS(1760), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1524), 14, + ACTIONS(1762), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202881,18 +201948,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [75629] = 6, + sym__unquoted_pattern, + [74446] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(5094), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5096), 1, + ACTIONS(4981), 1, aux_sym__immediate_decimal_token5, - STATE(2435), 1, + STATE(2403), 1, sym_comment, - ACTIONS(1726), 17, + ACTIONS(1762), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1760), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202904,67 +201972,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [75664] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5098), 1, - anon_sym_DOT_DOT2, - STATE(2436), 1, - sym_comment, - ACTIONS(5100), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [75701] = 11, + [74480] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(1645), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3200), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(3839), 1, anon_sym_DOLLAR, - ACTIONS(5079), 1, + ACTIONS(5046), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, + ACTIONS(5048), 1, aux_sym__immediate_decimal_token2, - STATE(2437), 1, + STATE(2404), 1, sym_comment, - STATE(3347), 1, + STATE(3044), 1, sym__immediate_decimal, - ACTIONS(1586), 2, + ACTIONS(1643), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, + ACTIONS(5050), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3345), 2, + STATE(3353), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 9, + ACTIONS(1641), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -202974,97 +202014,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [75746] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2438), 1, - sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75777] = 4, + [74528] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2439), 1, - sym_comment, - ACTIONS(2938), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(2940), 17, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [75808] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2440), 1, - sym_comment, - ACTIONS(773), 7, - ts_builtin_sym_end, - sym__space, + ACTIONS(1950), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 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, + ACTIONS(1956), 1, sym__unquoted_pattern, - [75839] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2441), 1, + ACTIONS(5052), 1, + anon_sym_DOT_DOT2, + STATE(2405), 1, sym_comment, - ACTIONS(1516), 3, - sym__space, + ACTIONS(5054), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1514), 17, + ACTIONS(1946), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203078,25 +202042,26 @@ 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_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [75870] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [74566] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5034), 1, + ACTIONS(5056), 1, + anon_sym_DOT, + ACTIONS(5058), 1, aux_sym__immediate_decimal_token5, - STATE(2442), 1, + STATE(2406), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(747), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(741), 13, + ACTIONS(749), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -203110,107 +202075,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75903] = 6, - ACTIONS(103), 1, + [74602] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5102), 1, + ACTIONS(5060), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5104), 1, + ACTIONS(5062), 1, aux_sym__immediate_decimal_token5, - STATE(2443), 1, + STATE(2407), 1, sym_comment, - ACTIONS(1726), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 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, - sym__unquoted_pattern, - [75938] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5108), 1, + ACTIONS(739), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(5112), 1, sym_filesize_unit, - ACTIONS(5114), 1, sym_duration_unit, - ACTIONS(5116), 1, sym__unquoted_pattern_in_record, - STATE(2444), 1, - sym_comment, - STATE(4649), 1, - sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5110), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 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, - [75983] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_QMARK2, - STATE(2445), 1, - sym_comment, - ACTIONS(1438), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 16, + ACTIONS(741), 13, anon_sym_EQ, - sym_identifier, sym__newline, 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_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76016] = 4, - ACTIONS(103), 1, + [74638] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2446), 1, + STATE(2408), 1, sym_comment, - ACTIONS(1545), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1543), 17, + ACTIONS(1728), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1726), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203224,22 +202127,51 @@ 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_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76047] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74670] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4962), 1, + sym__entry_separator, + ACTIONS(4964), 1, + sym_raw_string_begin, + STATE(2364), 1, + aux_sym__types_body_repeat2, + STATE(2409), 1, + sym_comment, + ACTIONS(4958), 18, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + 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, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [74706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5120), 1, - anon_sym_DOT, - ACTIONS(5122), 1, - aux_sym__immediate_decimal_token5, - STATE(2447), 1, + STATE(2410), 1, sym_comment, - ACTIONS(1736), 17, + ACTIONS(1812), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1810), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203257,25 +202189,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [76082] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74738] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1844), 1, + anon_sym_DOT2, + STATE(451), 1, + sym_path, + STATE(2411), 1, + sym_comment, + STATE(2422), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5066), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5064), 16, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [74776] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(4965), 1, - sym_filesize_unit, - ACTIONS(4967), 1, - sym_duration_unit, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2448), 1, + ACTIONS(5024), 1, + anon_sym_DOT2, + STATE(2412), 1, sym_comment, - ACTIONS(4141), 2, + STATE(2455), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2567), 1, + sym_path, + STATE(2615), 1, + sym_cell_path, + ACTIONS(1655), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 13, + ACTIONS(1657), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203289,19 +202253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [76123] = 5, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + [74816] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5124), 1, - aux_sym__immediate_decimal_token5, - STATE(2449), 1, + STATE(2413), 1, sym_comment, - ACTIONS(1802), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 15, + ACTIONS(1856), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1854), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203315,45 +202276,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76156] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2450), 1, - sym_comment, - ACTIONS(749), 7, - ts_builtin_sym_end, - sym__space, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 13, + [74848] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2414), 1, + sym_comment, + ACTIONS(3746), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3744), 19, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_GT2, + 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, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym__unquoted_in_record_token1, + [74880] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5068), 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_DOT_DOT2, - sym__unquoted_pattern, - [76187] = 4, + STATE(2415), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3748), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3750), 16, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74914] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2451), 1, + ACTIONS(5024), 1, + anon_sym_DOT2, + STATE(2416), 1, sym_comment, - ACTIONS(1472), 3, + STATE(2455), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2567), 1, + sym_path, + STATE(2632), 1, + sym_cell_path, + ACTIONS(1665), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 17, + ACTIONS(1667), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203368,24 +202371,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76218] = 5, + [74954] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5126), 1, - aux_sym__immediate_decimal_token5, - STATE(2452), 1, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3839), 1, + anon_sym_DOLLAR, + ACTIONS(4946), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4948), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5071), 1, + anon_sym_DOT, + STATE(2417), 1, sym_comment, - ACTIONS(771), 6, + STATE(2840), 1, + sym__immediate_decimal, + ACTIONS(1627), 2, sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(773), 13, + ACTIONS(4950), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2839), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1625), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -203393,22 +202405,22 @@ 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, - [76251] = 4, + [75002] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2453), 1, + ACTIONS(4934), 1, + anon_sym_DOT2, + STATE(451), 1, + sym_path, + STATE(949), 1, + sym_cell_path, + STATE(2293), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2418), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 18, - ts_builtin_sym_end, + ACTIONS(1840), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203420,22 +202432,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_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76282] = 4, - ACTIONS(103), 1, + [75040] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2454), 1, + ACTIONS(4934), 1, + anon_sym_DOT2, + STATE(451), 1, + sym_path, + STATE(952), 1, + sym_cell_path, + STATE(2293), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2419), 1, sym_comment, - ACTIONS(1480), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1478), 17, + ACTIONS(1846), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203448,28 +202464,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_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76313] = 7, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [75078] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5128), 1, - anon_sym_QMARK2, - ACTIONS(5130), 1, - anon_sym_BANG, - STATE(2455), 1, + ACTIONS(4934), 1, + anon_sym_DOT2, + STATE(451), 1, + sym_path, + STATE(932), 1, + sym_cell_path, + STATE(2293), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2420), 1, sym_comment, - STATE(2609), 1, - sym__path_suffix, - ACTIONS(1448), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 13, + ACTIONS(1870), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203481,49 +202494,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_DOT_DOT2, - anon_sym_DOT2, - [76350] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [75116] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(4934), 1, anon_sym_DOT2, - STATE(2456), 1, - sym_comment, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(451), 1, sym_path, - STATE(2761), 1, + STATE(903), 1, sym_cell_path, - ACTIONS(1641), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 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, - [76389] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2457), 1, + STATE(2293), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2421), 1, sym_comment, - ACTIONS(1468), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1466), 17, + ACTIONS(1858), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203536,49 +202526,89 @@ 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, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [75154] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1844), 1, anon_sym_DOT2, - [76420] = 4, - ACTIONS(103), 1, + STATE(418), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(451), 1, + sym_path, + STATE(2422), 1, + sym_comment, + ACTIONS(5075), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5073), 16, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [75192] = 12, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2458), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3839), 1, + anon_sym_DOLLAR, + ACTIONS(5046), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5048), 1, + aux_sym__immediate_decimal_token2, + STATE(2423), 1, sym_comment, - ACTIONS(1476), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1474), 17, + STATE(3013), 1, + sym__immediate_decimal, + ACTIONS(1594), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5050), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3328), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1590), 9, + 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, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76451] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [75240] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2164), 1, - anon_sym_BANG, - STATE(2459), 1, + ACTIONS(5077), 1, + aux_sym__immediate_decimal_token5, + STATE(2424), 1, sym_comment, - ACTIONS(1438), 2, + ACTIONS(1812), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 17, + sym__unquoted_pattern, + ACTIONS(1810), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203594,75 +202624,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76484] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - STATE(2460), 1, - sym_comment, - ACTIONS(1736), 4, - sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 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, - sym__unquoted_pattern, - [76517] = 5, + [75274] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_BANG, - STATE(2461), 1, + ACTIONS(5058), 1, + aux_sym__immediate_decimal_token5, + STATE(2425), 1, sym_comment, - ACTIONS(1438), 3, + ACTIONS(747), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 16, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(749), 13, anon_sym_EQ, - sym_identifier, sym__newline, 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_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76550] = 4, + [75307] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2462), 1, + ACTIONS(5079), 1, + anon_sym_QMARK2, + ACTIONS(5081), 1, + anon_sym_BANG, + STATE(2426), 1, sym_comment, - ACTIONS(1545), 4, + STATE(2603), 1, + sym__path_suffix, + ACTIONS(1478), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1543), 15, + ACTIONS(1476), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203675,20 +202684,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, anon_sym_DOT2, - [76580] = 4, - ACTIONS(103), 1, + [75344] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2463), 1, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + ACTIONS(5083), 1, + anon_sym_DOT_DOT2, + STATE(2427), 1, sym_comment, - ACTIONS(1476), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5085), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1474), 15, + ACTIONS(1946), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203700,58 +202712,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_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76610] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, - anon_sym_DQUOTE, - ACTIONS(3226), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, - anon_sym_LPAREN, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(5132), 1, - sym__unquoted_naive, - STATE(2464), 1, - sym_comment, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2967), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [76662] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [75381] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2465), 1, + STATE(2428), 1, sym_comment, - ACTIONS(1516), 4, + ACTIONS(773), 7, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1514), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(771), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203764,85 +202741,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76692] = 7, - ACTIONS(3), 1, + sym__unquoted_pattern, + [75412] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(5087), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(2429), 1, + sym_comment, + STATE(2487), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2637), 1, sym_path, - STATE(1274), 1, + STATE(2702), 1, sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2466), 1, - sym_comment, - ACTIONS(1866), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [76728] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5144), 1, - anon_sym_LPAREN, - ACTIONS(5146), 1, - anon_sym_DASH2, - STATE(2467), 1, - sym_comment, - STATE(2621), 1, - sym_flag_capsule, - STATE(2623), 1, - aux_sym_parameter_repeat1, - STATE(3374), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5136), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [76778] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2468), 1, - sym_comment, - ACTIONS(1726), 4, + ACTIONS(1655), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 15, + ACTIONS(1657), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203854,30 +202772,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_DOT_DOT2, - sym__unquoted_pattern, - [76808] = 9, + [75451] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(5044), 1, - sym_filesize_unit, - ACTIONS(5046), 1, - sym_duration_unit, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(2469), 1, + ACTIONS(5087), 1, + anon_sym_DOT2, + STATE(2430), 1, sym_comment, - ACTIONS(968), 2, + STATE(2487), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2637), 1, + sym_path, + STATE(2712), 1, + sym_cell_path, + ACTIONS(1665), 4, ts_builtin_sym_end, sym__space, - ACTIONS(4141), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 11, + ACTIONS(1667), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203889,20 +202803,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, - [76848] = 7, + anon_sym_DOT_DOT2, + [75490] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1292), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2470), 1, + STATE(2431), 1, sym_comment, - ACTIONS(1850), 15, + ACTIONS(1728), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1726), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203918,16 +202828,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76884] = 5, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75521] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(5148), 1, + ACTIONS(5044), 1, aux_sym__immediate_decimal_token5, - STATE(2471), 1, + STATE(2432), 1, sym_comment, - ACTIONS(1802), 17, + ACTIONS(1760), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1762), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203941,21 +202857,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75554] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2433), 1, + sym_comment, + ACTIONS(1812), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1810), 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_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [76916] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75585] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2472), 1, + STATE(2434), 1, sym_comment, - ACTIONS(1480), 4, + ACTIONS(1856), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1854), 18, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1478), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203967,51 +202907,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_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76946] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75616] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2473), 1, + ACTIONS(5089), 1, + anon_sym_QMARK2, + STATE(2435), 1, sym_comment, - ACTIONS(849), 6, - sym_identifier, + ACTIONS(1466), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(851), 13, + anon_sym_DOT2, + ACTIONS(1468), 16, anon_sym_EQ, + sym_identifier, sym__newline, 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_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76976] = 7, - ACTIONS(3), 1, + [75649] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1272), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2474), 1, + ACTIONS(960), 1, + sym__space, + ACTIONS(4123), 1, + anon_sym_DOT_DOT2, + ACTIONS(5005), 1, + sym_filesize_unit, + ACTIONS(5007), 1, + sym_duration_unit, + ACTIONS(5009), 1, + sym__unquoted_pattern, + STATE(2436), 1, sym_comment, - ACTIONS(1858), 15, - ts_builtin_sym_end, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(860), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204023,20 +202971,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_and2, - anon_sym_xor2, - anon_sym_or2, - [77012] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [75690] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2475), 1, + STATE(2437), 1, sym_comment, - ACTIONS(5154), 2, + ACTIONS(880), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(878), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204048,21 +202998,75 @@ static const uint16_t 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, + sym__unquoted_pattern, + [75721] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2438), 1, + sym_comment, + ACTIONS(2940), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2942), 17, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75752] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5091), 1, + aux_sym__immediate_decimal_token5, + STATE(2439), 1, + sym_comment, + ACTIONS(771), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(773), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77044] = 4, + 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, + [75785] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2476), 1, + ACTIONS(5089), 1, + anon_sym_BANG, + STATE(2440), 1, sym_comment, - ACTIONS(1520), 3, + ACTIONS(1466), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1522), 16, + ACTIONS(1468), 16, anon_sym_EQ, sym_identifier, sym__newline, @@ -204079,20 +203083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77074] = 7, + [75818] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1273), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2477), 1, + ACTIONS(2134), 1, + anon_sym_BANG, + STATE(2441), 1, sym_comment, - ACTIONS(1862), 15, + ACTIONS(1466), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1468), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204108,48 +203109,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77110] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75851] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2478), 1, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3839), 1, + anon_sym_DOLLAR, + ACTIONS(5093), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5095), 1, + aux_sym__immediate_decimal_token2, + STATE(2442), 1, sym_comment, - ACTIONS(5154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 16, + STATE(3327), 1, + sym__immediate_decimal, + ACTIONS(1627), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(4950), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3326), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1625), 9, + 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_and2, - anon_sym_xor2, - anon_sym_or2, - [77142] = 7, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [75896] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1320), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2479), 1, + ACTIONS(5097), 1, + aux_sym__immediate_decimal_token5, + STATE(2443), 1, sym_comment, - ACTIONS(1882), 15, - ts_builtin_sym_end, + ACTIONS(1810), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1812), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204161,22 +203169,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_and2, - anon_sym_xor2, - anon_sym_or2, - [77178] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75929] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(1728), 1, sym__unquoted_pattern, - ACTIONS(5156), 1, - anon_sym_DOT, - ACTIONS(5158), 1, + ACTIONS(5099), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5101), 1, aux_sym__immediate_decimal_token5, - STATE(2480), 1, + STATE(2444), 1, sym_comment, - ACTIONS(1736), 16, - ts_builtin_sym_end, + ACTIONS(1726), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204188,21 +203196,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_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [77212] = 5, - ACTIONS(3), 1, + [75964] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2481), 1, + ACTIONS(5103), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5105), 1, + aux_sym__immediate_decimal_token5, + STATE(2445), 1, sym_comment, - ACTIONS(5154), 2, + ACTIONS(1726), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + ACTIONS(1728), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204214,26 +203229,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_and2, - anon_sym_xor2, - anon_sym_or2, - [77244] = 6, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75999] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5160), 1, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3839), 1, + anon_sym_DOLLAR, + ACTIONS(5093), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5162), 1, - aux_sym__immediate_decimal_token5, - STATE(2482), 1, + ACTIONS(5095), 1, + aux_sym__immediate_decimal_token2, + STATE(2446), 1, sym_comment, - ACTIONS(1728), 4, + STATE(3343), 1, + sym__immediate_decimal, + ACTIONS(1653), 2, sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 13, + ACTIONS(4950), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3340), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1651), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -204241,25 +203263,33 @@ 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, - [77278] = 4, + [76044] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(2483), 1, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3839), 1, + anon_sym_DOLLAR, + ACTIONS(5093), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5095), 1, + aux_sym__immediate_decimal_token2, + STATE(2447), 1, sym_comment, - ACTIONS(747), 6, + STATE(3347), 1, + sym__immediate_decimal, + ACTIONS(1633), 2, sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(749), 13, + ACTIONS(4950), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3345), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1631), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -204267,97 +203297,52 @@ 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, - [77308] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(5166), 1, - sym__unquoted_naive, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(2484), 1, - sym_comment, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3209), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77360] = 15, + [76089] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(97), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(5168), 1, - anon_sym_LPAREN, - ACTIONS(5170), 1, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3839), 1, anon_sym_DOLLAR, - ACTIONS(5172), 1, - sym__unquoted_naive, - STATE(1325), 1, - sym__inter_single_quotes, - STATE(1326), 1, - sym__inter_double_quotes, - STATE(2485), 1, + ACTIONS(5093), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5095), 1, + aux_sym__immediate_decimal_token2, + STATE(2448), 1, sym_comment, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3310), 4, - sym_expr_parenthesized, + STATE(3351), 1, + sym__immediate_decimal, + ACTIONS(1649), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(4950), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3349), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77412] = 4, + ACTIONS(1647), 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, + [76134] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2486), 1, + STATE(2449), 1, sym_comment, - ACTIONS(1472), 4, - ts_builtin_sym_end, + ACTIONS(1524), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 15, + ACTIONS(1522), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204369,21 +203354,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_DOT_DOT2, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [77442] = 4, + [76165] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2487), 1, + ACTIONS(5087), 1, + anon_sym_DOT2, + STATE(2450), 1, sym_comment, - ACTIONS(1870), 4, + STATE(2487), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2637), 1, + sym_path, + STATE(2769), 1, + sym_cell_path, + ACTIONS(1462), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 15, + ACTIONS(1460), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204395,55 +203390,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, - sym__unquoted_pattern, - [77472] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_DOT, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token5, - STATE(2488), 1, - sym_comment, - ACTIONS(1738), 4, - sym_identifier, - anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 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, - [77506] = 7, + [76204] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, + STATE(2451), 1, sym_comment, - STATE(2492), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - ACTIONS(1460), 4, - ts_builtin_sym_end, + ACTIONS(1528), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1458), 12, + ACTIONS(1526), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204455,18 +203412,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_DOT_DOT2, - [77542] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [76235] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2490), 1, + STATE(2452), 1, sym_comment, - ACTIONS(1468), 4, - ts_builtin_sym_end, + ACTIONS(1508), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1466), 15, + ACTIONS(1506), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204478,29 +203439,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, anon_sym_DOT_DOT2, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [77572] = 8, + [76266] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2491), 1, + ACTIONS(5107), 1, + anon_sym_LPAREN2, + ACTIONS(5109), 1, + anon_sym_DOT_DOT2, + ACTIONS(5113), 1, + sym_filesize_unit, + ACTIONS(5115), 1, + sym_duration_unit, + ACTIONS(5117), 1, + sym__unquoted_pattern_in_record, + STATE(2453), 1, sym_comment, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2868), 1, - sym_cell_path, - ACTIONS(1643), 2, + STATE(4731), 1, + sym__expr_parenthesized_immediate, + ACTIONS(860), 2, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1641), 13, + ACTIONS(5111), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(960), 10, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -204510,24 +203479,21 @@ 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, - [77610] = 6, + [76311] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5180), 1, + ACTIONS(5119), 1, anon_sym_DOT2, - STATE(2611), 1, + STATE(2567), 1, sym_path, - STATE(2492), 2, + STATE(2454), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 4, - ts_builtin_sym_end, + ACTIONS(1540), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1524), 12, + ACTIONS(1538), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204539,21 +203505,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, anon_sym_DOT_DOT2, - [77644] = 5, + [76346] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - STATE(2493), 1, + ACTIONS(5024), 1, + anon_sym_DOT2, + STATE(2454), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2455), 1, sym_comment, - ACTIONS(1736), 5, - ts_builtin_sym_end, + STATE(2567), 1, + sym_path, + ACTIONS(1536), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 13, + ACTIONS(1534), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204565,112 +203535,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, - sym__unquoted_pattern, - [77676] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2494), 1, - sym_comment, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2863), 1, - sym_cell_path, - ACTIONS(1432), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1434), 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, - [77714] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(3263), 1, - anon_sym_DQUOTE, - ACTIONS(3265), 1, - anon_sym_SQUOTE, - ACTIONS(3267), 1, - anon_sym_BQUOTE, - ACTIONS(3269), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, - anon_sym_LPAREN, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(5183), 1, - sym__unquoted_naive, - STATE(2495), 1, - sym_comment, - STATE(3091), 1, - sym__inter_single_quotes, - STATE(3098), 1, - sym__inter_double_quotes, - STATE(2472), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3092), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77766] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2496), 1, - sym_comment, - ACTIONS(5187), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5185), 17, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_DOT2, - [77796] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5152), 1, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - STATE(2497), 1, + [76383] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2456), 1, sym_comment, - ACTIONS(5154), 2, + ACTIONS(741), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204682,51 +203563,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_and2, - anon_sym_xor2, - anon_sym_or2, - [77828] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2498), 1, - sym_comment, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2900), 1, - sym_cell_path, - ACTIONS(1681), 2, - anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1679), 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, - [77866] = 5, + sym__unquoted_pattern, + [76414] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(1762), 1, sym__unquoted_pattern, ACTIONS(5122), 1, + anon_sym_DOT, + ACTIONS(5124), 1, aux_sym__immediate_decimal_token5, - STATE(2499), 1, + STATE(2457), 1, sym_comment, - ACTIONS(1736), 17, + ACTIONS(1760), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204744,17 +203594,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [77898] = 5, - ACTIONS(3), 1, + [76449] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5189), 1, - anon_sym_DOT_DOT2, - STATE(2500), 1, + STATE(2458), 1, sym_comment, - ACTIONS(5191), 2, + ACTIONS(1512), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 16, + ACTIONS(1510), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204768,20 +203617,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77930] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5193), 1, anon_sym_DOT_DOT2, - STATE(2501), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [76480] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2459), 1, sym_comment, - ACTIONS(5195), 2, + ACTIONS(1516), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 16, + ACTIONS(1514), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204795,20 +203644,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77962] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5197), 1, anon_sym_DOT_DOT2, - STATE(2502), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [76511] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2460), 1, sym_comment, - ACTIONS(5199), 2, + ACTIONS(1520), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 16, + ACTIONS(1518), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204822,20 +203671,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [77994] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5201), 1, anon_sym_DOT_DOT2, - STATE(2503), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [76542] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5126), 1, + anon_sym_DOT, + ACTIONS(5128), 1, + aux_sym__immediate_decimal_token5, + STATE(2461), 1, sym_comment, - ACTIONS(5203), 2, + ACTIONS(1760), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 16, + ACTIONS(1762), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204847,23 +203702,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_and2, - anon_sym_xor2, - anon_sym_or2, - [78026] = 6, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76577] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1606), 1, sym__unquoted_pattern, - ACTIONS(5205), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5207), 1, - aux_sym__immediate_decimal_token5, - STATE(2504), 1, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + ACTIONS(5130), 1, + anon_sym_DOT_DOT2, + STATE(2462), 1, sym_comment, - ACTIONS(1726), 16, + ACTIONS(5132), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1936), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204879,24 +203734,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [78060] = 8, + [76614] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, + STATE(2463), 1, + sym_comment, + ACTIONS(1726), 4, sym__space, - ACTIONS(1968), 1, anon_sym_LPAREN2, - ACTIONS(5209), 1, - anon_sym_DOT_DOT2, - STATE(2505), 1, - sym_comment, - ACTIONS(5211), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 13, + ACTIONS(1728), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204910,18 +203758,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78098] = 5, - ACTIONS(103), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76644] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5213), 1, - anon_sym_BANG, - STATE(2506), 1, + ACTIONS(1728), 1, + sym__unquoted_pattern, + ACTIONS(5134), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5136), 1, + aux_sym__immediate_decimal_token5, + STATE(2464), 1, sym_comment, - ACTIONS(1440), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 15, + ACTIONS(1726), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204933,46 +203784,83 @@ static const uint16_t ts_small_parse_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_DOT2, - [78130] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [76678] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(2507), 1, + ACTIONS(952), 1, + sym_raw_string_begin, + ACTIONS(3244), 1, + anon_sym_DQUOTE, + ACTIONS(3246), 1, + anon_sym_SQUOTE, + ACTIONS(3248), 1, + anon_sym_BQUOTE, + ACTIONS(3250), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3252), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(5138), 1, + sym__unquoted_naive, + STATE(2465), 1, sym_comment, - ACTIONS(771), 6, - sym_identifier, + STATE(3095), 1, + sym__inter_single_quotes, + STATE(3096), 1, + sym__inter_double_quotes, + STATE(2469), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3214), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [76730] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2466), 1, + sym_comment, + ACTIONS(1545), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(773), 13, + anon_sym_DOT2, + ACTIONS(1547), 16, anon_sym_EQ, + sym_identifier, sym__newline, 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_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78160] = 4, + [76760] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2508), 1, + STATE(2467), 1, sym_comment, - ACTIONS(1535), 3, + ACTIONS(1530), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1537), 16, + ACTIONS(1532), 16, anon_sym_EQ, sym_identifier, sym__newline, @@ -204989,23 +203877,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78190] = 8, - ACTIONS(103), 1, + [76790] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5215), 1, - anon_sym_DOT_DOT2, - STATE(2509), 1, + ACTIONS(5140), 1, + anon_sym_DOT2, + STATE(842), 1, + sym_path, + STATE(1324), 1, + sym_cell_path, + STATE(2386), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2468), 1, sym_comment, - ACTIONS(5217), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 13, + ACTIONS(1870), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205017,22 +203903,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, - [78228] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [76826] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5219), 1, - aux_sym__immediate_decimal_token5, - STATE(2510), 1, + STATE(2469), 1, sym_comment, - ACTIONS(1802), 5, + ACTIONS(1524), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 13, + ACTIONS(1522), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205045,72 +203929,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78260] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2511), 1, - sym_comment, - ACTIONS(1462), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1464), 16, - anon_sym_EQ, - sym_identifier, - sym__newline, - 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_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78290] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5213), 1, anon_sym_QMARK2, - STATE(2512), 1, - sym_comment, - ACTIONS(1440), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 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, + anon_sym_BANG, anon_sym_DOT2, - [78322] = 7, + [76856] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(5140), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(842), 1, sym_path, - STATE(1279), 1, + STATE(1325), 1, sym_cell_path, - STATE(2387), 1, + STATE(2386), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2513), 1, + STATE(2470), 1, sym_comment, ACTIONS(1878), 15, ts_builtin_sym_end, @@ -205128,17 +203961,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78358] = 4, + [76892] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2514), 1, + ACTIONS(5142), 1, + anon_sym_DOT2, + STATE(2637), 1, + sym_path, + STATE(2471), 2, sym_comment, - ACTIONS(1802), 4, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1540), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 15, + ACTIONS(1538), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205150,52 +203988,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, - sym__unquoted_pattern, - [78388] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2515), 1, - sym_comment, - ACTIONS(1706), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [78419] = 8, + [76926] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2516), 1, + STATE(2472), 1, sym_comment, - STATE(2542), 1, - sym_path, - STATE(2932), 1, - sym_cell_path, - ACTIONS(1860), 13, + ACTIONS(1528), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1526), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205207,75 +204011,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, - [78456] = 4, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [76956] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, - anon_sym_DASH2, - STATE(2517), 1, + STATE(2473), 1, sym_comment, - ACTIONS(5221), 17, - anon_sym_EQ, + ACTIONS(739), 6, sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(741), 13, + anon_sym_EQ, 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_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78485] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5225), 1, - anon_sym_BANG, - STATE(2518), 1, - sym_comment, - ACTIONS(1440), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 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_DOT2, - [78516] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1866), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2519), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76986] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2474), 1, sym_comment, - STATE(2542), 1, - sym_path, - STATE(3025), 1, - sym_cell_path, - ACTIONS(1868), 13, + ACTIONS(1508), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1506), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205287,19 +204063,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, - [78553] = 5, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77016] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2520), 1, + ACTIONS(5140), 1, + anon_sym_DOT2, + STATE(842), 1, + sym_path, + STATE(1345), 1, + sym_cell_path, + STATE(2386), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2475), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, + ACTIONS(1846), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205315,22 +204096,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78584] = 8, + [77052] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5233), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2521), 1, + ACTIONS(5145), 1, + anon_sym_QMARK2, + STATE(2476), 1, sym_comment, - STATE(2542), 1, - sym_path, - STATE(3003), 1, - sym_cell_path, - ACTIONS(5231), 13, + ACTIONS(1468), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1466), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205344,14 +204121,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78621] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [77084] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(2522), 1, + STATE(2477), 1, sym_comment, - ACTIONS(2501), 17, + ACTIONS(1512), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1510), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205363,22 +204145,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [78650] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77114] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2523), 1, + STATE(2478), 1, sym_comment, - ACTIONS(1964), 16, + ACTIONS(1516), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1514), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205390,21 +204171,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_and2, - anon_sym_xor2, - anon_sym_or2, - [78681] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77144] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2524), 1, + STATE(2479), 1, sym_comment, - ACTIONS(994), 16, + ACTIONS(1520), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1518), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205416,24 +204197,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_and2, - anon_sym_xor2, - anon_sym_or2, - [78712] = 5, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77174] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5235), 1, - aux_sym__immediate_decimal_token5, - STATE(2525), 1, + STATE(2480), 1, sym_comment, - ACTIONS(1804), 4, + ACTIONS(771), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(1802), 13, + ACTIONS(773), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -205447,41 +204227,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78743] = 4, + [77204] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5239), 1, - anon_sym_DASH2, - STATE(2526), 1, + STATE(2481), 1, sym_comment, - ACTIONS(5237), 17, - anon_sym_EQ, + ACTIONS(878), 6, sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(880), 13, + anon_sym_EQ, 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_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78772] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2639), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2527), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77234] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5128), 1, + aux_sym__immediate_decimal_token5, + STATE(2482), 1, sym_comment, - ACTIONS(2635), 16, + ACTIONS(1760), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1762), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205493,21 +204278,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_DOT_DOT2, + sym__unquoted_pattern, + [77266] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1444), 1, + anon_sym_COMMA, + ACTIONS(5149), 1, + anon_sym_EQ, + ACTIONS(5151), 1, + sym__newline, + ACTIONS(5153), 1, + anon_sym_COLON, + ACTIONS(5155), 1, + anon_sym_LPAREN, + ACTIONS(5157), 1, + anon_sym_DASH2, + STATE(2483), 1, + sym_comment, + STATE(2593), 1, + sym_flag_capsule, + STATE(2599), 1, + aux_sym_parameter_repeat1, + STATE(3400), 1, + aux_sym_parameter_repeat2, + STATE(4199), 1, + aux_sym__repeat_newline, + STATE(3228), 2, + sym_param_type, + sym_param_value, + ACTIONS(5147), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78803] = 5, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77316] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1762), 1, sym__unquoted_pattern, - STATE(2528), 1, + ACTIONS(5124), 1, + aux_sym__immediate_decimal_token5, + STATE(2484), 1, sym_comment, - ACTIONS(2575), 16, + ACTIONS(1760), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205524,18 +204342,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78834] = 4, - ACTIONS(103), 1, + anon_sym_LPAREN2, + [77348] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2529), 1, + ACTIONS(5140), 1, + anon_sym_DOT2, + STATE(842), 1, + sym_path, + STATE(1331), 1, + sym_cell_path, + STATE(2386), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2485), 1, sym_comment, - ACTIONS(1802), 5, + ACTIONS(1858), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205547,45 +204369,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, - sym__unquoted_pattern, - [78863] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5243), 1, - anon_sym_DASH2, - STATE(2530), 1, - sym_comment, - ACTIONS(5241), 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_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78892] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77384] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2531), 1, + STATE(2486), 1, sym_comment, - ACTIONS(1726), 5, - ts_builtin_sym_end, + ACTIONS(1810), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 13, + ACTIONS(1812), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205597,18 +204394,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, sym__unquoted_pattern, - [78921] = 4, + [77414] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2532), 1, + ACTIONS(5087), 1, + anon_sym_DOT2, + STATE(2471), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2487), 1, sym_comment, - ACTIONS(1537), 3, + STATE(2637), 1, + sym_path, + ACTIONS(1536), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 15, + ACTIONS(1534), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205620,20 +204426,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_DOT_DOT2, - anon_sym_DOT2, - [78950] = 5, + [77450] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1762), 1, sym__unquoted_pattern, - STATE(2533), 1, + ACTIONS(5159), 1, + anon_sym_DOT, + ACTIONS(5161), 1, + aux_sym__immediate_decimal_token5, + STATE(2488), 1, sym_comment, - ACTIONS(1974), 16, + ACTIONS(1760), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205645,21 +204451,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, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78981] = 5, + anon_sym_LPAREN2, + [77484] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2534), 1, + ACTIONS(852), 1, + sym_raw_string_begin, + ACTIONS(3108), 1, + anon_sym_DQUOTE, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(3112), 1, + anon_sym_BQUOTE, + ACTIONS(3114), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3116), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3677), 1, + anon_sym_LPAREN, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + ACTIONS(5163), 1, + sym__unquoted_naive, + STATE(2489), 1, + sym_comment, + STATE(3001), 1, + sym__inter_double_quotes, + STATE(3069), 1, + sym__inter_single_quotes, + STATE(2449), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3034), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [77536] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5165), 1, + aux_sym__immediate_decimal_token5, + STATE(2490), 1, sym_comment, - ACTIONS(2523), 16, + ACTIONS(1810), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1812), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205671,21 +204517,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_and2, - anon_sym_xor2, - anon_sym_or2, - [79012] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77568] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2535), 1, + ACTIONS(5140), 1, + anon_sym_DOT2, + STATE(842), 1, + sym_path, + STATE(1266), 1, + sym_cell_path, + STATE(2386), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2491), 1, sym_comment, - ACTIONS(2567), 16, + ACTIONS(1886), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205697,108 +204545,112 @@ static const uint16_t ts_small_parse_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_and2, anon_sym_xor2, anon_sym_or2, - [79043] = 4, + [77604] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2536), 1, + STATE(2492), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(1549), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1472), 15, + ACTIONS(1551), 16, anon_sym_EQ, sym_identifier, sym__newline, 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_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79072] = 6, + [77634] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2537), 1, + ACTIONS(5167), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2493), 1, sym_comment, - ACTIONS(4682), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4684), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4686), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4678), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [79105] = 8, - ACTIONS(103), 1, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2852), 1, + sym_cell_path, + ACTIONS(1460), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1462), 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, + [77672] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5167), 1, anon_sym_DOT2, - ACTIONS(5247), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2538), 1, - sym_comment, - STATE(2542), 1, + STATE(2492), 1, sym_path, - STATE(3037), 1, + STATE(2494), 1, + sym_comment, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2876), 1, sym_cell_path, - ACTIONS(5245), 13, + ACTIONS(1657), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1655), 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, - [79142] = 8, + 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, + [77710] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5251), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1936), 1, sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2539), 1, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + ACTIONS(5169), 1, + anon_sym_DOT_DOT2, + STATE(2495), 1, sym_comment, - STATE(2542), 1, - sym_path, - STATE(3036), 1, - sym_cell_path, - ACTIONS(5249), 13, + ACTIONS(5171), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1938), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205812,66 +204664,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79179] = 4, + [77748] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5255), 1, - anon_sym_DASH2, - STATE(2540), 1, + ACTIONS(5173), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5175), 1, + aux_sym__immediate_decimal_token5, + STATE(2496), 1, sym_comment, - ACTIONS(5253), 17, - anon_sym_EQ, + ACTIONS(1728), 4, sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1726), 13, + anon_sym_EQ, 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_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [79208] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77782] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5259), 1, - anon_sym_DASH2, - STATE(2541), 1, + ACTIONS(5177), 1, + anon_sym_DOT_DOT2, + STATE(2497), 1, sym_comment, - ACTIONS(5257), 17, - anon_sym_EQ, - sym_identifier, + ACTIONS(5179), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1706), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [79237] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77814] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2542), 1, + ACTIONS(5140), 1, + anon_sym_DOT2, + STATE(842), 1, + sym_path, + STATE(1339), 1, + sym_cell_path, + STATE(2386), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2498), 1, sym_comment, - ACTIONS(1464), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 15, + ACTIONS(1840), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205883,23 +204745,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_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [79266] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77850] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5261), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5263), 1, - aux_sym__immediate_decimal_token5, - STATE(2543), 1, + ACTIONS(4123), 1, + anon_sym_DOT_DOT2, + ACTIONS(5032), 1, + sym_filesize_unit, + ACTIONS(5034), 1, + sym_duration_unit, + ACTIONS(5036), 1, + sym__unquoted_pattern, + STATE(2499), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(960), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 14, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(860), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205911,19 +204779,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, - sym__unquoted_pattern, - [79299] = 4, + [77890] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2544), 1, + ACTIONS(5167), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2500), 1, sym_comment, - ACTIONS(1474), 3, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2906), 1, + sym_cell_path, + ACTIONS(1667), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1476), 15, + ACTIONS(1665), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -205937,47 +204809,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79328] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5267), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2545), 1, - sym_comment, - STATE(3016), 1, - sym_cell_path, - ACTIONS(5265), 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, - [79365] = 5, + [77928] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2546), 1, + ACTIONS(5177), 1, + anon_sym_DOT_DOT2, + STATE(2501), 1, sym_comment, - ACTIONS(1018), 16, + ACTIONS(5179), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5181), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205994,16 +204836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79396] = 5, + [77960] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2547), 1, + ACTIONS(5177), 1, + anon_sym_DOT_DOT2, + STATE(2502), 1, sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + ACTIONS(5179), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5181), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206020,47 +204863,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79427] = 4, + [77992] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2548), 1, - sym_comment, - ACTIONS(1478), 3, - anon_sym_DASH2, + ACTIONS(5177), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1480), 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, + STATE(2503), 1, + sym_comment, + ACTIONS(5179), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79456] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5273), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2549), 1, - sym_comment, - STATE(3005), 1, - sym_cell_path, - ACTIONS(5271), 13, + ACTIONS(5181), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206074,19 +204887,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79493] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78024] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5275), 1, - anon_sym_DOT, - ACTIONS(5277), 1, - aux_sym__immediate_decimal_token5, - STATE(2550), 1, + ACTIONS(5145), 1, + anon_sym_BANG, + STATE(2504), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1468), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1466), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206100,20 +204915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [79526] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [78056] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5225), 1, - anon_sym_QMARK2, - STATE(2551), 1, + STATE(2505), 1, sym_comment, - ACTIONS(1440), 4, - ts_builtin_sym_end, + ACTIONS(1854), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 13, + ACTIONS(1856), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206125,20 +204939,89 @@ static const uint16_t ts_small_parse_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, + sym__unquoted_pattern, + [78086] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2506), 1, + sym_comment, + ACTIONS(5185), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5183), 17, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_DOT2, - [79557] = 4, + [78116] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(2552), 1, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1774), 1, + anon_sym_LPAREN, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(5187), 1, + anon_sym_DOLLAR, + ACTIONS(5189), 1, + sym__unquoted_naive, + STATE(786), 1, + sym__inter_single_quotes, + STATE(787), 1, + sym__inter_double_quotes, + STATE(2507), 1, sym_comment, - ACTIONS(1514), 3, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3087), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [78168] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5193), 1, + aux_sym__immediate_decimal_token5, + STATE(2508), 1, + sym_comment, + ACTIONS(1762), 4, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1516), 15, + sym__unquoted_pattern_in_record, + ACTIONS(1760), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -206148,26 +205031,63 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_QMARK2, - anon_sym_BANG, - [79586] = 8, + [78202] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(97), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(5195), 1, + anon_sym_LPAREN, + ACTIONS(5197), 1, + anon_sym_DOLLAR, + ACTIONS(5199), 1, + sym__unquoted_naive, + STATE(1322), 1, + sym__inter_single_quotes, + STATE(1326), 1, + sym__inter_double_quotes, + STATE(2509), 1, + sym_comment, + STATE(493), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3284), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [78254] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(1946), 1, sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2553), 1, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + ACTIONS(5201), 1, + anon_sym_DOT_DOT2, + STATE(2510), 1, sym_comment, - STATE(2968), 1, - sym_cell_path, - ACTIONS(1884), 13, + ACTIONS(5203), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1948), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206181,22 +205101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79623] = 8, - ACTIONS(103), 1, + [78292] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2554), 1, + ACTIONS(5205), 1, + anon_sym_DOT_DOT2, + STATE(2511), 1, sym_comment, - STATE(2987), 1, - sym_cell_path, - ACTIONS(1880), 13, + ACTIONS(5207), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2118), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206210,17 +205125,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79660] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78324] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5158), 1, - aux_sym__immediate_decimal_token5, - STATE(2555), 1, + ACTIONS(5209), 1, + anon_sym_DOT_DOT2, + STATE(2512), 1, sym_comment, - ACTIONS(1736), 16, - ts_builtin_sym_end, + ACTIONS(5211), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2146), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206232,54 +205150,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, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [79691] = 7, + [78356] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - sym_comment, - STATE(2575), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1458), 2, - anon_sym_DASH2, + ACTIONS(5213), 1, anon_sym_DOT_DOT2, - ACTIONS(1460), 13, - anon_sym_EQ, - sym_identifier, + STATE(2513), 1, + sym_comment, + ACTIONS(5215), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2166), 16, 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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [79726] = 8, - ACTIONS(103), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78388] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2557), 1, + ACTIONS(5217), 1, + anon_sym_DOT_DOT2, + STATE(2514), 1, sym_comment, - STATE(2931), 1, - sym_cell_path, - ACTIONS(1864), 13, + ACTIONS(5219), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2090), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206293,14 +205206,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79763] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78420] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1812), 1, sym__unquoted_pattern, - STATE(2558), 1, + ACTIONS(5221), 1, + aux_sym__immediate_decimal_token5, + STATE(2515), 1, sym_comment, - ACTIONS(1726), 17, + ACTIONS(1810), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206318,18 +205236,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [79792] = 4, + [78452] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2559), 1, + STATE(2516), 1, sym_comment, - ACTIONS(1870), 5, + ACTIONS(1810), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 13, + ACTIONS(1812), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206343,24 +205261,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [79821] = 8, - ACTIONS(103), 1, + [78481] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2557), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2559), 1, sym__unquoted_pattern, - ACTIONS(5279), 1, - anon_sym_DOT_DOT2, - STATE(2560), 1, + STATE(2517), 1, + sym_comment, + ACTIONS(1706), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [78512] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2518), 1, sym_comment, - ACTIONS(1974), 2, + ACTIONS(1726), 5, ts_builtin_sym_end, sym__space, - ACTIONS(5281), 2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 11, + ACTIONS(1728), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206372,43 +205310,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [79858] = 4, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78541] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2561), 1, + ACTIONS(1728), 1, + sym__unquoted_pattern, + STATE(2519), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(1726), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [78570] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5225), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1545), 15, + STATE(2520), 1, + sym_comment, + ACTIONS(5223), 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_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79887] = 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + [78599] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2562), 1, + ACTIONS(1812), 1, + sym__unquoted_pattern, + STATE(2521), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, - ts_builtin_sym_end, + ACTIONS(1810), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206420,48 +205381,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_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79918] = 6, + anon_sym_LPAREN2, + [78628] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2563), 1, + ACTIONS(1856), 1, + sym__unquoted_pattern, + STATE(2522), 1, sym_comment, - ACTIONS(4694), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4696), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4698), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4692), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [79951] = 5, - ACTIONS(3), 1, + ACTIONS(1854), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [78657] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2564), 1, + ACTIONS(1878), 1, + sym__space, + ACTIONS(5024), 1, + anon_sym_DOT2, + STATE(2455), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2523), 1, + sym_comment, + STATE(2567), 1, + sym_path, + STATE(3029), 1, + sym_cell_path, + ACTIONS(1880), 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, + [78694] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + STATE(2524), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 15, - ts_builtin_sym_end, + ACTIONS(1946), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206473,27 +205462,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_and2, anon_sym_xor2, anon_sym_or2, - [79982] = 8, + [78725] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5283), 1, - anon_sym_DOT_DOT2, - STATE(2565), 1, + STATE(2525), 1, sym_comment, - ACTIONS(1964), 2, - ts_builtin_sym_end, + ACTIONS(1547), 3, sym__space, - ACTIONS(5285), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 11, + ACTIONS(1545), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206505,16 +205488,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, - [80019] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [78754] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2566), 1, + STATE(2526), 1, sym_comment, - ACTIONS(1522), 3, - sym__space, + ACTIONS(1526), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1528), 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_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1520), 15, + anon_sym_QMARK2, + anon_sym_BANG, + [78783] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1858), 1, + sym__space, + ACTIONS(5024), 1, + anon_sym_DOT2, + STATE(2455), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2527), 1, + sym_comment, + STATE(2567), 1, + sym_path, + STATE(3041), 1, + sym_cell_path, + ACTIONS(1860), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206528,18 +205546,16 @@ 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_DOT2, - [80048] = 5, + [78820] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1645), 1, + sym__unquoted_pattern, + ACTIONS(2620), 1, anon_sym_LPAREN2, - STATE(2567), 1, + STATE(2528), 1, sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + ACTIONS(2584), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206556,16 +205572,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80079] = 4, + [78851] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2568), 1, + ACTIONS(5167), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2529), 1, sym_comment, - ACTIONS(1466), 3, + STATE(2566), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1534), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1468), 15, + ACTIONS(1536), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -206579,16 +205600,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [80108] = 4, - ACTIONS(3), 1, + [78886] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(2569), 1, + STATE(2530), 1, sym_comment, - ACTIONS(1802), 17, + ACTIONS(1854), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1856), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206600,20 +205623,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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80137] = 4, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78915] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(5229), 1, anon_sym_DASH2, - STATE(2570), 1, + STATE(2531), 1, sym_comment, - ACTIONS(5287), 17, + ACTIONS(5227), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -206631,14 +205650,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [80166] = 4, + [78944] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(2571), 1, + STATE(2532), 1, sym_comment, - ACTIONS(1870), 17, + ACTIONS(1506), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1508), 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_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [78973] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2533), 1, + sym_comment, + ACTIONS(1532), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1530), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206652,21 +205698,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80195] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [79002] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(5291), 1, - aux_sym__immediate_decimal_token5, - STATE(2572), 1, + ACTIONS(5024), 1, + anon_sym_DOT2, + ACTIONS(5233), 1, + sym__space, + STATE(2455), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2534), 1, sym_comment, - ACTIONS(1802), 16, - ts_builtin_sym_end, + STATE(2567), 1, + sym_path, + STATE(3017), 1, + sym_cell_path, + ACTIONS(5231), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206678,26 +205727,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_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [79039] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5193), 1, + aux_sym__immediate_decimal_token5, + STATE(2535), 1, + sym_comment, + ACTIONS(1762), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1760), 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, - [80226] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [79070] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1850), 1, - sym__space, ACTIONS(5024), 1, anon_sym_DOT2, - STATE(2430), 1, + ACTIONS(5237), 1, + sym__space, + STATE(2455), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2573), 1, + STATE(2536), 1, sym_comment, - STATE(3050), 1, + STATE(2567), 1, + sym_path, + STATE(3027), 1, sym_cell_path, - ACTIONS(1853), 13, + ACTIONS(5235), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206711,17 +205784,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [80263] = 5, + [79107] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, + ACTIONS(5239), 1, anon_sym_DOT_DOT2, - STATE(2574), 1, + STATE(2537), 1, sym_comment, - ACTIONS(5229), 2, + ACTIONS(5241), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, + ACTIONS(5181), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206737,44 +205810,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80294] = 6, - ACTIONS(3), 1, + [79138] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5293), 1, + ACTIONS(5024), 1, anon_sym_DOT2, - STATE(2511), 1, - sym_path, - ACTIONS(1524), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - STATE(2575), 2, - sym_comment, + ACTIONS(5245), 1, + sym__space, + STATE(2455), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 13, - anon_sym_EQ, - sym_identifier, + STATE(2538), 1, + sym_comment, + STATE(2567), 1, + sym_path, + STATE(3028), 1, + sym_cell_path, + ACTIONS(5243), 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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [80327] = 5, + anon_sym_RBRACE, + [79175] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5296), 1, - anon_sym_DOT_DOT2, - STATE(2576), 1, + ACTIONS(1812), 1, + sym__unquoted_pattern, + ACTIONS(5247), 1, + aux_sym__immediate_decimal_token5, + STATE(2539), 1, sym_comment, - ACTIONS(5298), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 15, + ACTIONS(1810), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206790,19 +205864,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80358] = 5, + anon_sym_LPAREN2, + [79206] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5251), 1, + anon_sym_DASH2, + STATE(2540), 1, + sym_comment, + ACTIONS(5249), 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_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [79235] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5176), 1, + ACTIONS(5253), 1, aux_sym__immediate_decimal_token5, - STATE(2577), 1, + STATE(2541), 1, sym_comment, - ACTIONS(1738), 4, + ACTIONS(1812), 4, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1736), 13, + ACTIONS(1810), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -206816,18 +205916,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [80389] = 5, - ACTIONS(3), 1, + [79266] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5300), 1, - anon_sym_DOT_DOT2, - STATE(2578), 1, + ACTIONS(1886), 1, + sym__space, + ACTIONS(5024), 1, + anon_sym_DOT2, + STATE(2455), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2542), 1, sym_comment, - ACTIONS(5302), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 15, - ts_builtin_sym_end, + STATE(2567), 1, + sym_path, + STATE(3050), 1, + sym_cell_path, + ACTIONS(1888), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206839,20 +205943,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_and2, - anon_sym_xor2, - anon_sym_or2, - [80420] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [79303] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5304), 1, + ACTIONS(5239), 1, anon_sym_DOT_DOT2, - STATE(2579), 1, + STATE(2543), 1, sym_comment, - ACTIONS(5306), 2, + ACTIONS(5241), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 15, + ACTIONS(5181), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206868,18 +205971,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80451] = 5, + [79334] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5308), 1, - anon_sym_DOT_DOT2, - STATE(2580), 1, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(2544), 1, sym_comment, - ACTIONS(5310), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 15, - ts_builtin_sym_end, + ACTIONS(1010), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206891,19 +205992,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_and2, anon_sym_xor2, anon_sym_or2, - [80482] = 5, + [79365] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(2644), 1, anon_sym_LPAREN2, - STATE(2581), 1, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(2545), 1, sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + ACTIONS(2640), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206920,20 +206023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80513] = 6, + [79396] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5312), 1, - anon_sym_DOT, - ACTIONS(5314), 1, + ACTIONS(5255), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5257), 1, aux_sym__immediate_decimal_token5, - STATE(2582), 1, + STATE(2546), 1, sym_comment, - ACTIONS(1736), 3, - ts_builtin_sym_end, + ACTIONS(1726), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1738), 12, + ACTIONS(1728), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206945,16 +206047,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, sym__unquoted_pattern, - [80545] = 4, + [79429] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(2583), 1, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + STATE(2547), 1, sym_comment, - ACTIONS(1802), 16, - ts_builtin_sym_end, + STATE(4719), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5259), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206966,59 +206071,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80573] = 12, + [79460] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5318), 1, - anon_sym_DASH2, - STATE(2584), 1, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(2548), 1, sym_comment, - STATE(2787), 1, - aux_sym_parameter_repeat1, - STATE(3394), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5316), 7, - sym_identifier, + ACTIONS(1018), 16, + 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_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [80617] = 8, - ACTIONS(103), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79491] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2585), 1, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + STATE(2549), 1, sym_comment, - STATE(2611), 1, - sym_path, - STATE(3086), 1, - sym_cell_path, - ACTIONS(5247), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5245), 11, + STATE(4719), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5259), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207030,17 +206123,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, - [80653] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79522] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5320), 1, - aux_sym__immediate_decimal_token5, - STATE(2586), 1, - sym_comment, - ACTIONS(1802), 2, + ACTIONS(1840), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 14, + ACTIONS(5024), 1, + anon_sym_DOT2, + STATE(2455), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2550), 1, + sym_comment, + STATE(2567), 1, + sym_path, + STATE(2934), 1, + sym_cell_path, + ACTIONS(1842), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207054,18 +206157,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [80683] = 5, - ACTIONS(3), 1, + [79559] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2587), 1, + ACTIONS(5261), 1, + anon_sym_QMARK2, + STATE(2551), 1, sym_comment, - ACTIONS(1706), 15, + ACTIONS(1468), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1466), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207077,19 +206181,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_and2, - anon_sym_xor2, - anon_sym_or2, - [80713] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [79590] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2588), 1, + STATE(2552), 1, sym_comment, - ACTIONS(1804), 3, + ACTIONS(1518), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 14, + anon_sym_DOT2, + ACTIONS(1520), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -207101,51 +206204,80 @@ static const uint16_t ts_small_parse_table[] = { 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, - [80741] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [79619] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2589), 1, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + STATE(2553), 1, sym_comment, - ACTIONS(1872), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 14, - anon_sym_EQ, - sym_identifier, + STATE(4719), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5259), 16, 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, - [80769] = 9, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79650] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2554), 1, + sym_comment, + ACTIONS(4676), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4678), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4680), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4672), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [79683] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5322), 1, - sym__newline, - ACTIONS(5324), 1, + ACTIONS(1846), 1, sym__space, - ACTIONS(5328), 1, - anon_sym_COLON2, - ACTIONS(5330), 1, - anon_sym_EQ2, - STATE(2590), 1, + ACTIONS(5024), 1, + anon_sym_DOT2, + STATE(2455), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2555), 1, sym_comment, - STATE(2840), 1, - aux_sym_attribute_repeat1, - STATE(4319), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5326), 11, + STATE(2567), 1, + sym_path, + STATE(2988), 1, + sym_cell_path, + ACTIONS(1849), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -207156,16 +206288,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, - [80807] = 4, - ACTIONS(3), 1, + [79720] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, sym__unquoted_pattern, - STATE(2591), 1, + ACTIONS(5263), 1, + anon_sym_DOT_DOT2, + STATE(2556), 1, sym_comment, - ACTIONS(1870), 16, + ACTIONS(1946), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5265), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1948), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207177,84 +206319,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80835] = 12, + [79757] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_DASH2, - STATE(2592), 1, + STATE(2557), 1, sym_comment, - STATE(2787), 1, - aux_sym_parameter_repeat1, - STATE(3384), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5332), 7, + ACTIONS(4714), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4716), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4718), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4712), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [79790] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2558), 1, + sym_comment, + ACTIONS(1510), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1512), 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_DOT_DOT_DOT, anon_sym_DASH_DASH, - [80879] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2593), 1, - sym_comment, - STATE(4777), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [80909] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [79819] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5024), 1, anon_sym_DOT2, - STATE(2489), 1, + ACTIONS(5269), 1, + sym__space, + STATE(2455), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2594), 1, + STATE(2559), 1, sym_comment, - STATE(2611), 1, + STATE(2567), 1, sym_path, - STATE(3197), 1, + STATE(2920), 1, sym_cell_path, - ACTIONS(1878), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1880), 11, + ACTIONS(5267), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207266,14 +206398,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, - [80945] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [79856] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - STATE(2595), 1, + ACTIONS(5273), 1, + anon_sym_DASH2, + STATE(2560), 1, sym_comment, - ACTIONS(1726), 16, + ACTIONS(5271), 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_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [79885] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5239), 1, + anon_sym_DOT_DOT2, + STATE(2561), 1, + sym_comment, + ACTIONS(5241), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1706), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207289,17 +206451,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80973] = 4, + [79916] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2596), 1, - sym_comment, - ACTIONS(1874), 3, + ACTIONS(5024), 1, + anon_sym_DOT2, + ACTIONS(5277), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1876), 14, + STATE(2455), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2562), 1, + sym_comment, + STATE(2567), 1, + sym_path, + STATE(2924), 1, + sym_cell_path, + ACTIONS(5275), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207313,47 +206480,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [81001] = 7, - ACTIONS(103), 1, + [79953] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5338), 1, - sym__space, - ACTIONS(5340), 1, - anon_sym_EQ2, - ACTIONS(5342), 1, - sym_short_flag_identifier, - STATE(2597), 1, + ACTIONS(5281), 1, + anon_sym_DASH2, + STATE(2563), 1, sym_comment, - STATE(3073), 1, - sym__flag_equals_value, - ACTIONS(5336), 13, + ACTIONS(5279), 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_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [81035] = 6, - ACTIONS(103), 1, + [79982] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5346), 1, - sym__space, - ACTIONS(5348), 1, - anon_sym_DOT_DOT2, - STATE(2598), 1, + STATE(2564), 1, sym_comment, - ACTIONS(5350), 2, + ACTIONS(1514), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1516), 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_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5344), 13, + anon_sym_QMARK2, + anon_sym_BANG, + [80011] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5283), 1, + anon_sym_DOT, + ACTIONS(5285), 1, + aux_sym__immediate_decimal_token5, + STATE(2565), 1, + sym_comment, + ACTIONS(1760), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1762), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207367,23 +206556,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81067] = 8, - ACTIONS(103), 1, + sym__unquoted_pattern, + [80044] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5287), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2492), 1, + sym_path, + ACTIONS(1538), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + STATE(2566), 2, + sym_comment, aux_sym__where_predicate_lhs_repeat1, - STATE(2599), 1, + ACTIONS(1540), 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, + [80077] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2567), 1, sym_comment, - STATE(2611), 1, - sym_path, - STATE(3212), 1, - sym_cell_path, - ACTIONS(1866), 2, - ts_builtin_sym_end, + ACTIONS(1551), 3, sym__space, - ACTIONS(1868), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1549), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207395,17 +206605,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, - [81103] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [80106] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1950), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1956), 1, sym__unquoted_pattern, - STATE(2600), 1, + STATE(2568), 1, sym_comment, - ACTIONS(2575), 15, - ts_builtin_sym_end, + ACTIONS(2568), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207417,19 +206630,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_and2, anon_sym_xor2, anon_sym_or2, - [81133] = 4, + [80137] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2601), 1, - sym_comment, - ACTIONS(1641), 3, + ACTIONS(1870), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 14, + ACTIONS(5024), 1, + anon_sym_DOT2, + STATE(2455), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2567), 1, + sym_path, + STATE(2569), 1, + sym_comment, + STATE(2953), 1, + sym_cell_path, + ACTIONS(1872), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207443,24 +206664,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [81161] = 8, - ACTIONS(103), 1, + [80174] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2602), 1, + ACTIONS(5239), 1, + anon_sym_DOT_DOT2, + STATE(2570), 1, sym_comment, - STATE(2611), 1, - sym_path, - STATE(3143), 1, - sym_cell_path, - ACTIONS(1882), 2, + ACTIONS(5241), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5181), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1884), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207472,17 +206687,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, - [81197] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80205] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2493), 1, sym__unquoted_pattern, - STATE(2603), 1, + STATE(2571), 1, sym_comment, - ACTIONS(1974), 15, - ts_builtin_sym_end, + ACTIONS(2491), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207494,22 +206709,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81227] = 6, + anon_sym_LPAREN2, + [80234] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(5348), 1, - anon_sym_DOT_DOT2, - STATE(2604), 1, + ACTIONS(5261), 1, + anon_sym_BANG, + STATE(2572), 1, sym_comment, - ACTIONS(5350), 2, + ACTIONS(1468), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 13, + ACTIONS(1466), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207521,21 +206739,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, - [81259] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [80265] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__space, - ACTIONS(5352), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + ACTIONS(5290), 1, anon_sym_DOT_DOT2, - STATE(2605), 1, + STATE(2573), 1, sym_comment, - ACTIONS(5354), 2, + ACTIONS(1936), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5292), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 13, + ACTIONS(1938), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207547,21 +206770,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, - [81291] = 6, - ACTIONS(103), 1, + [80302] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__space, - ACTIONS(5356), 1, - anon_sym_DOT_DOT2, - STATE(2606), 1, + ACTIONS(1762), 1, + sym__unquoted_pattern, + ACTIONS(5161), 1, + aux_sym__immediate_decimal_token5, + STATE(2574), 1, sym_comment, - ACTIONS(5358), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 13, + ACTIONS(1760), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207573,21 +206792,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [80333] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2575), 1, + sym_comment, + ACTIONS(1522), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1524), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [81323] = 6, - ACTIONS(103), 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, + anon_sym_QMARK2, + anon_sym_BANG, + [80362] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2076), 1, - sym__space, - ACTIONS(5360), 1, + ACTIONS(5294), 1, anon_sym_DOT_DOT2, - STATE(2607), 1, + STATE(2576), 1, sym_comment, - ACTIONS(5362), 2, + ACTIONS(5296), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 13, + ACTIONS(2118), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207599,21 +206844,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, - [81355] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80393] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__space, - ACTIONS(5364), 1, + ACTIONS(5298), 1, anon_sym_DOT_DOT2, - STATE(2608), 1, + STATE(2577), 1, sym_comment, - ACTIONS(5366), 2, + ACTIONS(5300), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 13, + ACTIONS(2146), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207625,19 +206870,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, - [81387] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80424] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2609), 1, + ACTIONS(5302), 1, + anon_sym_DOT_DOT2, + STATE(2578), 1, sym_comment, - ACTIONS(1522), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5304), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1520), 13, + ACTIONS(2166), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207649,43 +206896,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_DOT_DOT2, - anon_sym_DOT2, - [81415] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80455] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2610), 1, - sym_comment, - ACTIONS(1728), 3, - anon_sym_DASH2, + ACTIONS(5306), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 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, - [81443] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2611), 1, + STATE(2579), 1, sym_comment, - ACTIONS(1464), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5308), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 13, + ACTIONS(2090), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207697,47 +206922,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, - anon_sym_DOT2, - [81471] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1966), 1, - anon_sym_DASH2, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5368), 1, - anon_sym_DOT_DOT2, - STATE(2612), 1, - sym_comment, - ACTIONS(5370), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 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, - [81507] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80486] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(2622), 1, anon_sym_LPAREN2, - STATE(2613), 1, + ACTIONS(2624), 1, + sym__unquoted_pattern, + STATE(2580), 1, sym_comment, - STATE(4777), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, - ts_builtin_sym_end, + ACTIONS(2604), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207749,20 +206946,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_and2, anon_sym_xor2, anon_sym_or2, - [81537] = 5, + [80517] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5312), 1, + anon_sym_DASH2, + STATE(2581), 1, + sym_comment, + ACTIONS(5310), 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_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [80546] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1606), 1, sym__unquoted_pattern, - ACTIONS(2629), 1, + ACTIONS(1940), 1, anon_sym_LPAREN2, - STATE(2614), 1, + STATE(2582), 1, sym_comment, - ACTIONS(2523), 15, - ts_builtin_sym_end, + ACTIONS(1936), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207774,19 +206997,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_and2, anon_sym_xor2, anon_sym_or2, - [81567] = 4, + [80577] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2615), 1, + STATE(2583), 1, sym_comment, - ACTIONS(1822), 3, + ACTIONS(1532), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1824), 14, + ACTIONS(1530), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207798,50 +207024,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, anon_sym_DOT_DOT2, - [81595] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2616), 1, - sym_comment, - ACTIONS(1876), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1874), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81623] = 8, + anon_sym_DOT2, + [80605] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5087), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2487), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2617), 1, + STATE(2584), 1, sym_comment, - STATE(3084), 1, + STATE(2637), 1, + sym_path, + STATE(3111), 1, sym_cell_path, - ACTIONS(1862), 2, + ACTIONS(1840), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1864), 11, + ACTIONS(1842), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207853,16 +207054,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, - [81659] = 5, + [80641] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(1812), 1, sym__unquoted_pattern, - STATE(2618), 1, + STATE(2585), 1, sym_comment, - ACTIONS(2567), 15, + ACTIONS(1810), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207878,16 +207077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81689] = 5, + anon_sym_LPAREN2, + [80669] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(1856), 1, sym__unquoted_pattern, - STATE(2619), 1, + STATE(2586), 1, sym_comment, - ACTIONS(2635), 15, + ACTIONS(1854), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207903,14 +207101,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81719] = 4, + anon_sym_LPAREN2, + [80697] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, sym__unquoted_pattern, - STATE(2620), 1, + STATE(2587), 1, sym_comment, - ACTIONS(968), 16, + ACTIONS(1018), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207922,53 +207124,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_and2, anon_sym_xor2, anon_sym_or2, - [81747] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5374), 1, - anon_sym_DASH2, - STATE(2584), 1, - aux_sym_parameter_repeat1, - STATE(2621), 1, - sym_comment, - STATE(3391), 1, - aux_sym_parameter_repeat2, - STATE(4189), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5372), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [81791] = 4, + [80727] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2622), 1, + STATE(2588), 1, sym_comment, - ACTIONS(1886), 3, + ACTIONS(1866), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1888), 14, + ACTIONS(1868), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207983,101 +207151,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [81819] = 12, + [80755] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + STATE(2589), 1, + sym_comment, + ACTIONS(1936), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [80785] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(1444), 1, anon_sym_COMMA, - ACTIONS(5138), 1, + ACTIONS(5149), 1, anon_sym_EQ, - ACTIONS(5140), 1, + ACTIONS(5151), 1, sym__newline, - ACTIONS(5142), 1, + ACTIONS(5153), 1, anon_sym_COLON, - ACTIONS(5378), 1, + ACTIONS(5316), 1, anon_sym_DASH2, - STATE(2623), 1, + STATE(2590), 1, sym_comment, - STATE(2787), 1, + STATE(2650), 1, aux_sym_parameter_repeat1, - STATE(3367), 1, + STATE(3359), 1, aux_sym_parameter_repeat2, - STATE(4189), 1, + STATE(4199), 1, aux_sym__repeat_newline, - STATE(3256), 2, + STATE(3228), 2, sym_param_type, sym_param_value, - ACTIONS(5376), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [81863] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2624), 1, - sym_comment, - ACTIONS(1888), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1886), 15, - anon_sym_EQ, + ACTIONS(5314), 7, sym_identifier, - sym__newline, 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_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81891] = 8, + [80829] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5087), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2487), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2625), 1, + STATE(2591), 1, sym_comment, - STATE(3094), 1, + STATE(2637), 1, + sym_path, + STATE(3121), 1, sym_cell_path, - ACTIONS(1858), 2, + ACTIONS(1870), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1860), 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, - [81927] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2626), 1, - sym_comment, - ACTIONS(1964), 15, - ts_builtin_sym_end, + ACTIONS(1872), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208089,19 +207236,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_and2, - anon_sym_xor2, - anon_sym_or2, - [81957] = 4, + [80865] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2627), 1, + STATE(2592), 1, sym_comment, - ACTIONS(1558), 3, + ACTIONS(1570), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1556), 14, + ACTIONS(1568), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208116,23 +207260,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [81985] = 8, - ACTIONS(103), 1, + [80893] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2628), 1, + ACTIONS(1444), 1, + anon_sym_COMMA, + ACTIONS(5149), 1, + anon_sym_EQ, + ACTIONS(5151), 1, + sym__newline, + ACTIONS(5153), 1, + anon_sym_COLON, + ACTIONS(5320), 1, + anon_sym_DASH2, + STATE(2590), 1, + aux_sym_parameter_repeat1, + STATE(2593), 1, sym_comment, - STATE(3122), 1, - sym_cell_path, - ACTIONS(5233), 2, + STATE(3369), 1, + aux_sym_parameter_repeat2, + STATE(4199), 1, + aux_sym__repeat_newline, + STATE(3228), 2, + sym_param_type, + sym_param_value, + ACTIONS(5318), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [80937] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + STATE(2594), 1, + sym_comment, + STATE(4767), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5259), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5231), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208144,20 +207314,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, - [82021] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80967] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5380), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5382), 1, - aux_sym__immediate_decimal_token5, - STATE(2629), 1, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + STATE(2595), 1, sym_comment, - ACTIONS(1726), 3, + STATE(4767), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5259), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208169,24 +207339,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, - sym__unquoted_pattern, - [82053] = 8, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80997] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2630), 1, + ACTIONS(2557), 1, + anon_sym_LPAREN2, + ACTIONS(2559), 1, + sym__unquoted_pattern, + STATE(2596), 1, sym_comment, - STATE(3097), 1, - sym_cell_path, - ACTIONS(5251), 2, + ACTIONS(1706), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5249), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208198,31 +207364,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [82089] = 12, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81027] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2597), 1, + sym_comment, + ACTIONS(1868), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1866), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + 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_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [81055] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(1444), 1, anon_sym_COMMA, - ACTIONS(5138), 1, + ACTIONS(5149), 1, anon_sym_EQ, - ACTIONS(5140), 1, + ACTIONS(5151), 1, sym__newline, - ACTIONS(5142), 1, + ACTIONS(5153), 1, anon_sym_COLON, - ACTIONS(5386), 1, + ACTIONS(5324), 1, anon_sym_DASH2, - STATE(2592), 1, - aux_sym_parameter_repeat1, - STATE(2631), 1, + STATE(2598), 1, sym_comment, - STATE(3363), 1, + STATE(2650), 1, + aux_sym_parameter_repeat1, + STATE(3364), 1, aux_sym_parameter_repeat2, - STATE(4189), 1, + STATE(4199), 1, aux_sym__repeat_newline, - STATE(3256), 2, + STATE(3228), 2, sym_param_type, sym_param_value, - ACTIONS(5384), 7, + ACTIONS(5322), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -208230,73 +207423,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [82133] = 5, + [81099] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2632), 1, - sym_comment, - STATE(4777), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, - ts_builtin_sym_end, + ACTIONS(1444), 1, + anon_sym_COMMA, + ACTIONS(5149), 1, + anon_sym_EQ, + ACTIONS(5151), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [82163] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2633), 1, + ACTIONS(5153), 1, + anon_sym_COLON, + ACTIONS(5328), 1, + anon_sym_DASH2, + STATE(2599), 1, sym_comment, - STATE(3213), 1, - sym_cell_path, - ACTIONS(1850), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1853), 11, - sym__newline, - anon_sym_SEMI, + STATE(2650), 1, + aux_sym_parameter_repeat1, + STATE(3374), 1, + aux_sym_parameter_repeat2, + STATE(4199), 1, + aux_sym__repeat_newline, + STATE(3228), 2, + sym_param_type, + sym_param_value, + ACTIONS(5326), 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, - [82199] = 7, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [81143] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4303), 1, - sym__space, - ACTIONS(5340), 1, - anon_sym_EQ2, - ACTIONS(5388), 1, - sym_long_flag_identifier, - STATE(2634), 1, + ACTIONS(5285), 1, + aux_sym__immediate_decimal_token5, + STATE(2600), 1, sym_comment, - STATE(2933), 1, - sym__flag_equals_value, - ACTIONS(4301), 13, + ACTIONS(1760), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1762), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208310,23 +207479,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82233] = 8, + sym__unquoted_pattern, + [81173] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2635), 1, + ACTIONS(5330), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5332), 1, + aux_sym__immediate_decimal_token5, + STATE(2601), 1, sym_comment, - STATE(3123), 1, - sym_cell_path, - ACTIONS(5273), 2, + ACTIONS(1726), 3, ts_builtin_sym_end, sym__space, - ACTIONS(5271), 11, + anon_sym_LPAREN2, + ACTIONS(1728), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208338,23 +207505,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, - [82269] = 8, - ACTIONS(103), 1, + sym__unquoted_pattern, + [81205] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2636), 1, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + STATE(2602), 1, sym_comment, - STATE(3124), 1, - sym_cell_path, - ACTIONS(5267), 2, + ACTIONS(2568), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5265), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208366,45 +207528,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, - [82305] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1976), 1, - anon_sym_DASH2, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5390), 1, - anon_sym_DOT_DOT2, - STATE(2637), 1, - sym_comment, - ACTIONS(5392), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 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, - [82341] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81235] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5277), 1, - aux_sym__immediate_decimal_token5, - STATE(2638), 1, + STATE(2603), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1547), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1545), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208416,19 +207553,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, - sym__unquoted_pattern, - [82371] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [81263] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(1950), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1956), 1, sym__unquoted_pattern, - STATE(2639), 1, + STATE(2604), 1, sym_comment, - ACTIONS(994), 15, + ACTIONS(1946), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208444,17 +207580,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82401] = 4, + [81293] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2640), 1, + STATE(2605), 1, sym_comment, - ACTIONS(1537), 4, - ts_builtin_sym_end, + ACTIONS(1874), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 13, + ACTIONS(1876), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208466,18 +207601,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_DOT2, - [82429] = 5, + [81321] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1645), 1, sym__unquoted_pattern, - STATE(2641), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + STATE(2606), 1, sym_comment, - ACTIONS(1018), 15, + ACTIONS(2584), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208493,14 +207629,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82459] = 4, + [81351] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(2642), 1, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + STATE(2607), 1, sym_comment, - ACTIONS(2501), 16, + STATE(4767), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5259), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208516,15 +207654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [82487] = 4, + [81381] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2643), 1, + ACTIONS(2493), 1, + sym__unquoted_pattern, + STATE(2608), 1, sym_comment, - ACTIONS(5394), 15, + ACTIONS(2491), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208536,21 +207674,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_and2, anon_sym_xor2, anon_sym_or2, - [82514] = 4, + anon_sym_LPAREN2, + [81409] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2644), 1, + ACTIONS(5334), 1, + aux_sym__immediate_decimal_token5, + STATE(2609), 1, sym_comment, - ACTIONS(1886), 4, - ts_builtin_sym_end, + ACTIONS(1810), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1888), 12, + anon_sym_LPAREN2, + ACTIONS(1812), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208562,21 +207700,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, - [82541] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [81439] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5396), 1, - anon_sym_DOT_DOT2, - STATE(2645), 1, - sym_comment, - ACTIONS(1706), 2, - ts_builtin_sym_end, + ACTIONS(5338), 1, sym__space, - ACTIONS(5398), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 11, + ACTIONS(5340), 1, + anon_sym_EQ2, + ACTIONS(5342), 1, + sym_short_flag_identifier, + STATE(2610), 1, + sym_comment, + STATE(2932), 1, + sym__flag_equals_value, + ACTIONS(5336), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208588,20 +207728,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, - [82572] = 7, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [81473] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2646), 1, + ACTIONS(4328), 1, + sym__space, + ACTIONS(5340), 1, + anon_sym_EQ2, + ACTIONS(5344), 1, + sym_long_flag_identifier, + STATE(2611), 1, sym_comment, - STATE(2678), 1, - aux_sym__repeat_newline, - ACTIONS(5400), 12, + STATE(3059), 1, + sym__flag_equals_value, + ACTIONS(4326), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208613,19 +207756,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_or2, - [82605] = 6, + anon_sym_RBRACE, + [81507] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2647), 1, + ACTIONS(2622), 1, + anon_sym_LPAREN2, + ACTIONS(2624), 1, + sym__unquoted_pattern, + STATE(2612), 1, sym_comment, - ACTIONS(5406), 13, + ACTIONS(2604), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208637,20 +207779,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_or2, - [82636] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5414), 1, anon_sym_and2, - ACTIONS(5416), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2648), 1, + anon_sym_or2, + [81537] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5087), 1, + anon_sym_DOT2, + STATE(2487), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2613), 1, sym_comment, - ACTIONS(5412), 13, + STATE(2637), 1, + sym_path, + STATE(3129), 1, + sym_cell_path, + ACTIONS(5233), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5231), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208662,16 +207810,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_or2, - [82667] = 4, - ACTIONS(3), 1, + [81573] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2643), 1, - aux_sym__repeat_newline, - STATE(2649), 1, + ACTIONS(5087), 1, + anon_sym_DOT2, + STATE(2487), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2614), 1, sym_comment, - ACTIONS(5418), 15, + STATE(2637), 1, + sym_path, + STATE(3132), 1, + sym_cell_path, + ACTIONS(5237), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5235), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208683,18 +207838,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_and2, - anon_sym_xor2, - anon_sym_or2, - [82694] = 4, - ACTIONS(3), 1, + [81609] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2650), 1, + STATE(2615), 1, sym_comment, - STATE(2684), 1, - aux_sym__repeat_newline, - ACTIONS(5420), 15, + ACTIONS(1665), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1667), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208707,24 +207860,27 @@ 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_and2, - anon_sym_xor2, - anon_sym_or2, - [82721] = 6, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [81637] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5422), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5424), 1, - aux_sym__immediate_decimal_token5, - STATE(2651), 1, - sym_comment, - ACTIONS(1728), 3, - sym_identifier, - anon_sym_DASH2, + ACTIONS(1606), 1, sym__unquoted_pattern_in_record, - ACTIONS(1726), 11, + ACTIONS(1938), 1, + anon_sym_DASH2, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + ACTIONS(5346), 1, + anon_sym_DOT_DOT2, + STATE(2616), 1, + sym_comment, + ACTIONS(5348), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1936), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -208734,15 +207890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [82752] = 4, - ACTIONS(3), 1, + [81673] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2652), 1, + ACTIONS(1706), 1, + sym__space, + ACTIONS(5350), 1, + anon_sym_DOT_DOT2, + STATE(2617), 1, sym_comment, - ACTIONS(5426), 15, + ACTIONS(5352), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1613), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208755,17 +207915,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_and2, - anon_sym_xor2, - anon_sym_or2, - [82779] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [81705] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2653), 1, + ACTIONS(2118), 1, + sym__space, + ACTIONS(5354), 1, + anon_sym_DOT_DOT2, + STATE(2618), 1, sym_comment, - ACTIONS(5428), 15, + ACTIONS(5356), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2120), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208778,21 +207941,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_and2, - anon_sym_xor2, - anon_sym_or2, - [82806] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [81737] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5430), 1, - sym__newline, - STATE(2654), 1, + ACTIONS(2146), 1, + sym__space, + ACTIONS(5358), 1, + anon_sym_DOT_DOT2, + STATE(2619), 1, sym_comment, - STATE(2685), 1, - aux_sym__repeat_newline, - ACTIONS(5418), 13, + ACTIONS(5360), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2148), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208804,20 +207967,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_xor2, - anon_sym_or2, - [82837] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [81769] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5433), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - STATE(2655), 1, + ACTIONS(2166), 1, + sym__space, + ACTIONS(5362), 1, + anon_sym_DOT_DOT2, + STATE(2620), 1, sym_comment, - STATE(2686), 1, - aux_sym__repeat_newline, - ACTIONS(5420), 13, + ACTIONS(5364), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2168), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208829,18 +207993,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_xor2, - anon_sym_or2, - [82868] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [81801] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2656), 1, + ACTIONS(2090), 1, + sym__space, + ACTIONS(5366), 1, + anon_sym_DOT_DOT2, + STATE(2621), 1, sym_comment, - ACTIONS(5426), 14, + ACTIONS(5368), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2092), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208853,18 +208019,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_xor2, - anon_sym_or2, - [82897] = 5, + anon_sym_RBRACE, + [81833] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2657), 1, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(2622), 1, sym_comment, - ACTIONS(5428), 14, + ACTIONS(2640), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208876,23 +208042,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_and2, anon_sym_xor2, anon_sym_or2, - [82926] = 7, - ACTIONS(3), 1, + [81863] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(5370), 1, sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2658), 1, + ACTIONS(5372), 1, + sym__space, + ACTIONS(5376), 1, + anon_sym_COLON2, + ACTIONS(5378), 1, + anon_sym_EQ2, + STATE(2623), 1, sym_comment, - STATE(2687), 1, - aux_sym__repeat_newline, - ACTIONS(5418), 12, + STATE(2915), 1, + aux_sym_attribute_repeat1, + STATE(4058), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5374), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208903,22 +208073,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_or2, - [82959] = 7, + anon_sym_RBRACE, + [81901] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2659), 1, + ACTIONS(1744), 1, + sym__unquoted_pattern, + STATE(2624), 1, sym_comment, - STATE(2688), 1, - aux_sym__repeat_newline, - ACTIONS(5420), 12, + ACTIONS(960), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208930,19 +208094,27 @@ 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_or2, - [82992] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5408), 1, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(5410), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2660), 1, + anon_sym_or2, + [81929] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5087), 1, + anon_sym_DOT2, + STATE(2487), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2625), 1, sym_comment, - ACTIONS(5426), 13, + STATE(2637), 1, + sym_path, + STATE(3102), 1, + sym_cell_path, + ACTIONS(5269), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5267), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208954,20 +208126,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_or2, - [83023] = 6, - ACTIONS(3), 1, + [81965] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2661), 1, + ACTIONS(5087), 1, + anon_sym_DOT2, + STATE(2487), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2626), 1, sym_comment, - ACTIONS(5428), 13, + STATE(2637), 1, + sym_path, + STATE(3134), 1, + sym_cell_path, + ACTIONS(5245), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5243), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208979,16 +208154,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [82001] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2627), 1, + sym_comment, + ACTIONS(1876), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1874), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_or2, - [83054] = 4, + 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, + [82029] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(1444), 1, + anon_sym_COMMA, + ACTIONS(5149), 1, + anon_sym_EQ, + ACTIONS(5151), 1, + sym__newline, + ACTIONS(5153), 1, + anon_sym_COLON, + ACTIONS(5382), 1, + anon_sym_DASH2, + STATE(2598), 1, + aux_sym_parameter_repeat1, + STATE(2628), 1, + sym_comment, + STATE(3386), 1, + aux_sym_parameter_repeat2, + STATE(4199), 1, aux_sym__repeat_newline, - STATE(2662), 1, + STATE(3228), 2, + sym_param_type, + sym_param_value, + ACTIONS(5380), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [82073] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1948), 1, + anon_sym_DASH2, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern_in_record, + ACTIONS(5384), 1, + anon_sym_DOT_DOT2, + STATE(2629), 1, + sym_comment, + ACTIONS(5386), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1946), 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, + [82109] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5388), 1, + anon_sym_DOT, + ACTIONS(5390), 1, + aux_sym__immediate_decimal_token5, + STATE(2630), 1, sym_comment, - ACTIONS(5440), 15, + ACTIONS(1760), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1762), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209000,18 +208263,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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [83081] = 4, + sym__unquoted_pattern, + [82141] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2663), 1, + STATE(2631), 1, + sym_comment, + ACTIONS(1728), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1726), 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, + [82169] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2632), 1, sym_comment, - ACTIONS(5442), 15, + ACTIONS(1816), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1818), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209024,19 +208310,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_and2, - anon_sym_xor2, - anon_sym_or2, - [83108] = 5, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [82197] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2664), 1, + ACTIONS(1728), 1, + sym__unquoted_pattern, + STATE(2633), 1, sym_comment, - ACTIONS(5440), 14, + ACTIONS(1726), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209048,19 +208332,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83137] = 5, + anon_sym_LPAREN2, + [82225] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2665), 1, + STATE(2634), 1, + sym_comment, + ACTIONS(1812), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1810), 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, + [82253] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2635), 1, + sym_comment, + ACTIONS(1856), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1854), 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, + [82281] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5087), 1, + anon_sym_DOT2, + STATE(2487), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2636), 1, sym_comment, - ACTIONS(5442), 14, + STATE(2637), 1, + sym_path, + STATE(3189), 1, + sym_cell_path, + ACTIONS(1846), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1849), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209072,21 +208412,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_xor2, - anon_sym_or2, - [83166] = 6, - ACTIONS(3), 1, + [82317] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2666), 1, + STATE(2637), 1, sym_comment, - ACTIONS(5440), 13, + ACTIONS(1551), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1549), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209098,20 +208434,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_or2, - [83197] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [82345] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2667), 1, + ACTIONS(5087), 1, + anon_sym_DOT2, + STATE(2487), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2637), 1, + sym_path, + STATE(2638), 1, sym_comment, - ACTIONS(5442), 13, + STATE(3103), 1, + sym_cell_path, + ACTIONS(5277), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5275), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209123,16 +208464,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_or2, - [83228] = 4, + [82381] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2668), 1, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(2639), 1, sym_comment, - STATE(2689), 1, - aux_sym__repeat_newline, - ACTIONS(5444), 15, + ACTIONS(1010), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209144,18 +208486,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_and2, anon_sym_xor2, anon_sym_or2, - [83255] = 4, - ACTIONS(3), 1, + [82411] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2669), 1, + ACTIONS(5087), 1, + anon_sym_DOT2, + STATE(2487), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2637), 1, + sym_path, + STATE(2640), 1, sym_comment, - STATE(2690), 1, - aux_sym__repeat_newline, - ACTIONS(5446), 15, + STATE(3213), 1, + sym_cell_path, + ACTIONS(1878), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1880), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209167,18 +208517,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_and2, - anon_sym_xor2, - anon_sym_or2, - [83282] = 4, - ACTIONS(3), 1, + [82447] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2670), 1, + ACTIONS(5087), 1, + anon_sym_DOT2, + STATE(2487), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2637), 1, + sym_path, + STATE(2641), 1, sym_comment, - ACTIONS(5448), 15, + STATE(3078), 1, + sym_cell_path, + ACTIONS(1858), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1860), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209190,18 +208545,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_and2, - anon_sym_xor2, - anon_sym_or2, - [83309] = 4, - ACTIONS(3), 1, + [82483] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2671), 1, + ACTIONS(5087), 1, + anon_sym_DOT2, + STATE(2487), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2637), 1, + sym_path, + STATE(2642), 1, sym_comment, - ACTIONS(5450), 15, + STATE(3085), 1, + sym_cell_path, + ACTIONS(1886), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1888), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209213,22 +208573,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_and2, - anon_sym_xor2, - anon_sym_or2, - [83336] = 6, - ACTIONS(3), 1, + [82519] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5452), 1, - sym__newline, - STATE(2672), 1, + ACTIONS(5350), 1, + anon_sym_DOT_DOT2, + ACTIONS(5394), 1, + sym__space, + STATE(2643), 1, sym_comment, - STATE(2691), 1, - aux_sym__repeat_newline, - ACTIONS(5444), 13, + ACTIONS(5352), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5392), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209240,20 +208598,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_xor2, - anon_sym_or2, - [83367] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [82551] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5455), 1, - sym__newline, - STATE(2673), 1, + ACTIONS(2604), 1, + sym__space, + ACTIONS(2622), 1, + anon_sym_LPAREN2, + ACTIONS(2624), 1, + sym__unquoted_pattern, + STATE(2644), 1, sym_comment, - STATE(2692), 1, - aux_sym__repeat_newline, - ACTIONS(5446), 13, + ACTIONS(2606), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209265,18 +208623,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_xor2, - anon_sym_or2, - [83398] = 5, + anon_sym_RBRACE, + [82582] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5398), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2674), 1, + ACTIONS(5400), 1, + anon_sym_xor2, + ACTIONS(5402), 1, + anon_sym_or2, + STATE(2645), 1, sym_comment, - ACTIONS(5448), 14, + ACTIONS(5396), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209289,19 +208648,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_xor2, - anon_sym_or2, - [83427] = 5, + anon_sym_RBRACE, + [82613] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(5406), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2675), 1, + ACTIONS(5408), 1, + anon_sym_xor2, + STATE(2646), 1, sym_comment, - ACTIONS(5450), 14, - sym__newline, + STATE(2700), 1, + aux_sym__repeat_newline, + ACTIONS(5404), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209313,22 +208674,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_xor2, anon_sym_or2, - [83456] = 7, + [82646] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(5402), 1, + ACTIONS(5412), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5414), 1, anon_sym_xor2, - STATE(2676), 1, + STATE(2647), 1, sym_comment, - STATE(2693), 1, + STATE(2701), 1, aux_sym__repeat_newline, - ACTIONS(5444), 12, + ACTIONS(5410), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209341,20 +208701,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83489] = 7, + [82679] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5418), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5420), 1, anon_sym_xor2, - STATE(2677), 1, + ACTIONS(5422), 1, + anon_sym_or2, + STATE(2648), 1, sym_comment, - STATE(2694), 1, - aux_sym__repeat_newline, - ACTIONS(5446), 12, + ACTIONS(5416), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209366,19 +208725,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_or2, - [83522] = 6, + anon_sym_RBRACE, + [82710] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5426), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5428), 1, anon_sym_xor2, - STATE(540), 1, + ACTIONS(5430), 1, + anon_sym_or2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2678), 1, + STATE(2649), 1, sym_comment, - ACTIONS(5448), 13, + ACTIONS(5424), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209391,19 +208752,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_or2, - [83553] = 6, + [82743] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5434), 1, + anon_sym_EQ, + ACTIONS(5437), 1, + sym__newline, + ACTIONS(5440), 1, + anon_sym_COLON, + ACTIONS(5443), 1, + anon_sym_DASH2, + STATE(4199), 1, + aux_sym__repeat_newline, + STATE(2650), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(3228), 2, + sym_param_type, + sym_param_value, + ACTIONS(5432), 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, + [82780] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5447), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5449), 1, anon_sym_xor2, - STATE(540), 1, + ACTIONS(5451), 1, + anon_sym_or2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2679), 1, + STATE(2651), 1, sym_comment, - ACTIONS(5450), 13, + ACTIONS(5445), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209416,21 +208806,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_or2, - [83584] = 7, + [82813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2679), 1, - aux_sym__repeat_newline, - STATE(2680), 1, + STATE(2652), 1, sym_comment, - ACTIONS(5458), 12, + ACTIONS(4674), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209442,19 +208824,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_and2, + anon_sym_xor2, anon_sym_or2, - [83617] = 6, + [82838] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + ACTIONS(5455), 1, sym__space, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5460), 1, - anon_sym_DOT, - STATE(2681), 1, + STATE(2653), 1, sym_comment, - ACTIONS(1738), 13, + STATE(4657), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5453), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209468,20 +208853,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [83648] = 6, + [82869] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5462), 1, + ACTIONS(5457), 1, anon_sym_DOT_DOT2, - STATE(2682), 1, + STATE(2654), 1, sym_comment, - ACTIONS(2152), 2, + ACTIONS(1706), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5464), 2, + ACTIONS(5459), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 11, + ACTIONS(1613), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209493,39 +208878,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, - [83679] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5466), 1, - anon_sym_DOT, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token5, - STATE(2683), 1, - sym_comment, - ACTIONS(1738), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 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, - [83710] = 4, - ACTIONS(3), 1, + [82900] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2684), 1, + ACTIONS(5461), 1, + anon_sym_EQ2, + ACTIONS(5463), 1, + sym_short_flag_identifier, + STATE(2655), 1, sym_comment, - ACTIONS(5470), 15, + STATE(3148), 1, + sym__flag_equals_value, + ACTIONS(5338), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5336), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209537,20 +208904,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_and2, - anon_sym_xor2, - anon_sym_or2, - [83737] = 5, - ACTIONS(3), 1, + [82933] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2685), 1, + ACTIONS(5457), 1, + anon_sym_DOT_DOT2, + STATE(2656), 1, sym_comment, - ACTIONS(5394), 14, + ACTIONS(5394), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5459), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5392), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209562,19 +208929,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_xor2, - anon_sym_or2, - [83766] = 5, - ACTIONS(3), 1, + [82964] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2686), 1, + ACTIONS(5465), 1, + anon_sym_DOT_DOT2, + STATE(2657), 1, sym_comment, - ACTIONS(5470), 14, + ACTIONS(2118), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5467), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2120), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209586,21 +208954,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_xor2, - anon_sym_or2, - [83795] = 6, + [82995] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2687), 1, + STATE(2658), 1, sym_comment, - ACTIONS(5394), 13, + ACTIONS(5469), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209613,19 +208974,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_and2, + anon_sym_xor2, anon_sym_or2, - [83826] = 6, + [83022] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2688), 1, + STATE(2659), 1, sym_comment, - ACTIONS(5470), 13, + ACTIONS(5471), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209638,15 +208997,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_and2, + anon_sym_xor2, anon_sym_or2, - [83857] = 4, + [83049] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5426), 1, + anon_sym_and2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2689), 1, + STATE(2660), 1, sym_comment, - ACTIONS(5472), 15, + ACTIONS(5469), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209659,17 +209022,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_and2, anon_sym_xor2, anon_sym_or2, - [83884] = 4, + [83078] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5447), 1, + anon_sym_and2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2690), 1, + STATE(2661), 1, sym_comment, - ACTIONS(5474), 15, + ACTIONS(5471), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209682,19 +209046,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_and2, anon_sym_xor2, anon_sym_or2, - [83911] = 5, + [83107] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5426), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5428), 1, + anon_sym_xor2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2691), 1, + STATE(2662), 1, sym_comment, - ACTIONS(5472), 14, + ACTIONS(5469), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209707,18 +209072,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_xor2, anon_sym_or2, - [83940] = 5, + [83138] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5447), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5449), 1, + anon_sym_xor2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2692), 1, + STATE(2663), 1, sym_comment, - ACTIONS(5474), 14, + ACTIONS(5471), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209731,20 +209097,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_xor2, anon_sym_or2, - [83969] = 6, + [83169] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2693), 1, + STATE(2664), 1, sym_comment, - ACTIONS(5472), 13, + STATE(2722), 1, + aux_sym__repeat_newline, + ACTIONS(5473), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209757,19 +209118,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_or2, - [84000] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5414), 1, anon_sym_and2, - ACTIONS(5416), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2694), 1, + anon_sym_or2, + [83196] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5475), 1, + anon_sym_DOT_DOT2, + STATE(2665), 1, sym_comment, - ACTIONS(5474), 13, + ACTIONS(2146), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5477), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2148), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209781,20 +209146,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_or2, - [84031] = 6, + [83227] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2695), 1, + ACTIONS(5479), 1, + anon_sym_DOT_DOT2, + STATE(2666), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(2166), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5481), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2168), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209806,20 +209171,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, - [84062] = 5, + [83258] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5314), 1, - aux_sym__immediate_decimal_token5, - STATE(2696), 1, + ACTIONS(5483), 1, + anon_sym_DOT_DOT2, + STATE(2667), 1, sym_comment, - ACTIONS(1736), 3, + ACTIONS(2090), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 12, + ACTIONS(5485), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2092), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209831,15 +209196,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, - sym__unquoted_pattern, - [84091] = 4, + [83289] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2697), 1, + STATE(2668), 1, sym_comment, - STATE(2806), 1, + STATE(2723), 1, aux_sym__repeat_newline, - ACTIONS(5476), 15, + ACTIONS(5487), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209855,14 +209219,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84118] = 4, + [83316] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2698), 1, - sym_comment, - STATE(2807), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(5478), 15, + STATE(2669), 1, + sym_comment, + ACTIONS(5489), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209878,18 +209242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84145] = 6, - ACTIONS(103), 1, + [83343] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2699), 1, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2670), 1, sym_comment, - ACTIONS(1966), 13, + ACTIONS(5491), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209902,16 +209262,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, - [84176] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83370] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2700), 1, - sym_comment, - ACTIONS(5480), 15, + ACTIONS(5406), 1, + anon_sym_and2, + ACTIONS(5493), 1, sym__newline, + STATE(2671), 1, + sym_comment, + STATE(2724), 1, + aux_sym__repeat_newline, + ACTIONS(5473), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209923,20 +209288,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_and2, anon_sym_xor2, anon_sym_or2, - [84203] = 4, + [83401] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2701), 1, - sym_comment, - ACTIONS(1558), 4, - ts_builtin_sym_end, + ACTIONS(1018), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1556), 12, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(2672), 1, + sym_comment, + ACTIONS(994), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209948,16 +209313,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, - [84230] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [83432] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2702), 1, - sym_comment, - ACTIONS(5482), 15, + ACTIONS(5412), 1, + anon_sym_and2, + ACTIONS(5496), 1, sym__newline, + STATE(2673), 1, + sym_comment, + STATE(2726), 1, + aux_sym__repeat_newline, + ACTIONS(5487), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209969,21 +209338,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_and2, anon_sym_xor2, anon_sym_or2, - [84257] = 6, + [83463] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5426), 1, anon_sym_and2, - ACTIONS(5484), 1, - sym__newline, - STATE(2703), 1, - sym_comment, - STATE(2811), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(5476), 13, + STATE(2674), 1, + sym_comment, + ACTIONS(5489), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209997,20 +209364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [84288] = 6, - ACTIONS(103), 1, + [83492] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5487), 1, - anon_sym_DOT_DOT2, - STATE(2704), 1, + ACTIONS(5447), 1, + anon_sym_and2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2675), 1, sym_comment, - ACTIONS(2100), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5489), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 11, + ACTIONS(5491), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210022,21 +209385,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, - [84319] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [83521] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5491), 1, - anon_sym_DOT_DOT2, - STATE(2705), 1, - sym_comment, - ACTIONS(2076), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5493), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 11, + ACTIONS(2905), 1, sym__newline, + ACTIONS(5406), 1, + anon_sym_and2, + ACTIONS(5408), 1, + anon_sym_xor2, + STATE(2676), 1, + sym_comment, + STATE(2816), 1, + aux_sym__repeat_newline, + ACTIONS(5473), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210047,21 +209412,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, - [84350] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_or2, + [83554] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5495), 1, - anon_sym_DOT_DOT2, - STATE(2706), 1, - sym_comment, - ACTIONS(2120), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5497), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 11, + ACTIONS(2905), 1, sym__newline, + ACTIONS(5412), 1, + anon_sym_and2, + ACTIONS(5414), 1, + anon_sym_xor2, + STATE(2677), 1, + sym_comment, + STATE(2729), 1, + aux_sym__repeat_newline, + ACTIONS(5487), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210072,18 +209438,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, - [84381] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_or2, + [83587] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, - sym__space, - STATE(2707), 1, + ACTIONS(5426), 1, + anon_sym_and2, + ACTIONS(5428), 1, + anon_sym_xor2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2678), 1, sym_comment, - ACTIONS(2577), 13, + ACTIONS(5489), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210096,19 +209464,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, - [84412] = 6, - ACTIONS(103), 1, + anon_sym_or2, + [83618] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2708), 1, + ACTIONS(5447), 1, + anon_sym_and2, + ACTIONS(5449), 1, + anon_sym_xor2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2679), 1, sym_comment, - ACTIONS(1976), 13, + ACTIONS(5491), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210121,19 +209489,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, - [84443] = 5, - ACTIONS(103), 1, + anon_sym_or2, + [83649] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token5, - STATE(2709), 1, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2680), 1, sym_comment, - ACTIONS(1802), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 12, + ACTIONS(5499), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210145,19 +209509,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, - sym__unquoted_pattern, - [84472] = 6, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83676] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2523), 1, - sym__space, - ACTIONS(2629), 1, + ACTIONS(1734), 1, anon_sym_LPAREN2, - STATE(2710), 1, + ACTIONS(2154), 1, + sym__space, + STATE(2681), 1, sym_comment, - ACTIONS(2525), 13, + STATE(4971), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2156), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210171,18 +209538,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84503] = 6, + [83707] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5501), 1, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + ACTIONS(2158), 1, sym__space, - STATE(2711), 1, + STATE(2682), 1, sym_comment, - STATE(2840), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 13, + STATE(4971), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2160), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210196,18 +209563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84534] = 6, + [83738] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5503), 1, - sym__newline, - STATE(2712), 1, - sym_comment, - STATE(2814), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(5478), 13, + STATE(2683), 1, + sym_comment, + ACTIONS(5501), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210219,20 +209583,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_and2, anon_sym_xor2, anon_sym_or2, - [84565] = 6, + [83765] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__space, - ACTIONS(2631), 1, + ACTIONS(1734), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2713), 1, + ACTIONS(2162), 1, + sym__space, + STATE(2684), 1, sym_comment, - ACTIONS(2569), 13, + STATE(4971), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2164), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210246,16 +209611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84596] = 5, - ACTIONS(3), 1, + [83796] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2714), 1, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + ACTIONS(2138), 1, + sym__space, + STATE(2685), 1, sym_comment, - ACTIONS(5480), 14, + STATE(4971), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2140), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210268,18 +209635,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_xor2, - anon_sym_or2, - [84625] = 5, + anon_sym_RBRACE, + [83827] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5426), 1, anon_sym_and2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2715), 1, + STATE(2686), 1, sym_comment, - ACTIONS(5482), 14, + ACTIONS(5499), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210294,15 +209660,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [84654] = 4, - ACTIONS(103), 1, + [83856] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2716), 1, + ACTIONS(5447), 1, + anon_sym_and2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2687), 1, sym_comment, - ACTIONS(2501), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2503), 14, + ACTIONS(5501), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210315,20 +209682,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, - sym__unquoted_pattern, - [84681] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [83885] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__space, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2717), 1, + ACTIONS(5426), 1, + anon_sym_and2, + ACTIONS(5428), 1, + anon_sym_xor2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2688), 1, sym_comment, - ACTIONS(2637), 13, + ACTIONS(5499), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210341,21 +209708,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, - [84712] = 7, + anon_sym_or2, + [83916] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5447), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5449), 1, anon_sym_xor2, - STATE(2647), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2718), 1, + STATE(2689), 1, sym_comment, - ACTIONS(5476), 12, + ACTIONS(5501), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210368,20 +209734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [84745] = 7, + [83947] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2648), 1, - aux_sym__repeat_newline, - STATE(2719), 1, + STATE(2690), 1, sym_comment, - ACTIONS(5478), 12, + STATE(2730), 1, + aux_sym__repeat_newline, + ACTIONS(5503), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210393,19 +209754,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_and2, + anon_sym_xor2, anon_sym_or2, - [84778] = 6, + [83974] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2720), 1, + STATE(2691), 1, sym_comment, - ACTIONS(5480), 13, + STATE(2734), 1, + aux_sym__repeat_newline, + ACTIONS(5505), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210418,22 +209777,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_and2, + anon_sym_xor2, anon_sym_or2, - [84809] = 7, - ACTIONS(103), 1, + [84001] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - ACTIONS(5508), 1, - sym_short_flag_identifier, - STATE(2721), 1, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2692), 1, sym_comment, - STATE(3126), 1, - sym__flag_equals_value, - ACTIONS(5338), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5336), 11, + ACTIONS(5507), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210445,18 +209799,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, - [84842] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84028] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2722), 1, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2693), 1, sym_comment, - ACTIONS(996), 13, + ACTIONS(5509), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210469,20 +209823,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, - [84873] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84055] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1018), 1, - sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2723), 1, - sym_comment, - ACTIONS(1016), 13, + ACTIONS(5406), 1, + anon_sym_and2, + ACTIONS(5511), 1, sym__newline, + STATE(2694), 1, + sym_comment, + STATE(2735), 1, + aux_sym__repeat_newline, + ACTIONS(5503), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210494,20 +209849,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, - [84904] = 6, + anon_sym_xor2, + anon_sym_or2, + [84086] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5412), 1, anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2724), 1, - sym_comment, - ACTIONS(5482), 13, + ACTIONS(5514), 1, sym__newline, + STATE(2695), 1, + sym_comment, + STATE(2736), 1, + aux_sym__repeat_newline, + ACTIONS(5505), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210519,21 +209874,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_xor2, anon_sym_or2, - [84935] = 7, + [84117] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5426), 1, anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - ACTIONS(5512), 1, - anon_sym_or2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2725), 1, + STATE(2696), 1, sym_comment, - ACTIONS(5510), 12, + ACTIONS(5507), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210546,20 +209898,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [84968] = 7, + anon_sym_xor2, + anon_sym_or2, + [84146] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5447), 1, anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - ACTIONS(5516), 1, - anon_sym_or2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2726), 1, + STATE(2697), 1, sym_comment, - ACTIONS(5514), 12, + ACTIONS(5509), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210572,15 +209922,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85001] = 4, + anon_sym_xor2, + anon_sym_or2, + [84175] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2652), 1, - aux_sym__repeat_newline, - STATE(2727), 1, - sym_comment, - ACTIONS(5518), 15, + ACTIONS(2905), 1, sym__newline, + ACTIONS(5406), 1, + anon_sym_and2, + ACTIONS(5408), 1, + anon_sym_xor2, + STATE(2698), 1, + sym_comment, + STATE(2737), 1, + aux_sym__repeat_newline, + ACTIONS(5503), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210592,24 +209949,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_and2, - anon_sym_xor2, anon_sym_or2, - [85028] = 6, - ACTIONS(103), 1, + [84208] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5396), 1, - anon_sym_DOT_DOT2, - STATE(2728), 1, - sym_comment, - ACTIONS(5346), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5398), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5344), 11, + ACTIONS(2905), 1, sym__newline, + ACTIONS(5412), 1, + anon_sym_and2, + ACTIONS(5414), 1, + anon_sym_xor2, + STATE(2699), 1, + sym_comment, + STATE(2740), 1, + aux_sym__repeat_newline, + ACTIONS(5505), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210620,14 +209974,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, - [85059] = 4, + anon_sym_RPAREN, + anon_sym_or2, + [84241] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2653), 1, + ACTIONS(5426), 1, + anon_sym_and2, + ACTIONS(5428), 1, + anon_sym_xor2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2729), 1, + STATE(2700), 1, sym_comment, - ACTIONS(5520), 15, + ACTIONS(5507), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210640,17 +210000,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_and2, - anon_sym_xor2, anon_sym_or2, - [85086] = 4, + [84272] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2700), 1, + ACTIONS(5447), 1, + anon_sym_and2, + ACTIONS(5449), 1, + anon_sym_xor2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2730), 1, + STATE(2701), 1, sym_comment, - ACTIONS(5522), 15, + ACTIONS(5509), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210663,17 +210025,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_and2, - anon_sym_xor2, anon_sym_or2, - [85113] = 4, - ACTIONS(3), 1, + [84303] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(2702), 1, - aux_sym__repeat_newline, - STATE(2731), 1, sym_comment, - ACTIONS(5524), 15, + ACTIONS(1665), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1667), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210685,22 +210048,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_and2, - anon_sym_xor2, - anon_sym_or2, - [85140] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [84330] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5526), 1, - sym__newline, - STATE(2714), 1, - aux_sym__repeat_newline, - STATE(2732), 1, + STATE(2703), 1, sym_comment, - ACTIONS(5522), 13, + ACTIONS(1726), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1728), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210712,20 +210070,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_xor2, - anon_sym_or2, - [85171] = 6, + anon_sym_RBRACE, + sym__unquoted_pattern, + [84357] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2144), 1, + ACTIONS(1010), 1, sym__space, - STATE(2733), 1, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(2704), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2146), 13, + ACTIONS(1002), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210739,18 +210097,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85202] = 6, - ACTIONS(103), 1, + [84388] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2148), 1, - sym__space, - STATE(2734), 1, + STATE(2658), 1, + aux_sym__repeat_newline, + STATE(2705), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2150), 13, + ACTIONS(5517), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210763,21 +210117,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, - [85233] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5414), 1, anon_sym_and2, - ACTIONS(5416), 1, anon_sym_xor2, - ACTIONS(5516), 1, anon_sym_or2, - STATE(540), 1, + [84415] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2659), 1, aux_sym__repeat_newline, - STATE(2735), 1, + STATE(2706), 1, sym_comment, - ACTIONS(5529), 12, + ACTIONS(5519), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210790,18 +210140,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85266] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84442] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2170), 1, - sym__space, - STATE(2736), 1, + STATE(2707), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2172), 13, + ACTIONS(1810), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1812), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210815,19 +210165,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85297] = 6, - ACTIONS(103), 1, + sym__unquoted_pattern, + [84469] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2072), 1, - sym__space, - STATE(2737), 1, - sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2074), 13, + ACTIONS(2905), 1, sym__newline, + ACTIONS(5406), 1, + anon_sym_and2, + ACTIONS(5408), 1, + anon_sym_xor2, + ACTIONS(5523), 1, + anon_sym_or2, + STATE(2649), 1, + aux_sym__repeat_newline, + STATE(2708), 1, + sym_comment, + ACTIONS(5521), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210839,19 +210193,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, - [85328] = 6, + [84504] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5531), 1, - sym__newline, - STATE(2656), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2738), 1, + STATE(2709), 1, sym_comment, - ACTIONS(5518), 13, + ACTIONS(5525), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210863,20 +210213,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_and2, anon_sym_xor2, anon_sym_or2, - [85359] = 6, + [84531] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5534), 1, + ACTIONS(2905), 1, sym__newline, - STATE(2657), 1, + ACTIONS(5412), 1, + anon_sym_and2, + ACTIONS(5414), 1, + anon_sym_xor2, + ACTIONS(5529), 1, + anon_sym_or2, + STATE(2651), 1, aux_sym__repeat_newline, - STATE(2739), 1, + STATE(2710), 1, sym_comment, - ACTIONS(5520), 13, + ACTIONS(5527), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210888,20 +210243,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_xor2, - anon_sym_or2, - [85390] = 6, + [84566] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5537), 1, - sym__newline, - STATE(2715), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2740), 1, + STATE(2711), 1, sym_comment, - ACTIONS(5524), 13, + ACTIONS(5531), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210913,22 +210263,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_and2, anon_sym_xor2, anon_sym_or2, - [85421] = 7, - ACTIONS(3), 1, + [84593] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2720), 1, - aux_sym__repeat_newline, - STATE(2741), 1, + STATE(2712), 1, sym_comment, - ACTIONS(5522), 12, + ACTIONS(1816), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1818), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210939,22 +210288,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_or2, - [85454] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [84620] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2724), 1, - aux_sym__repeat_newline, - STATE(2742), 1, + STATE(2713), 1, sym_comment, - ACTIONS(5524), 12, + ACTIONS(1854), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1856), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210966,20 +210310,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_or2, - [85487] = 6, + anon_sym_RBRACE, + sym__unquoted_pattern, + [84647] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, + ACTIONS(5406), 1, anon_sym_and2, - ACTIONS(5544), 1, - anon_sym_xor2, - ACTIONS(5546), 1, - anon_sym_or2, - STATE(2743), 1, - sym_comment, - ACTIONS(5540), 13, + ACTIONS(5533), 1, sym__newline, + STATE(2660), 1, + aux_sym__repeat_newline, + STATE(2714), 1, + sym_comment, + ACTIONS(5517), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210991,19 +210335,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, - [85518] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - ACTIONS(5552), 1, anon_sym_xor2, - ACTIONS(5554), 1, anon_sym_or2, - STATE(2744), 1, + [84678] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5536), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5538), 1, + aux_sym__immediate_decimal_token5, + STATE(2715), 1, + sym_comment, + ACTIONS(1728), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1726), 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, + [84709] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2716), 1, sym_comment, - ACTIONS(5548), 13, + ACTIONS(5181), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211017,13 +210381,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85549] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84734] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2745), 1, - sym_comment, - ACTIONS(4680), 16, + ACTIONS(5412), 1, + anon_sym_and2, + ACTIONS(5540), 1, sym__newline, + STATE(2661), 1, + aux_sym__repeat_newline, + STATE(2717), 1, + sym_comment, + ACTIONS(5519), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211035,24 +210407,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_and2, anon_sym_xor2, anon_sym_or2, - [85574] = 7, + [84765] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5426), 1, anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2660), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2746), 1, + STATE(2718), 1, sym_comment, - ACTIONS(5518), 12, + ACTIONS(5525), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211064,15 +210431,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_xor2, anon_sym_or2, - [85607] = 4, + [84794] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2747), 1, + STATE(2719), 1, sym_comment, - STATE(2757), 1, - aux_sym__repeat_newline, - ACTIONS(5556), 15, + ACTIONS(5259), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211085,17 +210451,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_and2, anon_sym_xor2, anon_sym_or2, - [85634] = 4, + [84819] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2748), 1, + STATE(2720), 1, sym_comment, - STATE(2758), 1, - aux_sym__repeat_newline, - ACTIONS(5558), 15, + ACTIONS(5181), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211108,21 +210473,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_and2, anon_sym_xor2, anon_sym_or2, - [85661] = 6, + [84844] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5447), 1, anon_sym_and2, - ACTIONS(5560), 1, - sym__newline, - STATE(2749), 1, - sym_comment, - STATE(2766), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(5556), 13, + STATE(2721), 1, + sym_comment, + ACTIONS(5531), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211136,18 +210501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85692] = 6, + [84873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5563), 1, - sym__newline, - STATE(2750), 1, - sym_comment, - STATE(2767), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(5558), 13, + STATE(2722), 1, + sym_comment, + ACTIONS(5543), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211159,22 +210521,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_and2, anon_sym_xor2, anon_sym_or2, - [85723] = 7, + [84900] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2751), 1, - sym_comment, - STATE(2773), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(5556), 12, + STATE(2723), 1, + sym_comment, + ACTIONS(5545), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211186,21 +210544,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_and2, + anon_sym_xor2, anon_sym_or2, - [85756] = 7, + [84927] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5426), 1, anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2752), 1, - sym_comment, - STATE(2774), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(5558), 12, + STATE(2724), 1, + sym_comment, + ACTIONS(5543), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211212,21 +210569,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_xor2, anon_sym_or2, - [85789] = 7, + [84956] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2661), 1, - aux_sym__repeat_newline, - STATE(2753), 1, + STATE(2725), 1, sym_comment, - ACTIONS(5520), 12, + ACTIONS(5259), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211238,15 +210589,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_and2, + anon_sym_xor2, anon_sym_or2, - [85822] = 4, + [84981] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2662), 1, + ACTIONS(5447), 1, + anon_sym_and2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2754), 1, + STATE(2726), 1, sym_comment, - ACTIONS(5566), 15, + ACTIONS(5545), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211259,17 +210615,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_and2, anon_sym_xor2, anon_sym_or2, - [85849] = 4, + [85010] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2663), 1, - aux_sym__repeat_newline, - STATE(2755), 1, + STATE(2727), 1, sym_comment, - ACTIONS(5568), 15, + ACTIONS(5181), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211282,20 +210635,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_and2, anon_sym_xor2, anon_sym_or2, - [85876] = 4, + [85035] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2756), 1, + STATE(2728), 1, sym_comment, - ACTIONS(1641), 4, + ACTIONS(1866), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 12, + ACTIONS(1868), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211308,14 +210662,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [85903] = 4, + [85062] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5447), 1, + anon_sym_and2, + ACTIONS(5449), 1, + anon_sym_xor2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2757), 1, + STATE(2729), 1, sym_comment, - ACTIONS(5570), 15, + ACTIONS(5545), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211328,17 +210686,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_and2, - anon_sym_xor2, anon_sym_or2, - [85930] = 4, + [85093] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2758), 1, + STATE(2730), 1, sym_comment, - ACTIONS(5572), 15, + ACTIONS(5547), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211354,18 +210710,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85957] = 6, + [85120] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5574), 1, + ACTIONS(2905), 1, sym__newline, - STATE(2664), 1, + ACTIONS(5406), 1, + anon_sym_and2, + ACTIONS(5408), 1, + anon_sym_xor2, + STATE(2662), 1, aux_sym__repeat_newline, - STATE(2759), 1, + STATE(2731), 1, + sym_comment, + ACTIONS(5517), 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_or2, + [85153] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2732), 1, sym_comment, - ACTIONS(5566), 13, + ACTIONS(5259), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211377,23 +210754,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_and2, anon_sym_xor2, anon_sym_or2, - [85988] = 7, - ACTIONS(103), 1, + [85178] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - ACTIONS(5577), 1, - sym_long_flag_identifier, - STATE(2760), 1, + STATE(2733), 1, sym_comment, - STATE(3204), 1, - sym__flag_equals_value, - ACTIONS(4303), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4301), 11, + ACTIONS(5549), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211405,17 +210775,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, - [86021] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85203] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2761), 1, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2734), 1, sym_comment, - ACTIONS(1822), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1824), 12, + ACTIONS(5551), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211427,19 +210799,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, - [86048] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85230] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(5581), 1, - sym__space, - STATE(2762), 1, + ACTIONS(5426), 1, + anon_sym_and2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2735), 1, sym_comment, - STATE(4626), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5579), 13, + ACTIONS(5547), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211452,23 +210825,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, - [86079] = 8, + anon_sym_xor2, + anon_sym_or2, + [85259] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5447), 1, anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - ACTIONS(5585), 1, - anon_sym_or2, - STATE(2763), 1, - sym_comment, - STATE(2778), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(5583), 11, + STATE(2736), 1, + sym_comment, + ACTIONS(5551), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211480,15 +210849,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86114] = 4, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [85288] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2764), 1, + ACTIONS(5426), 1, + anon_sym_and2, + ACTIONS(5428), 1, + anon_sym_xor2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2737), 1, sym_comment, - ACTIONS(1726), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 14, + ACTIONS(5547), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211501,20 +210875,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, - sym__unquoted_pattern, - [86141] = 6, + anon_sym_or2, + [85319] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5587), 1, - sym__newline, - STATE(2665), 1, - aux_sym__repeat_newline, - STATE(2765), 1, + STATE(2738), 1, sym_comment, - ACTIONS(5568), 13, + ACTIONS(5553), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211526,18 +210894,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_and2, anon_sym_xor2, anon_sym_or2, - [86172] = 5, + [85344] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5398), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2766), 1, + STATE(2739), 1, sym_comment, - ACTIONS(5570), 14, + ACTIONS(5549), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211550,18 +210918,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_xor2, anon_sym_or2, - [86201] = 5, + [85371] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5447), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5449), 1, + anon_sym_xor2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2767), 1, + STATE(2740), 1, sym_comment, - ACTIONS(5572), 14, + ACTIONS(5551), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211574,17 +210945,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_xor2, anon_sym_or2, - [86230] = 4, - ACTIONS(103), 1, + [85402] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2768), 1, + ACTIONS(5418), 1, + anon_sym_and2, + STATE(2741), 1, sym_comment, - ACTIONS(1802), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 14, + ACTIONS(5553), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211598,16 +210967,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [86257] = 4, + anon_sym_xor2, + anon_sym_or2, + [85429] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2769), 1, + STATE(2742), 1, sym_comment, - ACTIONS(1870), 2, + ACTIONS(1874), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1876), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211619,25 +210991,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, - sym__unquoted_pattern, - [86284] = 8, + anon_sym_DOT_DOT2, + [85456] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5398), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5400), 1, anon_sym_xor2, - ACTIONS(5592), 1, - anon_sym_or2, - STATE(2735), 1, - aux_sym__repeat_newline, - STATE(2770), 1, + STATE(2743), 1, sym_comment, - ACTIONS(5590), 11, + ACTIONS(5549), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211649,20 +211014,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86319] = 7, + anon_sym_RBRACE, + anon_sym_or2, + [85485] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5418), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5420), 1, anon_sym_xor2, - STATE(2666), 1, - aux_sym__repeat_newline, - STATE(2771), 1, + STATE(2744), 1, sym_comment, - ACTIONS(5566), 12, + ACTIONS(5553), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211674,21 +211038,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, anon_sym_or2, - [86352] = 7, + [85514] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2667), 1, - aux_sym__repeat_newline, - STATE(2772), 1, + STATE(2745), 1, sym_comment, - ACTIONS(5568), 12, + ACTIONS(5555), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211700,19 +211058,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_and2, + anon_sym_xor2, anon_sym_or2, - [86385] = 6, + [85539] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2773), 1, + STATE(2746), 1, sym_comment, - ACTIONS(5570), 13, + ACTIONS(5557), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211725,20 +211080,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, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [86416] = 6, + [85564] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(5412), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5414), 1, anon_sym_xor2, - STATE(540), 1, + STATE(2663), 1, aux_sym__repeat_newline, - STATE(2774), 1, + STATE(2747), 1, sym_comment, - ACTIONS(5572), 13, - sym__newline, + ACTIONS(5519), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211751,14 +211110,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [86447] = 4, + [85597] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2670), 1, - aux_sym__repeat_newline, - STATE(2775), 1, + ACTIONS(5398), 1, + anon_sym_and2, + STATE(2748), 1, sym_comment, - ACTIONS(5400), 15, + ACTIONS(5555), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211771,25 +211130,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_and2, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [86474] = 8, + [85624] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5418), 1, anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - ACTIONS(5585), 1, - anon_sym_or2, - STATE(2725), 1, - aux_sym__repeat_newline, - STATE(2776), 1, + STATE(2749), 1, sym_comment, - ACTIONS(5594), 11, + ACTIONS(5557), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211801,22 +211153,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86509] = 8, + anon_sym_RBRACE, + anon_sym_xor2, + anon_sym_or2, + [85651] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5398), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5400), 1, anon_sym_xor2, - ACTIONS(5592), 1, - anon_sym_or2, - STATE(2726), 1, - aux_sym__repeat_newline, - STATE(2777), 1, + STATE(2750), 1, sym_comment, - ACTIONS(5596), 11, + ACTIONS(5555), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211828,20 +211178,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86544] = 7, + anon_sym_RBRACE, + anon_sym_or2, + [85680] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5418), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5420), 1, anon_sym_xor2, - ACTIONS(5512), 1, - anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2778), 1, + STATE(2751), 1, sym_comment, - ACTIONS(5598), 12, + ACTIONS(5557), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211854,12 +211202,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86577] = 3, + anon_sym_RBRACE, + anon_sym_or2, + [85709] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2779), 1, + ACTIONS(5426), 1, + anon_sym_and2, + ACTIONS(5428), 1, + anon_sym_xor2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2752), 1, sym_comment, - ACTIONS(5150), 16, + ACTIONS(5525), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211872,16 +211228,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_and2, - anon_sym_xor2, anon_sym_or2, - [86602] = 3, + [85740] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2780), 1, + ACTIONS(5447), 1, + anon_sym_and2, + ACTIONS(5449), 1, + anon_sym_xor2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2753), 1, sym_comment, - ACTIONS(5269), 16, + ACTIONS(5531), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211894,18 +211253,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, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [86627] = 4, + [85771] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2671), 1, + STATE(2669), 1, aux_sym__repeat_newline, - STATE(2781), 1, + STATE(2754), 1, sym_comment, - ACTIONS(5458), 15, + ACTIONS(5559), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211921,12 +211277,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86654] = 3, - ACTIONS(3), 1, + [85798] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2782), 1, + ACTIONS(1760), 1, + sym__space, + ACTIONS(5044), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5561), 1, + anon_sym_DOT, + STATE(2755), 1, sym_comment, - ACTIONS(5150), 16, + ACTIONS(1762), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211940,15 +211302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86679] = 3, + [85829] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2783), 1, + STATE(2670), 1, + aux_sym__repeat_newline, + STATE(2756), 1, sym_comment, - ACTIONS(5269), 16, + ACTIONS(5563), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211961,51 +211322,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86704] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2784), 1, - sym_comment, - ACTIONS(1874), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1876), 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, - [86731] = 8, + [85856] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - ACTIONS(5602), 1, - anon_sym_DASH2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2785), 1, + ACTIONS(5565), 1, + anon_sym_DOT, + ACTIONS(5567), 1, + aux_sym__immediate_decimal_token5, + STATE(2757), 1, sym_comment, - STATE(2826), 1, - sym_cell_path, - ACTIONS(5600), 11, - anon_sym_EQ, + ACTIONS(1762), 3, sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1760), 11, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -212015,13 +211349,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [86766] = 3, + anon_sym_LPAREN2, + [85887] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2786), 1, - sym_comment, - ACTIONS(5150), 16, + ACTIONS(5406), 1, + anon_sym_and2, + ACTIONS(5569), 1, sym__newline, + STATE(2674), 1, + aux_sym__repeat_newline, + STATE(2758), 1, + sym_comment, + ACTIONS(5559), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212033,50 +211373,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, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86791] = 9, + [85918] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5606), 1, - anon_sym_EQ, - ACTIONS(5609), 1, + ACTIONS(5412), 1, + anon_sym_and2, + ACTIONS(5572), 1, sym__newline, - ACTIONS(5612), 1, - anon_sym_COLON, - ACTIONS(5615), 1, - anon_sym_DASH2, - STATE(4189), 1, + STATE(2675), 1, aux_sym__repeat_newline, - STATE(2787), 2, + STATE(2759), 1, sym_comment, - aux_sym_parameter_repeat1, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5604), 8, - sym_identifier, + ACTIONS(5563), 13, + 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, - [86828] = 6, + anon_sym_xor2, + anon_sym_or2, + [85949] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5617), 1, + ACTIONS(2905), 1, sym__newline, - STATE(2674), 1, + ACTIONS(5406), 1, + anon_sym_and2, + ACTIONS(5408), 1, + anon_sym_xor2, + STATE(2678), 1, aux_sym__repeat_newline, - STATE(2788), 1, + STATE(2760), 1, sym_comment, - ACTIONS(5400), 13, + ACTIONS(5559), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212088,20 +211425,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_xor2, anon_sym_or2, - [86859] = 6, + [85982] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5340), 1, + ACTIONS(5461), 1, anon_sym_EQ2, - ACTIONS(5622), 1, - sym__space, - STATE(2789), 1, + ACTIONS(5575), 1, + sym_long_flag_identifier, + STATE(2761), 1, sym_comment, - STATE(2955), 1, + STATE(3131), 1, sym__flag_equals_value, - ACTIONS(5620), 13, + ACTIONS(4328), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4326), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212113,20 +211452,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, - [86890] = 6, + [86015] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, + ACTIONS(1706), 1, sym__space, - ACTIONS(5340), 1, - anon_sym_EQ2, - STATE(2790), 1, + ACTIONS(2557), 1, + anon_sym_LPAREN2, + ACTIONS(2559), 1, + sym__unquoted_pattern, + STATE(2762), 1, sym_comment, - STATE(3070), 1, - sym__flag_equals_value, - ACTIONS(4365), 13, + ACTIONS(1613), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212140,174 +211477,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [86921] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1853), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2791), 1, - sym_comment, - STATE(2826), 1, - sym_cell_path, - 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, - [86956] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1864), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2792), 1, - sym_comment, - STATE(2934), 1, - sym_cell_path, - ACTIONS(1862), 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, - [86991] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1868), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2793), 1, - sym_comment, - STATE(2843), 1, - sym_cell_path, - ACTIONS(1866), 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, - [87026] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2794), 1, - sym_comment, - STATE(3032), 1, - sym_cell_path, - ACTIONS(1878), 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, - [87061] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1884), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2795), 1, - sym_comment, - STATE(2899), 1, - sym_cell_path, - ACTIONS(1882), 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, - [87096] = 8, - ACTIONS(3), 1, + [86046] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2796), 1, + ACTIONS(5390), 1, + aux_sym__immediate_decimal_token5, + STATE(2763), 1, sym_comment, - STATE(2914), 1, - sym_cell_path, - ACTIONS(1858), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1760), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1762), 12, 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, - [87131] = 3, - ACTIONS(3), 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, + sym__unquoted_pattern, + [86075] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2797), 1, + ACTIONS(5378), 1, + anon_sym_EQ2, + ACTIONS(5577), 1, + sym__space, + STATE(2764), 1, sym_comment, - ACTIONS(5269), 16, + STATE(2915), 1, + aux_sym_attribute_repeat1, + ACTIONS(5374), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212321,16 +211526,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + [86106] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(5406), 1, anon_sym_and2, + ACTIONS(5408), 1, anon_sym_xor2, + ACTIONS(5523), 1, anon_sym_or2, - [87156] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2798), 1, + STATE(2765), 1, sym_comment, - ACTIONS(5624), 16, - sym__newline, + STATE(2770), 1, + aux_sym__repeat_newline, + ACTIONS(5579), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212342,16 +211553,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_and2, - anon_sym_xor2, - anon_sym_or2, - [87181] = 3, - ACTIONS(3), 1, + [86141] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2799), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1936), 1, + sym__space, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + STATE(2766), 1, sym_comment, - ACTIONS(5626), 16, + ACTIONS(1938), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212365,18 +211578,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87206] = 4, + [86172] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(5412), 1, anon_sym_and2, - STATE(2800), 1, + ACTIONS(5414), 1, + anon_sym_xor2, + ACTIONS(5529), 1, + anon_sym_or2, + STATE(2767), 1, sym_comment, - ACTIONS(5624), 15, - sym__newline, + STATE(2771), 1, + aux_sym__repeat_newline, + ACTIONS(5581), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212388,18 +211605,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_xor2, - anon_sym_or2, - [87233] = 4, + [86207] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(5412), 1, anon_sym_and2, - STATE(2801), 1, + ACTIONS(5414), 1, + anon_sym_xor2, + STATE(2679), 1, + aux_sym__repeat_newline, + STATE(2768), 1, sym_comment, - ACTIONS(5626), 15, - sym__newline, + ACTIONS(5563), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212411,19 +211630,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_xor2, anon_sym_or2, - [87260] = 5, - ACTIONS(3), 1, + [86240] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - ACTIONS(5544), 1, - anon_sym_xor2, - STATE(2802), 1, + STATE(2769), 1, sym_comment, - ACTIONS(5624), 14, + ACTIONS(1570), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1568), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212435,19 +211653,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_or2, - [87289] = 5, + anon_sym_DOT_DOT2, + [86267] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(5426), 1, anon_sym_and2, - ACTIONS(5552), 1, + ACTIONS(5428), 1, anon_sym_xor2, - STATE(2803), 1, + ACTIONS(5430), 1, + anon_sym_or2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2770), 1, sym_comment, - ACTIONS(5626), 14, + ACTIONS(5583), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212460,20 +211680,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_or2, - [87318] = 6, + [86300] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, + ACTIONS(5447), 1, anon_sym_and2, - ACTIONS(5628), 1, - sym__newline, - STATE(2675), 1, + ACTIONS(5449), 1, + anon_sym_xor2, + ACTIONS(5451), 1, + anon_sym_or2, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2804), 1, + STATE(2771), 1, sym_comment, - ACTIONS(5458), 13, + ACTIONS(5585), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212485,14 +211706,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_xor2, - anon_sym_or2, - [87349] = 3, + [86333] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2805), 1, + STATE(2709), 1, + aux_sym__repeat_newline, + STATE(2772), 1, sym_comment, - ACTIONS(5631), 16, + ACTIONS(5587), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212505,18 +211726,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_and2, anon_sym_xor2, anon_sym_or2, - [87374] = 4, + [86360] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(2711), 1, aux_sym__repeat_newline, - STATE(2806), 1, + STATE(2773), 1, sym_comment, - ACTIONS(5406), 15, + ACTIONS(5589), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212532,14 +211752,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87401] = 4, + [86387] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(2680), 1, aux_sym__repeat_newline, - STATE(2807), 1, + STATE(2774), 1, sym_comment, - ACTIONS(5412), 15, + ACTIONS(5591), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212555,13 +211775,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87428] = 3, + [86414] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2808), 1, - sym_comment, - ACTIONS(5633), 16, + ACTIONS(5406), 1, + anon_sym_and2, + ACTIONS(5593), 1, sym__newline, + STATE(2718), 1, + aux_sym__repeat_newline, + STATE(2775), 1, + sym_comment, + ACTIONS(5587), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212573,19 +211798,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, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87453] = 4, + [86445] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - STATE(2809), 1, + ACTIONS(5167), 1, + anon_sym_DOT2, + ACTIONS(5598), 1, + anon_sym_DASH2, + STATE(2492), 1, + sym_path, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2776), 1, sym_comment, - ACTIONS(5631), 15, + STATE(2854), 1, + sym_cell_path, + ACTIONS(5596), 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, + [86480] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5412), 1, + anon_sym_and2, + ACTIONS(5600), 1, sym__newline, + STATE(2721), 1, + aux_sym__repeat_newline, + STATE(2777), 1, + sym_comment, + ACTIONS(5589), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212597,17 +211850,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_xor2, anon_sym_or2, - [87480] = 4, + [86511] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - STATE(2810), 1, + STATE(2683), 1, + aux_sym__repeat_newline, + STATE(2778), 1, sym_comment, - ACTIONS(5633), 15, + ACTIONS(5603), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212620,19 +211872,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_and2, anon_sym_xor2, anon_sym_or2, - [87507] = 5, + [86538] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(2811), 1, + STATE(2779), 1, sym_comment, - ACTIONS(5406), 14, + ACTIONS(5605), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212645,18 +211895,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_and2, anon_sym_xor2, anon_sym_or2, - [87536] = 5, + [86565] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - ACTIONS(5544), 1, - anon_sym_xor2, - STATE(2812), 1, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2780), 1, sym_comment, - ACTIONS(5631), 14, + ACTIONS(5607), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212669,19 +211918,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, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [87565] = 5, + [86592] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(5406), 1, anon_sym_and2, - ACTIONS(5552), 1, + ACTIONS(5408), 1, anon_sym_xor2, - STATE(2813), 1, + STATE(2752), 1, + aux_sym__repeat_newline, + STATE(2781), 1, sym_comment, - ACTIONS(5633), 14, - sym__newline, + ACTIONS(5587), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212693,19 +211946,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_or2, - [87594] = 5, + [86625] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(5412), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5414), 1, + anon_sym_xor2, + STATE(2753), 1, aux_sym__repeat_newline, - STATE(2814), 1, + STATE(2782), 1, sym_comment, - ACTIONS(5412), 14, - sym__newline, + ACTIONS(5589), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212717,16 +211972,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_xor2, anon_sym_or2, - [87623] = 4, + [86658] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1820), 1, + ACTIONS(1838), 1, sym__unquoted_pattern, - STATE(2815), 1, + STATE(2783), 1, sym_comment, - ACTIONS(968), 15, + ACTIONS(960), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -212742,20 +211996,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87650] = 6, - ACTIONS(103), 1, + [86685] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2816), 1, - sym_comment, - ACTIONS(1964), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1966), 11, + ACTIONS(5406), 1, + anon_sym_and2, + ACTIONS(5609), 1, sym__newline, + STATE(2686), 1, + aux_sym__repeat_newline, + STATE(2784), 1, + sym_comment, + ACTIONS(5591), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212766,17 +212018,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, - [87680] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86716] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2817), 1, - sym_comment, - ACTIONS(1802), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 12, + ACTIONS(5412), 1, + anon_sym_and2, + ACTIONS(5612), 1, sym__newline, + STATE(2687), 1, + aux_sym__repeat_newline, + STATE(2785), 1, + sym_comment, + ACTIONS(5603), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212787,23 +212043,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, - sym__unquoted_pattern, - [87706] = 7, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86747] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5635), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2818), 1, - sym_comment, - STATE(3365), 1, + STATE(2779), 1, aux_sym__repeat_newline, - ACTIONS(5638), 3, + STATE(2786), 1, + sym_comment, + ACTIONS(5615), 15, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -212813,16 +212065,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, - [87738] = 4, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86774] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2819), 1, - sym_comment, - ACTIONS(1870), 3, - ts_builtin_sym_end, + ACTIONS(5340), 1, + anon_sym_EQ2, + ACTIONS(5619), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 12, + STATE(2787), 1, + sym_comment, + STATE(2940), 1, + sym__flag_equals_value, + ACTIONS(5617), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212834,16 +212092,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, - sym__unquoted_pattern, - [87764] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [86805] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2820), 1, + STATE(2780), 1, + aux_sym__repeat_newline, + STATE(2788), 1, sym_comment, - ACTIONS(2084), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2086), 13, + ACTIONS(5621), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212856,40 +212114,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, - [87790] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86832] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DASH2, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - STATE(2821), 1, + ACTIONS(5426), 1, + anon_sym_and2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2789), 1, sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5640), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5605), 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, - [87820] = 4, + anon_sym_xor2, + anon_sym_or2, + [86861] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2822), 1, - sym_comment, - ACTIONS(5257), 2, + ACTIONS(4464), 1, sym__space, + ACTIONS(5340), 1, anon_sym_EQ2, - ACTIONS(5259), 13, + STATE(2790), 1, + sym_comment, + STATE(2998), 1, + sym__flag_equals_value, + ACTIONS(4462), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212903,19 +212166,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [87846] = 6, + [86892] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, + ACTIONS(5447), 1, anon_sym_and2, - ACTIONS(5650), 1, - anon_sym_xor2, - ACTIONS(5652), 1, - anon_sym_or2, - STATE(2823), 1, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2791), 1, sym_comment, - ACTIONS(5540), 12, - ts_builtin_sym_end, + ACTIONS(5607), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212927,20 +212187,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, - [87876] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86921] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2824), 1, - sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2144), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2146), 11, + ACTIONS(2905), 1, sym__newline, + ACTIONS(5406), 1, + anon_sym_and2, + ACTIONS(5408), 1, + anon_sym_xor2, + STATE(2688), 1, + aux_sym__repeat_newline, + STATE(2792), 1, + sym_comment, + ACTIONS(5591), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212951,19 +212214,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, - [87906] = 5, + anon_sym_RPAREN, + anon_sym_or2, + [86954] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5654), 1, - aux_sym__immediate_decimal_token5, - STATE(2825), 1, - sym_comment, - ACTIONS(1804), 3, - sym_identifier, + ACTIONS(1849), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 11, + ACTIONS(5167), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2793), 1, + sym_comment, + STATE(2854), 1, + sym_cell_path, + ACTIONS(1846), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -212973,139 +212243,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [87934] = 4, + [86989] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, + ACTIONS(1880), 1, anon_sym_DASH2, - STATE(2826), 1, + ACTIONS(5167), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2794), 1, sym_comment, - ACTIONS(1866), 14, + STATE(2955), 1, + sym_cell_path, + ACTIONS(1878), 11, anon_sym_EQ, sym_identifier, sym__newline, 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_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87960] = 6, + [87024] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - ACTIONS(5660), 1, - anon_sym_or2, - STATE(2827), 1, + ACTIONS(1860), 1, + anon_sym_DASH2, + ACTIONS(5167), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2795), 1, sym_comment, - ACTIONS(5548), 12, - ts_builtin_sym_end, + STATE(2859), 1, + sym_cell_path, + ACTIONS(1858), 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, - [87990] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5662), 1, - sym_identifier, - ACTIONS(5667), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5673), 1, anon_sym_DASH_DASH, - ACTIONS(5676), 1, + [87059] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1888), 1, anon_sym_DASH2, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - STATE(2828), 2, + ACTIONS(5167), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2796), 1, sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(5665), 3, + STATE(2968), 1, + sym_cell_path, + ACTIONS(1886), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - [88036] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [87094] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5287), 1, - anon_sym_EQ2, - STATE(2829), 1, + ACTIONS(1842), 1, + anon_sym_DASH2, + ACTIONS(5167), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2797), 1, sym_comment, - ACTIONS(5289), 14, + STATE(2874), 1, + sym_cell_path, + ACTIONS(1840), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - sym__space, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_COLON2, - [88062] = 6, - ACTIONS(103), 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, + [87129] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - STATE(2830), 1, + ACTIONS(1872), 1, + anon_sym_DASH2, + ACTIONS(5167), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2798), 1, sym_comment, - STATE(3135), 1, - sym__flag_equals_value, - ACTIONS(4367), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4365), 11, + STATE(2905), 1, + sym_cell_path, + ACTIONS(1870), 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, - [88092] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [87164] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2831), 1, - sym_comment, - ACTIONS(4680), 15, - ts_builtin_sym_end, + ACTIONS(2905), 1, sym__newline, + ACTIONS(5412), 1, + anon_sym_and2, + ACTIONS(5414), 1, + anon_sym_xor2, + STATE(2689), 1, + aux_sym__repeat_newline, + STATE(2799), 1, + sym_comment, + ACTIONS(5603), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213116,22 +212402,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_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - [88116] = 6, - ACTIONS(103), 1, + [87197] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2832), 1, + ACTIONS(5426), 1, + anon_sym_and2, + ACTIONS(5428), 1, + anon_sym_xor2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2800), 1, sym_comment, - STATE(4646), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5581), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5579), 11, + ACTIONS(5605), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213143,15 +212427,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, - [88146] = 4, + anon_sym_RPAREN, + anon_sym_or2, + [87228] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2833), 1, - sym_comment, - ACTIONS(5241), 2, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + ACTIONS(2568), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5243), 13, + STATE(2801), 1, + sym_comment, + ACTIONS(2570), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213165,19 +212454,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88172] = 6, + [87259] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1946), 1, + sym__space, + ACTIONS(1950), 1, anon_sym_LPAREN2, - STATE(2834), 1, + ACTIONS(1956), 1, + sym__unquoted_pattern, + STATE(2802), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2148), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2150), 11, + ACTIONS(1948), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213189,16 +212477,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, - [88202] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [87290] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5253), 1, - anon_sym_EQ2, - STATE(2835), 1, + ACTIONS(5623), 1, + aux_sym__immediate_decimal_token5, + STATE(2803), 1, sym_comment, - ACTIONS(5255), 14, - sym__newline, + ACTIONS(1810), 3, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, + ACTIONS(1812), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213209,19 +212502,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_RBRACE, - anon_sym_COLON2, - [88228] = 4, - ACTIONS(103), 1, + sym__unquoted_pattern, + [87319] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2836), 1, - sym_comment, - ACTIONS(2501), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2503), 12, + ACTIONS(5406), 1, + anon_sym_and2, + ACTIONS(5625), 1, sym__newline, + STATE(2789), 1, + aux_sym__repeat_newline, + STATE(2804), 1, + sym_comment, + ACTIONS(5615), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213232,21 +212525,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, - sym__unquoted_pattern, - [88254] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [87350] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2837), 1, - sym_comment, - ACTIONS(994), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(996), 11, + ACTIONS(5412), 1, + anon_sym_and2, + ACTIONS(5628), 1, sym__newline, + STATE(2791), 1, + aux_sym__repeat_newline, + STATE(2805), 1, + sym_comment, + ACTIONS(5621), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213257,19 +212550,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, - [88284] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [87381] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2838), 1, + ACTIONS(5447), 1, + anon_sym_and2, + ACTIONS(5449), 1, + anon_sym_xor2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2806), 1, sym_comment, - ACTIONS(1018), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1016), 11, + ACTIONS(5607), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213281,16 +212576,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, - [88314] = 5, + anon_sym_RPAREN, + anon_sym_or2, + [87412] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, + ACTIONS(1645), 1, + sym__unquoted_pattern, + ACTIONS(2584), 1, sym__space, - STATE(2839), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + STATE(2807), 1, sym_comment, - STATE(2867), 1, - aux_sym_attribute_repeat1, - ACTIONS(5679), 13, + ACTIONS(2586), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213304,17 +212603,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88342] = 5, - ACTIONS(103), 1, + [87443] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - STATE(2840), 1, - sym_comment, - STATE(2857), 1, - aux_sym_attribute_repeat1, - ACTIONS(5681), 13, + ACTIONS(2905), 1, sym__newline, + ACTIONS(5406), 1, + anon_sym_and2, + ACTIONS(5408), 1, + anon_sym_xor2, + STATE(2800), 1, + aux_sym__repeat_newline, + STATE(2808), 1, + sym_comment, + ACTIONS(5615), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213326,15 +212628,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, - [88370] = 3, + anon_sym_or2, + [87476] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2841), 1, - sym_comment, - ACTIONS(5150), 15, - ts_builtin_sym_end, + ACTIONS(2905), 1, sym__newline, + ACTIONS(5412), 1, + anon_sym_and2, + ACTIONS(5414), 1, + anon_sym_xor2, + STATE(2806), 1, + aux_sym__repeat_newline, + STATE(2809), 1, + sym_comment, + ACTIONS(5621), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213345,19 +212653,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_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - [88394] = 4, + [87509] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5241), 1, - anon_sym_EQ2, - STATE(2842), 1, + STATE(2810), 1, sym_comment, - ACTIONS(5243), 14, - sym__newline, + ACTIONS(2491), 2, sym__space, + anon_sym_LPAREN2, + ACTIONS(2493), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213368,37 +212675,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_RBRACE, - anon_sym_COLON2, - [88420] = 4, - ACTIONS(3), 1, + sym__unquoted_pattern, + [87536] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2521), 1, - anon_sym_DASH2, - STATE(2843), 1, + ACTIONS(2640), 1, + sym__space, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(2811), 1, sym_comment, - ACTIONS(2519), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(2642), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [88446] = 3, + anon_sym_RBRACE, + [87567] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2844), 1, + STATE(2692), 1, + aux_sym__repeat_newline, + STATE(2812), 1, sym_comment, - ACTIONS(5269), 15, - ts_builtin_sym_end, + ACTIONS(5404), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213410,16 +212722,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_and2, anon_sym_xor2, anon_sym_or2, - [88470] = 3, + [87594] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2845), 1, + STATE(2693), 1, + aux_sym__repeat_newline, + STATE(2813), 1, sym_comment, - ACTIONS(5150), 15, - ts_builtin_sym_end, + ACTIONS(5410), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213431,25 +212745,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_and2, anon_sym_xor2, anon_sym_or2, - [88494] = 7, + [87621] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5683), 1, + ACTIONS(5406), 1, + anon_sym_and2, + ACTIONS(5631), 1, sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2846), 1, - sym_comment, - STATE(3365), 1, + STATE(2696), 1, aux_sym__repeat_newline, - ACTIONS(5686), 3, + STATE(2814), 1, + sym_comment, + ACTIONS(5404), 13, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -213459,81 +212771,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, - [88526] = 17, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [87652] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5412), 1, + anon_sym_and2, + ACTIONS(5634), 1, sym__newline, - ACTIONS(5692), 1, - anon_sym_PIPE, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2847), 1, - sym_comment, - STATE(2852), 1, + STATE(2697), 1, aux_sym__repeat_newline, - STATE(3179), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [88578] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, - anon_sym_DQUOTE, - ACTIONS(3226), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5702), 1, - aux_sym_env_var_token1, - STATE(2848), 1, - sym_comment, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - STATE(4745), 2, - sym_val_string, - sym_val_interpolated, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [88622] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2849), 1, + STATE(2815), 1, sym_comment, - ACTIONS(5704), 15, - anon_sym_else, - anon_sym_catch, - sym__newline, + ACTIONS(5410), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213545,14 +212797,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, - [88646] = 3, + anon_sym_xor2, + anon_sym_or2, + [87683] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2850), 1, + ACTIONS(5426), 1, + anon_sym_and2, + ACTIONS(5428), 1, + anon_sym_xor2, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2816), 1, sym_comment, - ACTIONS(5269), 15, - ts_builtin_sym_end, + ACTIONS(5543), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213564,16 +212822,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_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - [88670] = 3, - ACTIONS(3), 1, + [87714] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2851), 1, + ACTIONS(960), 1, + sym__space, + ACTIONS(5009), 1, + sym__unquoted_pattern, + STATE(2817), 1, sym_comment, - ACTIONS(5150), 15, - ts_builtin_sym_end, + ACTIONS(860), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213585,51 +212845,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_and2, - anon_sym_xor2, - anon_sym_or2, - [88694] = 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + [87742] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5637), 1, sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, + ACTIONS(5642), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5645), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5648), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5651), 1, anon_sym_DASH2, - ACTIONS(5706), 1, - anon_sym_PIPE, - STATE(2467), 1, + STATE(2483), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2628), 1, sym__param_name, - STATE(2852), 1, - sym_comment, - STATE(3151), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, + STATE(3261), 1, sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, + STATE(3619), 1, sym_parameter, - [88746] = 3, - ACTIONS(3), 1, + STATE(2818), 2, + sym_comment, + aux_sym_parameter_parens_repeat1, + ACTIONS(5640), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + [87788] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2853), 1, + ACTIONS(5128), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5654), 1, + anon_sym_DOT, + STATE(2819), 1, sym_comment, - ACTIONS(5269), 15, + ACTIONS(1760), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1762), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213641,17 +212903,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_and2, - anon_sym_xor2, - anon_sym_or2, - [88770] = 3, + [87818] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2854), 1, + ACTIONS(5567), 1, + aux_sym__immediate_decimal_token5, + STATE(2820), 1, sym_comment, - ACTIONS(5624), 15, - ts_builtin_sym_end, + ACTIONS(1762), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1760), 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, + [87846] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5271), 1, + anon_sym_EQ2, + STATE(2821), 1, + sym_comment, + ACTIONS(5273), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213662,16 +212946,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_and2, - anon_sym_xor2, - anon_sym_or2, - [88794] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [87872] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2855), 1, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + STATE(2822), 1, sym_comment, - ACTIONS(5626), 15, + STATE(4971), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2138), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2140), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213683,19 +212972,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_and2, - anon_sym_xor2, - anon_sym_or2, - [88818] = 4, - ACTIONS(3), 1, + [87902] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - STATE(2856), 1, - sym_comment, - ACTIONS(5624), 14, - ts_builtin_sym_end, + ACTIONS(5378), 1, + anon_sym_EQ2, + ACTIONS(5656), 1, sym__newline, + ACTIONS(5658), 1, + sym__space, + STATE(2823), 1, + sym_comment, + STATE(3014), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5660), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213706,17 +212996,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_xor2, - anon_sym_or2, - [88844] = 4, + anon_sym_RPAREN, + [87934] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5710), 1, + ACTIONS(2068), 1, sym__space, - STATE(2857), 2, + ACTIONS(5662), 1, + anon_sym_LBRACK2, + STATE(2824), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5708), 13, + ACTIONS(2070), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213730,15 +213020,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88870] = 4, + [87962] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - STATE(2858), 1, + ACTIONS(5664), 1, + aux_sym__immediate_decimal_token5, + STATE(2825), 1, + sym_comment, + ACTIONS(1812), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1810), 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, + [87990] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1613), 1, + anon_sym_DASH2, + ACTIONS(5666), 1, + anon_sym_DOT_DOT2, + STATE(2826), 1, + sym_comment, + ACTIONS(5668), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1706), 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, + [88020] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2120), 1, + anon_sym_DASH2, + ACTIONS(5670), 1, + anon_sym_DOT_DOT2, + STATE(2827), 1, sym_comment, - ACTIONS(5626), 14, + ACTIONS(5672), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2118), 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, + [88050] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5378), 1, + anon_sym_EQ2, + ACTIONS(5674), 1, ts_builtin_sym_end, + ACTIONS(5676), 1, + sym__space, + STATE(2828), 1, + sym_comment, + STATE(2971), 1, + aux_sym_attribute_repeat1, + ACTIONS(5374), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213750,19 +213116,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, - anon_sym_xor2, - anon_sym_or2, - [88896] = 5, + [88082] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - ACTIONS(5650), 1, - anon_sym_xor2, - STATE(2859), 1, + ACTIONS(5678), 1, + sym_identifier, + ACTIONS(5680), 1, + sym__newline, + ACTIONS(5682), 1, + anon_sym_RBRACK, + ACTIONS(5684), 1, + anon_sym_DOLLAR, + ACTIONS(5686), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, + anon_sym_DASH_DASH, + ACTIONS(5690), 1, + anon_sym_DASH2, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2829), 1, + sym_comment, + STATE(3163), 1, + aux_sym_parameter_parens_repeat1, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3255), 1, + aux_sym__repeat_newline, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [88134] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + ACTIONS(5692), 1, + anon_sym_DOT, + STATE(2830), 1, + sym_comment, + STATE(3611), 1, + sym__immediate_decimal, + ACTIONS(5694), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5696), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3637), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1590), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [88174] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5678), 1, + sym_identifier, + ACTIONS(5680), 1, + sym__newline, + ACTIONS(5684), 1, + anon_sym_DOLLAR, + ACTIONS(5686), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, + anon_sym_DASH_DASH, + ACTIONS(5690), 1, + anon_sym_DASH2, + ACTIONS(5698), 1, + anon_sym_RPAREN, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2831), 1, + sym_comment, + STATE(3165), 1, + aux_sym_parameter_parens_repeat1, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3255), 1, + aux_sym__repeat_newline, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [88226] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + STATE(2832), 1, sym_comment, - ACTIONS(5624), 13, + STATE(4971), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2158), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2160), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213774,18 +213239,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_or2, - [88924] = 5, - ACTIONS(3), 1, + [88256] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - STATE(2860), 1, + STATE(2833), 1, sym_comment, - ACTIONS(5626), 13, - ts_builtin_sym_end, + ACTIONS(5279), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5281), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213797,14 +213259,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_or2, - [88952] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [88282] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2861), 1, + STATE(2834), 1, sym_comment, - ACTIONS(5631), 15, - ts_builtin_sym_end, + ACTIONS(5223), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5225), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213816,15 +213281,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_and2, - anon_sym_xor2, - anon_sym_or2, - [88976] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [88308] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2862), 1, + STATE(2835), 1, sym_comment, - ACTIONS(5633), 15, + ACTIONS(5181), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213840,37 +213304,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89000] = 4, + [88332] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2863), 1, - sym_comment, - ACTIONS(1556), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1558), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5700), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + STATE(824), 1, + aux_sym__pipe_separator, + STATE(2836), 1, + sym_comment, + STATE(3375), 1, + aux_sym__repeat_newline, + ACTIONS(5703), 3, + anon_sym_SEMI, 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, - [89026] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + ACTIONS(2180), 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, + [88364] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - STATE(2864), 1, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + STATE(2837), 1, sym_comment, - ACTIONS(5631), 14, + ACTIONS(2568), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2570), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213882,17 +213353,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_xor2, - anon_sym_or2, - [89052] = 4, - ACTIONS(3), 1, + [88394] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - STATE(2865), 1, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + STATE(2838), 1, sym_comment, - ACTIONS(5633), 14, + ACTIONS(1946), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1948), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213904,21 +213377,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_xor2, - anon_sym_or2, - [89078] = 6, + [88424] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - ACTIONS(5715), 1, + ACTIONS(2148), 1, anon_sym_DASH2, - STATE(2866), 1, + ACTIONS(5705), 1, + anon_sym_DOT_DOT2, + STATE(2839), 1, sym_comment, - ACTIONS(5646), 2, + ACTIONS(5707), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5713), 11, + ACTIONS(2146), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -213930,38 +213401,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89108] = 5, - ACTIONS(103), 1, + [88454] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - STATE(2857), 1, - aux_sym_attribute_repeat1, - STATE(2867), 1, + ACTIONS(2168), 1, + anon_sym_DASH2, + ACTIONS(5709), 1, + anon_sym_DOT_DOT2, + STATE(2840), 1, sym_comment, - ACTIONS(5717), 13, + ACTIONS(5711), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2166), 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, - [89136] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [88484] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2868), 1, - sym_comment, - ACTIONS(1824), 2, + ACTIONS(2092), 1, anon_sym_DASH2, + ACTIONS(5713), 1, anon_sym_DOT_DOT2, - ACTIONS(1822), 13, + STATE(2841), 1, + sym_comment, + ACTIONS(5715), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2090), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -213973,18 +213449,37 @@ 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, - [89162] = 4, - ACTIONS(103), 1, + [88514] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5221), 1, - anon_sym_EQ2, - STATE(2869), 1, + STATE(2842), 1, sym_comment, - ACTIONS(5223), 14, + ACTIONS(5549), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [88538] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2843), 1, + sym_comment, + ACTIONS(5271), 2, sym__space, + anon_sym_EQ2, + ACTIONS(5273), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213995,18 +213490,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_COLON2, - [89188] = 4, + [88564] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_EQ2, - STATE(2870), 1, + ACTIONS(1645), 1, + sym__unquoted_pattern, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + STATE(2844), 1, sym_comment, - ACTIONS(5239), 14, - sym__newline, + ACTIONS(2584), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(2586), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214017,45 +213516,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_RBRACE, - anon_sym_COLON2, - [89214] = 6, + [88594] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - ACTIONS(5721), 1, - anon_sym_DASH2, - STATE(2871), 1, + ACTIONS(5717), 1, + anon_sym_LBRACK2, + STATE(2845), 1, sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5719), 11, + ACTIONS(2070), 2, + anon_sym_LBRACK, + anon_sym_DASH2, + ACTIONS(2068), 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, - [89244] = 6, + [88622] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2872), 1, + STATE(2846), 1, sym_comment, - ACTIONS(2635), 2, - ts_builtin_sym_end, + ACTIONS(2102), 2, sym__space, - ACTIONS(2637), 11, + anon_sym_LPAREN2, + ACTIONS(2104), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214067,19 +213559,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, - [89274] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [88648] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2873), 1, + STATE(2847), 1, sym_comment, - ACTIONS(2575), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2577), 11, + ACTIONS(5719), 15, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214091,14 +213580,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, - [89304] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [88672] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5257), 1, + ACTIONS(5227), 1, anon_sym_EQ2, - STATE(2874), 1, + STATE(2848), 1, sym_comment, - ACTIONS(5259), 14, + ACTIONS(5229), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -214113,19 +213604,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [89330] = 6, + [88698] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2622), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2624), 1, sym__unquoted_pattern, - STATE(2875), 1, + STATE(2849), 1, sym_comment, - ACTIONS(1974), 2, + ACTIONS(2604), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1976), 11, + ACTIONS(2606), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214137,43 +213628,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, - [89360] = 6, + [88728] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2876), 1, + STATE(2850), 1, sym_comment, - ACTIONS(1706), 2, - ts_builtin_sym_end, + ACTIONS(2110), 2, sym__space, - ACTIONS(1619), 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, - [89390] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1752), 1, anon_sym_LPAREN2, - STATE(2877), 1, - sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2170), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2172), 11, + ACTIONS(2112), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214185,19 +213648,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, - [89420] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [88754] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2878), 1, + STATE(2851), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2072), 2, - ts_builtin_sym_end, + ACTIONS(5227), 2, sym__space, - ACTIONS(2074), 11, + anon_sym_EQ2, + ACTIONS(5229), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214209,86 +213670,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, - [89450] = 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + [88780] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5723), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2879), 1, + STATE(2852), 1, sym_comment, - STATE(3198), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89502] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(1568), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1570), 13, + anon_sym_EQ, sym_identifier, - ACTIONS(5690), 1, sym__newline, - ACTIONS(5694), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5725), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2880), 1, - sym_comment, - STATE(3083), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89554] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [88806] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2128), 1, + ACTIONS(5577), 1, sym__space, - ACTIONS(5727), 1, - anon_sym_LBRACK2, - STATE(2881), 1, + STATE(2853), 1, sym_comment, - ACTIONS(2130), 13, + STATE(2915), 1, + aux_sym_attribute_repeat1, + ACTIONS(5374), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214302,86 +213717,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89582] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2882), 1, - sym_comment, - ACTIONS(1736), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1738), 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, - [89612] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token5, - STATE(2883), 1, - sym_comment, - ACTIONS(1738), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 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, - [89640] = 6, + [88834] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, + ACTIONS(1860), 1, anon_sym_DASH2, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - STATE(2884), 1, + STATE(2854), 1, sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 11, + ACTIONS(1858), 14, anon_sym_EQ, sym_identifier, sym__newline, 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_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89670] = 4, - ACTIONS(103), 1, + [88860] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2885), 1, + ACTIONS(5721), 1, + anon_sym_and2, + ACTIONS(5723), 1, + anon_sym_xor2, + STATE(2855), 1, sym_comment, - ACTIONS(5253), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5255), 13, + ACTIONS(5557), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214393,21 +213761,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, - [89696] = 6, + anon_sym_or2, + [88888] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2154), 1, - anon_sym_DASH2, - ACTIONS(5731), 1, + ACTIONS(5666), 1, anon_sym_DOT_DOT2, - STATE(2886), 1, + ACTIONS(5727), 1, + anon_sym_DASH2, + STATE(2856), 1, sym_comment, - ACTIONS(5733), 2, + ACTIONS(5668), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 11, + ACTIONS(5725), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -214419,110 +213786,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89726] = 17, + [88918] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5666), 1, + anon_sym_DOT_DOT2, + ACTIONS(5731), 1, anon_sym_DASH2, - ACTIONS(5735), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2887), 1, - sym_comment, - STATE(2901), 1, - aux_sym__repeat_newline, - STATE(3171), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89778] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2888), 1, + STATE(2857), 1, sym_comment, - ACTIONS(2523), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2525), 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, - [89808] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5668), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5729), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(5690), 1, sym__newline, - ACTIONS(5694), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5737), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2889), 1, - sym_comment, - STATE(2902), 1, - aux_sym__repeat_newline, - STATE(3174), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89860] = 5, + [88948] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - STATE(2890), 1, + STATE(2858), 1, sym_comment, - ACTIONS(5633), 13, + ACTIONS(5181), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214535,16 +213828,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_and2, + anon_sym_xor2, anon_sym_or2, - [89888] = 3, + [88972] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2891), 1, + ACTIONS(2537), 1, + anon_sym_DASH2, + STATE(2859), 1, sym_comment, - ACTIONS(5739), 15, - anon_sym_else, - anon_sym_catch, + ACTIONS(2535), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + 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_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [88998] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5310), 1, + anon_sym_EQ2, + STATE(2860), 1, + sym_comment, + ACTIONS(5312), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214555,50 +213873,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, - [89912] = 11, + anon_sym_COLON2, + [89024] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(5741), 1, - anon_sym_DOT, - STATE(2892), 1, - sym_comment, - STATE(3577), 1, - sym__immediate_decimal, - ACTIONS(5743), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3636), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [89952] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - STATE(2893), 1, + ACTIONS(5733), 1, + anon_sym_and2, + STATE(2861), 1, sym_comment, - STATE(3081), 1, - sym__flag_equals_value, - ACTIONS(5622), 2, + ACTIONS(5549), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(5620), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214610,19 +213895,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, - [89982] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [89050] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2894), 1, + STATE(2862), 1, sym_comment, - ACTIONS(2567), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2569), 11, + ACTIONS(5735), 15, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214634,20 +213916,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, - [90012] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + [89074] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5747), 1, + STATE(2863), 1, + sym_comment, + ACTIONS(2491), 3, ts_builtin_sym_end, - ACTIONS(5749), 1, sym__space, - STATE(2895), 1, - sym_comment, - STATE(3009), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 11, + anon_sym_LPAREN2, + ACTIONS(2493), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214659,16 +213939,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, - [90044] = 5, + sym__unquoted_pattern, + [89100] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(852), 1, + sym_raw_string_begin, + ACTIONS(3108), 1, + anon_sym_DQUOTE, + ACTIONS(3110), 1, + anon_sym_SQUOTE, + ACTIONS(3112), 1, + anon_sym_BQUOTE, + ACTIONS(3114), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3116), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5737), 1, + aux_sym_env_var_token1, + STATE(2864), 1, + sym_comment, + STATE(3001), 1, + sym__inter_double_quotes, + STATE(3069), 1, + sym__inter_single_quotes, + STATE(4777), 2, + sym_val_string, + sym_val_interpolated, + STATE(2449), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [89144] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2896), 1, + STATE(2865), 1, sym_comment, - ACTIONS(868), 13, + ACTIONS(5310), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5312), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214682,15 +213993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90072] = 4, - ACTIONS(103), 1, + [89170] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2897), 1, + ACTIONS(5733), 1, + anon_sym_and2, + ACTIONS(5739), 1, + anon_sym_xor2, + ACTIONS(5741), 1, + anon_sym_or2, + STATE(2866), 1, sym_comment, - ACTIONS(5287), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5289), 13, + ACTIONS(5396), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214702,155 +214017,96 @@ static const uint16_t ts_small_parse_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, - [90098] = 5, + [89200] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5751), 1, - anon_sym_LBRACK2, - STATE(2898), 1, - sym_comment, - ACTIONS(2130), 2, - anon_sym_LBRACK, - anon_sym_DASH2, - ACTIONS(2128), 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, - [90126] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DASH2, - STATE(2899), 1, + ACTIONS(5721), 1, + anon_sym_and2, + ACTIONS(5723), 1, + anon_sym_xor2, + ACTIONS(5743), 1, + anon_sym_or2, + STATE(2867), 1, sym_comment, - ACTIONS(1858), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(5416), 12, + ts_builtin_sym_end, 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_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90152] = 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, + [89230] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2900), 1, - sym_comment, - ACTIONS(1643), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1641), 13, - anon_sym_EQ, + ACTIONS(5678), 1, sym_identifier, + ACTIONS(5680), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5684), 1, anon_sym_DOLLAR, + ACTIONS(5686), 1, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [90178] = 17, - ACTIONS(3), 1, - anon_sym_POUND, ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5690), 1, anon_sym_DASH2, - ACTIONS(5753), 1, + ACTIONS(5745), 1, anon_sym_RBRACK, - STATE(2467), 1, + STATE(2483), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2628), 1, sym__param_name, - STATE(2901), 1, + STATE(2868), 1, sym_comment, - STATE(3202), 1, + STATE(2873), 1, + aux_sym__repeat_newline, + STATE(3127), 1, aux_sym_parameter_parens_repeat1, - STATE(3269), 1, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, + STATE(3261), 1, sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, + STATE(3619), 1, sym_parameter, - [90230] = 17, + [89282] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5666), 1, + anon_sym_DOT_DOT2, + ACTIONS(5749), 1, + anon_sym_DASH2, + STATE(2869), 1, + sym_comment, + ACTIONS(5668), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5747), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(5690), 1, sym__newline, - ACTIONS(5694), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5755), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2902), 1, - sym_comment, - STATE(3172), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90282] = 4, - ACTIONS(103), 1, + [89312] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2903), 1, + STATE(2870), 1, sym_comment, - ACTIONS(1726), 3, + ACTIONS(4674), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214862,16 +214118,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, - sym__unquoted_pattern, - [90308] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89336] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2904), 1, + ACTIONS(2557), 1, + anon_sym_LPAREN2, + ACTIONS(2559), 1, + sym__unquoted_pattern, + STATE(2871), 1, sym_comment, - ACTIONS(2092), 2, + ACTIONS(1706), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2094), 13, + ACTIONS(1613), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214883,18 +214145,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, - [90334] = 5, + [89366] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, + ACTIONS(5753), 1, sym__space, - STATE(2840), 1, - aux_sym_attribute_repeat1, - STATE(2905), 1, + STATE(2872), 2, sym_comment, - ACTIONS(5326), 13, + aux_sym_attribute_repeat1, + ACTIONS(5751), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214908,61 +214167,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90362] = 6, + [89392] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, + ACTIONS(5678), 1, + sym_identifier, + ACTIONS(5680), 1, + sym__newline, + ACTIONS(5684), 1, + anon_sym_DOLLAR, + ACTIONS(5686), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, + anon_sym_DASH_DASH, + ACTIONS(5690), 1, anon_sym_DASH2, - ACTIONS(5757), 1, - anon_sym_DOT_DOT2, - STATE(2906), 1, + ACTIONS(5756), 1, + anon_sym_RBRACK, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2873), 1, sym_comment, - ACTIONS(5759), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 11, + STATE(3182), 1, + aux_sym_parameter_parens_repeat1, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3255), 1, + aux_sym__repeat_newline, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [89444] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1872), 1, + anon_sym_DASH2, + STATE(2874), 1, + sym_comment, + ACTIONS(1870), 14, anon_sym_EQ, sym_identifier, sym__newline, 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_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90392] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2907), 1, - sym_comment, - ACTIONS(5221), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5223), 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, - [90418] = 4, - ACTIONS(103), 1, + [89470] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2908), 1, + STATE(2875), 1, sym_comment, - ACTIONS(5237), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5239), 13, + ACTIONS(5259), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214974,21 +214242,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, - [90444] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2078), 1, + STATE(2876), 1, + sym_comment, + ACTIONS(1667), 2, anon_sym_DASH2, - ACTIONS(5761), 1, anon_sym_DOT_DOT2, - STATE(2909), 1, - sym_comment, - ACTIONS(5763), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 11, + ACTIONS(1665), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215000,55 +214265,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90474] = 17, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [89520] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5765), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2879), 1, - aux_sym__repeat_newline, - STATE(2910), 1, + ACTIONS(5721), 1, + anon_sym_and2, + STATE(2877), 1, sym_comment, - STATE(3077), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90526] = 7, + ACTIONS(5553), 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, + anon_sym_xor2, + anon_sym_or2, + [89546] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(5577), 1, sym__space, - STATE(2911), 1, + STATE(2878), 1, sym_comment, - STATE(3033), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5771), 11, + STATE(2914), 1, + aux_sym_attribute_repeat1, + ACTIONS(5758), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215060,97 +214311,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90558] = 17, + anon_sym_RBRACE, + [89574] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5678), 1, sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5680), 1, sym__newline, - ACTIONS(5694), 1, + ACTIONS(5684), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5686), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5688), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5690), 1, anon_sym_DASH2, - ACTIONS(5773), 1, + ACTIONS(5760), 1, anon_sym_RPAREN, - STATE(2467), 1, + STATE(2483), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2628), 1, sym__param_name, - STATE(2880), 1, - aux_sym__repeat_newline, - STATE(2912), 1, + STATE(2879), 1, sym_comment, - STATE(3088), 1, + STATE(3185), 1, aux_sym_parameter_parens_repeat1, - STATE(3269), 1, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, sym_param_short_flag, - STATE(3314), 1, + STATE(3255), 1, + aux_sym__repeat_newline, + STATE(3261), 1, sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, + STATE(3619), 1, sym_parameter, - [90610] = 6, + [89626] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, - anon_sym_DASH2, - ACTIONS(5775), 1, - anon_sym_DOT_DOT2, - STATE(2913), 1, + ACTIONS(5733), 1, + anon_sym_and2, + ACTIONS(5739), 1, + anon_sym_xor2, + STATE(2880), 1, sym_comment, - ACTIONS(5777), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5549), 13, + 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, - [90640] = 4, - ACTIONS(3), 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_or2, + [89654] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2593), 1, - anon_sym_DASH2, - STATE(2914), 1, + STATE(2881), 1, sym_comment, - ACTIONS(2591), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(1726), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1728), 12, 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_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90666] = 5, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + sym__unquoted_pattern, + [89680] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, + ACTIONS(5721), 1, anon_sym_and2, - ACTIONS(5650), 1, + ACTIONS(5723), 1, anon_sym_xor2, - STATE(2915), 1, + STATE(2882), 1, sym_comment, - ACTIONS(5631), 13, + ACTIONS(5553), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -215164,41 +214415,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_or2, - [90694] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(5783), 1, - anon_sym_DASH2, - STATE(2916), 1, - sym_comment, - STATE(3241), 1, - sym_param_completer, - ACTIONS(5779), 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, - [90723] = 6, + [89708] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, + ACTIONS(5249), 1, + anon_sym_EQ2, + STATE(2883), 1, + sym_comment, + ACTIONS(5251), 14, sym__newline, - ACTIONS(5769), 1, sym__space, - STATE(2917), 1, - sym_comment, - STATE(3043), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5785), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215209,22 +214435,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, - [90752] = 7, + anon_sym_RBRACE, + anon_sym_COLON2, + [89734] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5787), 1, - sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(2918), 1, + STATE(2884), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5790), 2, + ACTIONS(5553), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215234,19 +214455,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, - [90783] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89758] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, - anon_sym_else, - ACTIONS(5794), 1, + ACTIONS(5762), 1, sym__newline, - STATE(2919), 1, + STATE(824), 1, + aux_sym__pipe_separator, + STATE(2885), 1, sym_comment, - STATE(3047), 1, + STATE(3375), 1, aux_sym__repeat_newline, - ACTIONS(5797), 11, + ACTIONS(5765), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2180), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215256,15 +214483,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, - [90812] = 4, + [89790] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2268), 1, - sym__space, - STATE(2920), 1, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + STATE(2886), 1, sym_comment, - ACTIONS(2270), 13, + STATE(4760), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5455), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5453), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215276,16 +214507,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, - [90837] = 4, - ACTIONS(103), 1, + [89820] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2272), 1, - sym__space, - STATE(2921), 1, + STATE(2887), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(5555), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215297,18 +214525,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, - [90862] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89844] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2922), 1, + STATE(2888), 1, sym_comment, - ACTIONS(5241), 3, + ACTIONS(5557), 15, ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5243), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215320,82 +214546,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [90887] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89868] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_DOT, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token5, - STATE(2923), 1, + STATE(2889), 1, sym_comment, - ACTIONS(1738), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1736), 10, - anon_sym_EQ, + ACTIONS(5259), 15, + 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, - [90916] = 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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89892] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, - anon_sym_DASH2, - STATE(2924), 1, - sym_comment, - ACTIONS(2254), 13, - anon_sym_EQ, + ACTIONS(5678), 1, sym_identifier, + ACTIONS(5680), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5684), 1, anon_sym_DOLLAR, + ACTIONS(5686), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, anon_sym_DASH_DASH, - [90941] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2256), 1, + ACTIONS(5690), 1, anon_sym_DASH2, - STATE(2925), 1, + ACTIONS(5767), 1, + anon_sym_RPAREN, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2879), 1, + aux_sym__repeat_newline, + STATE(2890), 1, sym_comment, - ACTIONS(2254), 13, - anon_sym_EQ, - sym_identifier, + STATE(3136), 1, + aux_sym_parameter_parens_repeat1, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [89944] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5461), 1, + anon_sym_EQ2, + STATE(2891), 1, + sym_comment, + STATE(3145), 1, + sym__flag_equals_value, + ACTIONS(4464), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4462), 11, 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [90966] = 5, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [89974] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5799), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + STATE(2892), 1, + sym_comment, + ACTIONS(1936), 2, ts_builtin_sym_end, - ACTIONS(5801), 1, sym__space, - STATE(2926), 2, - sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5708), 11, + ACTIONS(1938), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215407,64 +214653,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [90993] = 6, - ACTIONS(3), 1, + [90004] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(1734), 1, anon_sym_LPAREN2, - ACTIONS(5806), 1, - anon_sym_DASH2, - STATE(2927), 1, + STATE(2893), 1, sym_comment, - STATE(5170), 1, + STATE(4971), 1, sym__expr_parenthesized_immediate, - ACTIONS(5804), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2154), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2156), 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, - [91022] = 6, - ACTIONS(3), 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, + [90034] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(1734), 1, anon_sym_LPAREN2, - ACTIONS(5810), 1, - anon_sym_DASH2, - STATE(2928), 1, + STATE(2894), 1, sym_comment, - STATE(5170), 1, + STATE(4971), 1, sym__expr_parenthesized_immediate, - ACTIONS(5808), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2162), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2164), 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, - [91051] = 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, + [90064] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5747), 1, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(2895), 1, + sym_comment, + ACTIONS(1010), 2, ts_builtin_sym_end, - ACTIONS(5749), 1, sym__space, - STATE(2929), 1, - sym_comment, - STATE(3009), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 11, + ACTIONS(1002), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215476,14 +214725,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, - [91080] = 4, - ACTIONS(103), 1, + [90094] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__space, - STATE(2930), 1, + ACTIONS(5678), 1, + sym_identifier, + ACTIONS(5680), 1, + sym__newline, + ACTIONS(5684), 1, + anon_sym_DOLLAR, + ACTIONS(5686), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, + anon_sym_DASH_DASH, + ACTIONS(5690), 1, + anon_sym_DASH2, + ACTIONS(5769), 1, + anon_sym_RBRACK, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2829), 1, + aux_sym__repeat_newline, + STATE(2896), 1, + sym_comment, + STATE(3140), 1, + aux_sym_parameter_parens_repeat1, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [90146] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5733), 1, + anon_sym_and2, + STATE(2897), 1, sym_comment, - ACTIONS(2154), 13, + ACTIONS(5555), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215495,16 +214780,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, - [91105] = 4, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [90172] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2202), 1, - sym__space, - STATE(2931), 1, + ACTIONS(5721), 1, + anon_sym_and2, + STATE(2898), 1, sym_comment, - ACTIONS(2204), 13, + ACTIONS(5557), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215516,16 +214802,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, + anon_sym_xor2, + anon_sym_or2, + [90198] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5678), 1, + sym_identifier, + ACTIONS(5680), 1, + sym__newline, + ACTIONS(5684), 1, + anon_sym_DOLLAR, + ACTIONS(5686), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, + anon_sym_DASH_DASH, + ACTIONS(5690), 1, + anon_sym_DASH2, + ACTIONS(5771), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [91130] = 4, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2831), 1, + aux_sym__repeat_newline, + STATE(2899), 1, + sym_comment, + STATE(3141), 1, + aux_sym_parameter_parens_repeat1, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [90250] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2591), 1, - sym__space, - STATE(2932), 1, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(2900), 1, sym_comment, - ACTIONS(2593), 13, + ACTIONS(1018), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(994), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215537,16 +214863,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, - [91155] = 4, + [90280] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5678), 1, + sym_identifier, + ACTIONS(5680), 1, + sym__newline, + ACTIONS(5684), 1, + anon_sym_DOLLAR, + ACTIONS(5686), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, + anon_sym_DASH_DASH, + ACTIONS(5690), 1, + anon_sym_DASH2, + ACTIONS(5773), 1, + anon_sym_PIPE, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2901), 1, + sym_comment, + STATE(3212), 1, + aux_sym_parameter_parens_repeat1, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3255), 1, + aux_sym__repeat_newline, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [90332] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4651), 1, - sym__space, - STATE(2933), 1, + STATE(2902), 1, sym_comment, - ACTIONS(4649), 13, + ACTIONS(5249), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5251), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215560,37 +214920,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91180] = 4, + [90358] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - anon_sym_DASH2, - STATE(2934), 1, + ACTIONS(5733), 1, + anon_sym_and2, + ACTIONS(5739), 1, + anon_sym_xor2, + STATE(2903), 1, sym_comment, - ACTIONS(2202), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5555), 13, + ts_builtin_sym_end, 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91205] = 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, + anon_sym_or2, + [90386] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2935), 1, + ACTIONS(5461), 1, + anon_sym_EQ2, + STATE(2904), 1, sym_comment, - ACTIONS(2084), 3, + STATE(3079), 1, + sym__flag_equals_value, + ACTIONS(5619), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2086), 11, + ACTIONS(5617), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215602,14 +214967,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, - [91230] = 4, + [90416] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2609), 1, + ACTIONS(2582), 1, anon_sym_DASH2, - STATE(2936), 1, + STATE(2905), 1, sym_comment, - ACTIONS(2607), 13, + ACTIONS(2580), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -215621,20 +214986,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91255] = 6, + [90442] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + STATE(2906), 1, + sym_comment, + ACTIONS(1818), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1816), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(5812), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2937), 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [90468] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2907), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(1810), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1812), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215645,22 +215032,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, - anon_sym_RPAREN, - [91284] = 7, + sym__unquoted_pattern, + [90494] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5683), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2938), 1, + STATE(2908), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5686), 2, + ACTIONS(5259), 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_and2, + anon_sym_xor2, + anon_sym_or2, + [90518] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5279), 1, + anon_sym_EQ2, + STATE(2909), 1, + sym_comment, + ACTIONS(5281), 14, + sym__newline, + sym__space, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + anon_sym_COLON2, + [90544] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5223), 1, + anon_sym_EQ2, + STATE(2910), 1, + sym_comment, + ACTIONS(5225), 14, + sym__newline, + sym__space, anon_sym_SEMI, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215670,15 +215096,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, - [91315] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [90570] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2939), 1, + STATE(2911), 1, sym_comment, - ACTIONS(5704), 14, + ACTIONS(1854), 3, ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1856), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215690,16 +215119,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, - [91338] = 4, - ACTIONS(103), 1, + sym__unquoted_pattern, + [90596] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2940), 1, + STATE(2912), 1, sym_comment, - ACTIONS(5287), 3, + ACTIONS(5181), 15, ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5289), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215711,87 +215138,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, - [91363] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(2941), 1, - sym_comment, - STATE(3635), 1, - sym__immediate_decimal, - ACTIONS(5743), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3634), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [91400] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90620] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2513), 1, - anon_sym_DASH2, - STATE(2942), 1, - sym_comment, - ACTIONS(2511), 13, - anon_sym_EQ, + ACTIONS(5678), 1, sym_identifier, + ACTIONS(5680), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5684), 1, anon_sym_DOLLAR, + ACTIONS(5686), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, anon_sym_DASH_DASH, - [91425] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2517), 1, + ACTIONS(5690), 1, anon_sym_DASH2, - STATE(2943), 1, - sym_comment, - ACTIONS(2515), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(5775), 1, 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91450] = 6, - ACTIONS(3), 1, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2901), 1, + aux_sym__repeat_newline, + STATE(2913), 1, + sym_comment, + STATE(3151), 1, + aux_sym_parameter_parens_repeat1, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [90672] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_else, - ACTIONS(5817), 1, - sym__newline, - STATE(2944), 1, + ACTIONS(5577), 1, + sym__space, + STATE(2872), 1, + aux_sym_attribute_repeat1, + STATE(2914), 1, sym_comment, - STATE(2963), 1, - aux_sym__repeat_newline, - ACTIONS(5820), 11, + ACTIONS(5777), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215803,41 +215198,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91479] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [90700] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5824), 1, - anon_sym_DASH2, - STATE(2945), 1, + ACTIONS(5577), 1, + sym__space, + STATE(2872), 1, + aux_sym_attribute_repeat1, + STATE(2915), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5822), 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, - [91508] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5826), 1, - anon_sym_catch, - ACTIONS(5828), 1, + ACTIONS(5779), 13, sym__newline, - STATE(2946), 1, - sym_comment, - STATE(3048), 1, - aux_sym__repeat_newline, - ACTIONS(5831), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215849,14 +215221,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91537] = 4, + anon_sym_RBRACE, + [90728] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2218), 1, - sym__space, - STATE(2947), 1, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(2916), 1, sym_comment, - ACTIONS(2220), 13, + ACTIONS(2640), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2642), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215868,73 +215246,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_RPAREN, - anon_sym_RBRACE, - [91562] = 6, + [90758] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5835), 1, + ACTIONS(2525), 1, anon_sym_DASH2, - STATE(2948), 1, + STATE(2917), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5833), 11, + ACTIONS(2523), 13, anon_sym_EQ, sym_identifier, sym__newline, 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_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91591] = 13, - ACTIONS(103), 1, + [90783] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5839), 1, - anon_sym_DOT, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - STATE(2949), 1, + STATE(2918), 1, sym_comment, - STATE(3606), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, + ACTIONS(1812), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1810), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3863), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [91634] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [90808] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5847), 1, - anon_sym_else, - ACTIONS(5849), 1, - sym__newline, - STATE(2950), 1, + STATE(2919), 1, sym_comment, - STATE(3057), 1, - aux_sym__repeat_newline, - ACTIONS(5852), 11, + ACTIONS(5223), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5225), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215945,36 +215309,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, - [91663] = 4, - ACTIONS(3), 1, + [90833] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2220), 1, - anon_sym_DASH2, - STATE(2951), 1, + ACTIONS(5783), 1, + sym__space, + STATE(2920), 1, sym_comment, - ACTIONS(2218), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5781), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_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, - [91688] = 4, + anon_sym_RBRACE, + [90858] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2260), 1, + ACTIONS(2497), 1, anon_sym_DASH2, - STATE(2952), 1, + STATE(2921), 1, sym_comment, - ACTIONS(2258), 13, + ACTIONS(2495), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215988,21 +215351,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91713] = 7, + [90883] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5635), 1, + ACTIONS(5785), 1, sym__newline, - STATE(881), 1, + STATE(713), 1, aux_sym__pipe_separator, - STATE(2953), 1, + STATE(2922), 1, sym_comment, - STATE(3365), 1, + STATE(3375), 1, aux_sym__repeat_newline, - ACTIONS(5638), 2, - ts_builtin_sym_end, + ACTIONS(5788), 2, anon_sym_SEMI, - ACTIONS(2303), 9, + anon_sym_RPAREN, + ACTIONS(2180), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216012,14 +215375,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, - [91744] = 4, + [90914] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2264), 1, + ACTIONS(2563), 1, anon_sym_DASH2, - STATE(2954), 1, + STATE(2923), 1, sym_comment, - ACTIONS(2262), 13, + ACTIONS(2561), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -216033,14 +215396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91769] = 4, + [90939] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5856), 1, + ACTIONS(5792), 1, sym__space, - STATE(2955), 1, + STATE(2924), 1, sym_comment, - ACTIONS(5854), 13, + ACTIONS(5790), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216054,14 +215417,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91794] = 4, + [90964] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(2373), 1, sym__space, - STATE(2956), 1, + STATE(2925), 1, sym_comment, - ACTIONS(4631), 13, + ACTIONS(2375), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216075,18 +215438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91819] = 6, + [90989] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5749), 1, + ACTIONS(2377), 1, sym__space, - ACTIONS(5858), 1, - ts_builtin_sym_end, STATE(2926), 1, - aux_sym_attribute_repeat1, - STATE(2957), 1, sym_comment, - ACTIONS(5717), 11, + ACTIONS(2379), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216098,38 +215457,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, - [91848] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91014] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2958), 1, - sym_comment, - ACTIONS(5253), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5255), 11, + ACTIONS(5656), 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, - [91873] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2959), 1, - sym_comment, - ACTIONS(5221), 3, - ts_builtin_sym_end, + ACTIONS(5658), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5223), 11, - sym__newline, + STATE(2927), 1, + sym_comment, + STATE(2938), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5794), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216140,48 +215481,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, - [91898] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(5860), 1, - anon_sym_DOT, - ACTIONS(5862), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, - aux_sym__immediate_decimal_token2, - STATE(2960), 1, - sym_comment, - STATE(3598), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3872), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [91941] = 6, + anon_sym_RPAREN, + [91043] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(5107), 1, anon_sym_LPAREN2, - ACTIONS(5642), 1, + ACTIONS(5749), 1, anon_sym_DASH2, - STATE(2961), 1, + STATE(2928), 1, sym_comment, - STATE(4655), 1, + STATE(4734), 1, sym__expr_parenthesized_immediate, - ACTIONS(5640), 11, + ACTIONS(5747), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216193,42 +215505,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91970] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5749), 1, - sym__space, - ACTIONS(5868), 1, - ts_builtin_sym_end, - STATE(2957), 1, - aux_sym_attribute_repeat1, - STATE(2962), 1, - sym_comment, - ACTIONS(5679), 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, - [91999] = 6, + [91072] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(5796), 1, sym__newline, - ACTIONS(5870), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2963), 1, + STATE(713), 1, + aux_sym__pipe_separator, + STATE(2929), 1, sym_comment, - ACTIONS(1955), 11, + STATE(3375), 1, + aux_sym__repeat_newline, + ACTIONS(5799), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2180), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216238,40 +215529,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_RPAREN, - [92028] = 6, + [91103] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(5873), 1, - anon_sym_catch, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2964), 1, + STATE(2930), 1, sym_comment, - ACTIONS(1955), 11, - anon_sym_SEMI, + ACTIONS(1856), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1854), 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, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [92057] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [91128] = 13, ACTIONS(103), 1, anon_sym_POUND, - STATE(2965), 1, + ACTIONS(1590), 1, + sym__space, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(3096), 1, + anon_sym_LPAREN2, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + ACTIONS(5801), 1, + anon_sym_DOT, + ACTIONS(5803), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5805), 1, + aux_sym__immediate_decimal_token2, + STATE(2931), 1, sym_comment, - ACTIONS(5237), 3, - ts_builtin_sym_end, + STATE(3575), 1, + sym__immediate_decimal, + ACTIONS(1594), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5807), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3872), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [91171] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5811), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5239), 11, + STATE(2932), 1, + sym_comment, + ACTIONS(5809), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216283,18 +215599,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, - [92082] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91196] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5876), 1, - anon_sym_catch, - ACTIONS(5878), 1, - sym__newline, - STATE(2966), 1, + ACTIONS(2495), 1, + sym__space, + STATE(2933), 1, sym_comment, - STATE(3042), 1, - aux_sym__repeat_newline, - ACTIONS(5881), 11, + ACTIONS(2497), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216306,14 +215621,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92111] = 4, + anon_sym_RBRACE, + [91221] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5885), 1, + ACTIONS(1870), 1, sym__space, - STATE(2967), 1, + STATE(2934), 1, sym_comment, - ACTIONS(5883), 13, + ACTIONS(1872), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216327,14 +215643,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92136] = 4, + [91246] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, + ACTIONS(2561), 1, sym__space, - STATE(2968), 1, + STATE(2935), 1, sym_comment, - ACTIONS(1860), 13, + ACTIONS(2563), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216348,18 +215664,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92161] = 6, + [91271] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5715), 1, + ACTIONS(5815), 1, + anon_sym_AT2, + ACTIONS(5817), 1, anon_sym_DASH2, - STATE(2969), 1, + STATE(2936), 1, sym_comment, - STATE(4655), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5713), 11, + STATE(3350), 1, + sym_param_completer, + ACTIONS(5813), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216371,35 +215687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92190] = 4, + [91300] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5889), 1, - sym__space, - STATE(2970), 1, + STATE(2937), 1, sym_comment, - ACTIONS(5887), 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, - [92215] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5346), 1, + ACTIONS(5310), 3, + ts_builtin_sym_end, sym__space, - STATE(2971), 1, - sym_comment, - ACTIONS(5344), 13, + anon_sym_EQ2, + ACTIONS(5312), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216411,38 +215708,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, - [92240] = 4, + [91325] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5893), 1, - sym__space, - STATE(2972), 1, - sym_comment, - ACTIONS(5891), 13, + ACTIONS(5819), 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, - [92265] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5897), 1, + ACTIONS(5822), 1, sym__space, - STATE(2973), 1, + STATE(2938), 2, sym_comment, - ACTIONS(5895), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5825), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216454,15 +215730,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, - [92290] = 4, + [91352] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5901), 1, + ACTIONS(5674), 1, + ts_builtin_sym_end, + ACTIONS(5676), 1, sym__space, - STATE(2974), 1, + STATE(2939), 1, sym_comment, - ACTIONS(5899), 13, + STATE(2971), 1, + aux_sym_attribute_repeat1, + ACTIONS(5374), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216474,16 +215753,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, - [92315] = 4, + [91381] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5905), 1, + ACTIONS(5829), 1, sym__space, - STATE(2975), 1, + STATE(2940), 1, sym_comment, - ACTIONS(5903), 13, + ACTIONS(5827), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216497,21 +215774,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92340] = 7, + [91406] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5907), 1, + ACTIONS(2059), 1, sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(2976), 1, - sym_comment, - STATE(3365), 1, + ACTIONS(5831), 1, + anon_sym_else, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(5910), 2, + STATE(2941), 1, + sym_comment, + ACTIONS(2057), 11, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216521,56 +215796,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [92371] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [91435] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2198), 1, - sym__space, - STATE(2977), 1, + ACTIONS(2656), 1, + anon_sym_DASH2, + STATE(2942), 1, sym_comment, - ACTIONS(2200), 13, + ACTIONS(2654), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [92396] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [91460] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2978), 1, - sym_comment, - ACTIONS(2503), 2, + ACTIONS(2541), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(2501), 12, + STATE(2943), 1, + sym_comment, + ACTIONS(2539), 13, anon_sym_EQ, sym_identifier, sym__newline, 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_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [92421] = 4, + [91485] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, + ACTIONS(5834), 1, + anon_sym_LBRACK2, + STATE(2944), 1, + sym_comment, + ACTIONS(2068), 2, + ts_builtin_sym_end, sym__space, - STATE(2979), 1, + ACTIONS(2070), 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, + [91512] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2945), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(5719), 14, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216582,60 +215881,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, - [92446] = 6, + [91535] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, + ACTIONS(2501), 1, anon_sym_DASH2, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_record, - STATE(2980), 1, + STATE(2946), 1, sym_comment, - ACTIONS(1706), 11, + ACTIONS(2499), 13, anon_sym_EQ, sym_identifier, sym__newline, 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_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92475] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2076), 1, - sym__space, - STATE(2981), 1, - sym_comment, - ACTIONS(2078), 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, - [92500] = 4, + [91560] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2198), 1, sym__space, - STATE(2982), 1, + STATE(2947), 1, sym_comment, - ACTIONS(2122), 13, + ACTIONS(2200), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216649,18 +215923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92525] = 6, + [91585] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1966), 1, - anon_sym_DASH2, - ACTIONS(1968), 1, + ACTIONS(5107), 1, anon_sym_LPAREN2, - STATE(2983), 1, + ACTIONS(5838), 1, + anon_sym_DASH2, + STATE(2948), 1, sym_comment, - ACTIONS(1964), 11, + STATE(4901), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5836), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216672,35 +215946,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92554] = 4, + [91614] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2984), 1, - sym_comment, - ACTIONS(1804), 2, + ACTIONS(2365), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 12, + STATE(2949), 1, + sym_comment, + ACTIONS(2363), 13, anon_sym_EQ, sym_identifier, sym__newline, 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_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [92579] = 4, + [91639] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5914), 1, + ACTIONS(2499), 1, sym__space, - STATE(2985), 1, + STATE(2950), 1, sym_comment, - ACTIONS(5912), 13, + ACTIONS(2501), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216714,14 +215988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92604] = 4, - ACTIONS(3), 1, + [91664] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5916), 1, - anon_sym_catch, - STATE(2986), 1, + ACTIONS(2503), 1, + sym__space, + STATE(2951), 1, sym_comment, - ACTIONS(5918), 13, + ACTIONS(2505), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216735,14 +216009,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92629] = 4, + [91689] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5107), 1, + anon_sym_LPAREN2, + ACTIONS(5842), 1, + anon_sym_DASH2, + STATE(2952), 1, + sym_comment, + STATE(4901), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5840), 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, + [91718] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2222), 1, + ACTIONS(2580), 1, sym__space, - STATE(2987), 1, + STATE(2953), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(2582), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216756,16 +216053,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92654] = 4, - ACTIONS(103), 1, + [91743] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5581), 1, - sym__space, - STATE(2988), 1, - sym_comment, - ACTIONS(5579), 13, + ACTIONS(5700), 1, sym__newline, + STATE(824), 1, + aux_sym__pipe_separator, + STATE(2954), 1, + sym_comment, + STATE(3375), 1, + aux_sym__repeat_newline, + ACTIONS(5703), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2180), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216775,41 +216077,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_RBRACE, - [92679] = 6, + [91774] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2577), 1, + ACTIONS(2184), 1, anon_sym_DASH2, - STATE(2989), 1, + STATE(2955), 1, sym_comment, - ACTIONS(2575), 11, + ACTIONS(2182), 13, anon_sym_EQ, sym_identifier, sym__newline, 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_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92708] = 5, + [91799] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5922), 1, - anon_sym_LT, - ACTIONS(5924), 1, + ACTIONS(5107), 1, + anon_sym_LPAREN2, + ACTIONS(5846), 1, anon_sym_DASH2, - STATE(2990), 1, + STATE(2956), 1, sym_comment, - ACTIONS(5920), 12, + STATE(4901), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5844), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216819,21 +216119,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92735] = 6, + [91828] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1976), 1, - anon_sym_DASH2, - ACTIONS(1978), 1, + ACTIONS(5107), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - STATE(2991), 1, + ACTIONS(5850), 1, + anon_sym_DASH2, + STATE(2957), 1, sym_comment, - ACTIONS(1974), 11, + STATE(4901), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5848), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216845,63 +216144,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92764] = 5, + [91857] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5924), 1, + ACTIONS(2598), 1, anon_sym_DASH2, - ACTIONS(5926), 1, - anon_sym_LT, - STATE(2992), 1, + STATE(2958), 1, sym_comment, - ACTIONS(5920), 12, + ACTIONS(2596), 13, anon_sym_EQ, sym_identifier, sym__newline, 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_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92791] = 6, + [91882] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2525), 1, + ACTIONS(2602), 1, anon_sym_DASH2, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2993), 1, + STATE(2959), 1, sym_comment, - ACTIONS(2523), 11, + ACTIONS(2600), 13, anon_sym_EQ, sym_identifier, sym__newline, 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_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92820] = 6, + [91907] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2569), 1, + ACTIONS(5815), 1, + anon_sym_AT2, + ACTIONS(5854), 1, anon_sym_DASH2, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, - STATE(2994), 1, + STATE(2960), 1, sym_comment, - ACTIONS(2567), 11, + STATE(3254), 1, + sym_param_completer, + ACTIONS(5852), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216913,35 +216209,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92849] = 4, - ACTIONS(3), 1, + [91936] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2995), 1, + ACTIONS(2202), 1, + sym__space, + STATE(2961), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2204), 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, - [92874] = 4, + anon_sym_RBRACE, + [91961] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2206), 1, + ACTIONS(5858), 1, sym__space, - STATE(2996), 1, + STATE(2962), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(5856), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216955,14 +216251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92899] = 4, + [91986] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(5676), 1, sym__space, - STATE(2997), 1, + ACTIONS(5860), 1, + ts_builtin_sym_end, + STATE(2963), 1, sym_comment, - ACTIONS(2212), 13, + STATE(2997), 1, + aux_sym_attribute_repeat1, + ACTIONS(5758), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216974,16 +216274,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, + [92015] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2212), 1, + anon_sym_DASH2, + STATE(2964), 1, + sym_comment, + ACTIONS(2210), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [92924] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [92040] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2214), 1, + ACTIONS(2206), 1, sym__space, - STATE(2998), 1, + STATE(2965), 1, sym_comment, - ACTIONS(2216), 13, + ACTIONS(2208), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216997,42 +216316,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92949] = 11, + [92065] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1606), 1, sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(2881), 1, anon_sym_DOLLAR, - ACTIONS(5928), 1, - anon_sym_DOT, - STATE(2999), 1, + STATE(2966), 1, sym_comment, - STATE(3680), 1, + STATE(3914), 1, sym__immediate_decimal, - ACTIONS(5930), 2, + ACTIONS(5862), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5932), 2, + ACTIONS(5864), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3636), 2, + STATE(809), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 3, + ACTIONS(1590), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [92988] = 4, + [92102] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2226), 1, + sym__space, + STATE(2967), 1, + sym_comment, + ACTIONS(2228), 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, + [92127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2270), 1, + ACTIONS(2224), 1, anon_sym_DASH2, - STATE(3000), 1, + STATE(2968), 1, + sym_comment, + ACTIONS(2222), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + 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_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [92152] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2517), 1, + anon_sym_DASH2, + STATE(2969), 1, sym_comment, - ACTIONS(2268), 13, + ACTIONS(2515), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -217046,17 +216406,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93013] = 5, + [92177] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(3001), 1, + ACTIONS(5868), 1, + sym__space, + STATE(2970), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(5866), 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, + [92202] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5676), 1, + sym__space, + ACTIONS(5870), 1, ts_builtin_sym_end, + STATE(2971), 1, + sym_comment, + STATE(3015), 1, + aux_sym_attribute_repeat1, + ACTIONS(5779), 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, + [92231] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5872), 1, + anon_sym_else, + ACTIONS(5874), 1, + sym__newline, + STATE(2972), 1, + sym_comment, + STATE(2991), 1, + aux_sym__repeat_newline, + ACTIONS(5877), 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, + [92260] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5881), 1, + sym__space, + STATE(2973), 1, + sym_comment, + ACTIONS(5879), 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, + [92285] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2230), 1, + sym__space, + STATE(2974), 1, + sym_comment, + ACTIONS(2232), 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, + [92310] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5885), 1, + sym__space, + STATE(2975), 1, + sym_comment, + ACTIONS(5883), 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, + [92335] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5455), 1, sym__space, - ACTIONS(868), 11, + STATE(2976), 1, + sym_comment, + ACTIONS(5453), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217068,35 +216555,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [93040] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92360] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2274), 1, + ACTIONS(5889), 1, + anon_sym_LT, + ACTIONS(5891), 1, anon_sym_DASH2, - STATE(3002), 1, + STATE(2977), 1, sym_comment, - ACTIONS(2272), 13, + ACTIONS(5887), 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_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [92387] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5193), 1, + aux_sym__immediate_decimal_token5, + STATE(2978), 1, + sym_comment, + ACTIONS(1762), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(1760), 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, + [92416] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5891), 1, + anon_sym_DASH2, + ACTIONS(5893), 1, + anon_sym_LT, + STATE(2979), 1, + sym_comment, + ACTIONS(5887), 12, anon_sym_EQ, sym_identifier, sym__newline, 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_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93065] = 4, + [92443] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5895), 1, + anon_sym_catch, + ACTIONS(5897), 1, + sym__newline, + STATE(2980), 1, + sym_comment, + STATE(2993), 1, + aux_sym__repeat_newline, + ACTIONS(5900), 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, + [92472] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2981), 1, + sym_comment, + ACTIONS(2102), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2104), 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, + [92497] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(2234), 1, sym__space, - STATE(3003), 1, + STATE(2982), 1, sym_comment, - ACTIONS(5249), 13, + ACTIONS(2236), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217110,41 +216689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93090] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3004), 1, - sym_comment, - STATE(3926), 1, - sym__immediate_decimal, - ACTIONS(5934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [93127] = 4, + [92522] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5940), 1, - sym__space, - STATE(3005), 1, + STATE(2983), 1, sym_comment, - ACTIONS(5938), 13, + ACTIONS(5279), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5281), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217156,17 +216710,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, - [93152] = 4, - ACTIONS(103), 1, + [92547] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2226), 1, - sym__space, - STATE(3006), 1, - sym_comment, - ACTIONS(2228), 13, + ACTIONS(5902), 1, + anon_sym_catch, + ACTIONS(5904), 1, sym__newline, + STATE(2984), 1, + sym_comment, + STATE(2996), 1, + aux_sym__repeat_newline, + ACTIONS(5907), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217178,19 +216733,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, - [93177] = 6, + [92576] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2637), 1, - anon_sym_DASH2, - ACTIONS(2639), 1, + ACTIONS(1950), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(1956), 1, sym__unquoted_pattern_in_record, - STATE(3007), 1, + ACTIONS(2570), 1, + anon_sym_DASH2, + STATE(2985), 1, sym_comment, - ACTIONS(2635), 11, + ACTIONS(2568), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217202,15 +216756,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93206] = 4, - ACTIONS(103), 1, + [92605] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2230), 1, - sym__space, - STATE(3008), 1, - sym_comment, - ACTIONS(2232), 13, + ACTIONS(5909), 1, + anon_sym_else, + ACTIONS(5911), 1, sym__newline, + STATE(2986), 1, + sym_comment, + STATE(3057), 1, + aux_sym__repeat_newline, + ACTIONS(5914), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217222,20 +216779,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, - [93231] = 6, - ACTIONS(103), 1, + [92634] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5749), 1, - sym__space, - ACTIONS(5942), 1, - ts_builtin_sym_end, - STATE(2926), 1, - aux_sym_attribute_repeat1, - STATE(3009), 1, - sym_comment, - ACTIONS(5681), 11, + ACTIONS(5916), 1, + anon_sym_else, + ACTIONS(5918), 1, sym__newline, + STATE(2986), 1, + aux_sym__repeat_newline, + STATE(2987), 1, + sym_comment, + ACTIONS(5921), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217246,14 +216801,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, - [93260] = 4, + anon_sym_RPAREN, + [92663] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2238), 1, + ACTIONS(1858), 1, sym__space, - STATE(3010), 1, + STATE(2988), 1, sym_comment, - ACTIONS(2240), 13, + ACTIONS(1860), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217267,15 +216823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93285] = 4, - ACTIONS(103), 1, + [92688] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2242), 1, - sym__space, - STATE(3011), 1, - sym_comment, - ACTIONS(2244), 13, + ACTIONS(5923), 1, + anon_sym_else, + ACTIONS(5925), 1, sym__newline, + STATE(2989), 1, + sym_comment, + STATE(2990), 1, + aux_sym__repeat_newline, + ACTIONS(5928), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217287,16 +216846,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_RBRACE, - [93310] = 4, - ACTIONS(103), 1, + [92717] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2246), 1, - sym__space, - STATE(3012), 1, + ACTIONS(5930), 1, + anon_sym_else, + ACTIONS(5932), 1, + sym__newline, + STATE(2990), 1, sym_comment, - ACTIONS(2248), 13, + STATE(3071), 1, + aux_sym__repeat_newline, + ACTIONS(5935), 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, + [92746] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5937), 1, + anon_sym_else, + ACTIONS(5939), 1, sym__newline, + STATE(2991), 1, + sym_comment, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(5942), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217308,15 +216892,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, - [93335] = 4, + [92775] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2250), 1, + ACTIONS(2654), 1, sym__space, - STATE(3013), 1, + STATE(2992), 1, sym_comment, - ACTIONS(2252), 13, + ACTIONS(2656), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217330,60 +216913,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93360] = 6, + [92800] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(996), 1, - anon_sym_DASH2, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(3014), 1, - sym_comment, - ACTIONS(994), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5944), 1, + anon_sym_catch, + ACTIONS(5946), 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, - [93389] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_DASH2, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(3015), 1, + STATE(2993), 1, sym_comment, - ACTIONS(1018), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(3032), 1, + aux_sym__repeat_newline, + ACTIONS(5949), 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, - [93418] = 4, + [92829] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5247), 1, + ACTIONS(2539), 1, sym__space, - STATE(3016), 1, + STATE(2994), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(2541), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217397,14 +216957,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93443] = 4, + [92854] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2537), 1, + ACTIONS(2238), 1, sym__space, - STATE(3017), 1, + STATE(2995), 1, sym_comment, - ACTIONS(2539), 13, + ACTIONS(2240), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217418,15 +216978,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93468] = 4, - ACTIONS(103), 1, + [92879] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2607), 1, - sym__space, - STATE(3018), 1, - sym_comment, - ACTIONS(2609), 13, + ACTIONS(2059), 1, sym__newline, + ACTIONS(5951), 1, + anon_sym_catch, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2996), 1, + sym_comment, + ACTIONS(2057), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217438,15 +217001,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, - [93493] = 4, + [92908] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2511), 1, + ACTIONS(5676), 1, sym__space, - STATE(3019), 1, + ACTIONS(5954), 1, + ts_builtin_sym_end, + STATE(2997), 1, sym_comment, - ACTIONS(2513), 13, + STATE(3015), 1, + aux_sym_attribute_repeat1, + ACTIONS(5777), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217458,16 +217024,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, - [93518] = 4, + [92937] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(4659), 1, sym__space, - STATE(3020), 1, + STATE(2998), 1, sym_comment, - ACTIONS(868), 13, + ACTIONS(4657), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217481,14 +217045,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93543] = 4, + [92962] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - STATE(3021), 1, + ACTIONS(5036), 1, + sym__unquoted_pattern, + STATE(2999), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(960), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(860), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217500,16 +217067,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, - [93568] = 4, + [92989] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2515), 1, + ACTIONS(2242), 1, sym__space, - STATE(3022), 1, + STATE(3000), 1, sym_comment, - ACTIONS(2517), 13, + ACTIONS(2244), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217523,14 +217088,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93593] = 4, + [93014] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(2367), 1, sym__space, - STATE(3023), 1, + STATE(3001), 1, sym_comment, - ACTIONS(2114), 13, + ACTIONS(2369), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217544,18 +217109,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93618] = 6, + [93039] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(5107), 1, anon_sym_LPAREN2, - ACTIONS(5721), 1, + ACTIONS(5727), 1, anon_sym_DASH2, - STATE(3024), 1, + STATE(3002), 1, sym_comment, - STATE(4655), 1, + STATE(4734), 1, sym__expr_parenthesized_immediate, - ACTIONS(5719), 11, + ACTIONS(5725), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217567,14 +217132,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93647] = 4, + [93068] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5956), 1, + anon_sym_catch, + STATE(3003), 1, + sym_comment, + ACTIONS(5958), 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, + [93093] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2519), 1, + ACTIONS(2118), 1, sym__space, - STATE(3025), 1, + STATE(3004), 1, sym_comment, - ACTIONS(2521), 13, + ACTIONS(2120), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217588,18 +217174,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93672] = 6, + [93118] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(3005), 1, + sym_comment, + STATE(3636), 1, + sym__immediate_decimal, + ACTIONS(5694), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5696), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3635), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1625), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [93155] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5781), 1, + ACTIONS(5815), 1, anon_sym_AT2, - ACTIONS(5946), 1, + ACTIONS(5817), 1, anon_sym_DASH2, - STATE(3026), 1, + STATE(3006), 1, sym_comment, - STATE(3284), 1, + STATE(3279), 1, sym_param_completer, - ACTIONS(5944), 11, + ACTIONS(5813), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217611,14 +217224,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93701] = 4, + [93184] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2505), 1, + ACTIONS(4601), 1, sym__space, - STATE(3027), 1, + STATE(3007), 1, sym_comment, - ACTIONS(2507), 13, + ACTIONS(4599), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217632,18 +217245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93726] = 6, - ACTIONS(3), 1, + [93209] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5948), 1, - anon_sym_else, - ACTIONS(5950), 1, - sym__newline, - STATE(3028), 1, + ACTIONS(4649), 1, + sym__space, + STATE(3008), 1, sym_comment, - STATE(3044), 1, - aux_sym__repeat_newline, - ACTIONS(5953), 11, + ACTIONS(4647), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217655,15 +217265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93755] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [93234] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3029), 1, + ACTIONS(2363), 1, + sym__space, + STATE(3009), 1, sym_comment, - ACTIONS(5739), 14, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + ACTIONS(2365), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217675,14 +217285,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, - [93778] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93259] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2615), 1, + ACTIONS(2246), 1, sym__space, - STATE(3030), 1, + STATE(3010), 1, sym_comment, - ACTIONS(2617), 13, + ACTIONS(2248), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217696,18 +217308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93803] = 6, + [93284] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(2359), 1, sym__space, - STATE(2917), 1, - aux_sym__command_parenthesized_repeat1, - STATE(3031), 1, + STATE(3011), 1, sym_comment, - ACTIONS(5955), 11, + ACTIONS(2361), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217719,39 +217328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93832] = 4, + anon_sym_RBRACE, + [93309] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2224), 1, - anon_sym_DASH2, - STATE(3032), 1, - sym_comment, - ACTIONS(2222), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93857] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5767), 1, + ACTIONS(5960), 1, + anon_sym_else, + ACTIONS(5962), 1, sym__newline, - ACTIONS(5769), 1, - sym__space, - STATE(3033), 1, + STATE(3012), 1, sym_comment, - STATE(3043), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5957), 11, + STATE(3033), 1, + aux_sym__repeat_newline, + ACTIONS(5965), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217763,57 +217352,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93886] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DASH2, - STATE(3034), 1, - sym_comment, - ACTIONS(2537), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93911] = 4, + [93338] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2617), 1, + ACTIONS(1948), 1, anon_sym_DASH2, - STATE(3035), 1, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern_in_record, + STATE(3013), 1, sym_comment, - ACTIONS(2615), 13, + ACTIONS(1946), 11, anon_sym_EQ, sym_identifier, sym__newline, 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_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93936] = 4, + [93367] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5961), 1, + ACTIONS(5656), 1, + sym__newline, + ACTIONS(5658), 1, sym__space, - STATE(3036), 1, + STATE(2938), 1, + aux_sym__command_parenthesized_repeat1, + STATE(3014), 1, sym_comment, - ACTIONS(5959), 13, - sym__newline, + ACTIONS(5967), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217825,15 +217398,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, - [93961] = 4, + [93396] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5965), 1, + ACTIONS(5969), 1, + ts_builtin_sym_end, + ACTIONS(5971), 1, sym__space, - STATE(3037), 1, + STATE(3015), 2, sym_comment, - ACTIONS(5963), 13, + aux_sym_attribute_repeat1, + ACTIONS(5751), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217845,68 +217420,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_RBRACE, - [93986] = 4, + [93423] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2565), 1, + ACTIONS(2642), 1, anon_sym_DASH2, - STATE(3038), 1, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern_in_record, + STATE(3016), 1, sym_comment, - ACTIONS(2563), 13, + ACTIONS(2640), 11, anon_sym_EQ, sym_identifier, sym__newline, 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_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94011] = 10, - ACTIONS(3), 1, + [93452] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3039), 1, + ACTIONS(5269), 1, + sym__space, + STATE(3017), 1, sym_comment, - STATE(3909), 1, - sym__immediate_decimal, - ACTIONS(5934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [94048] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5967), 1, - anon_sym_else, - ACTIONS(5969), 1, + ACTIONS(5267), 13, sym__newline, - STATE(2944), 1, - aux_sym__repeat_newline, - STATE(3040), 1, - sym_comment, - ACTIONS(5972), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217918,18 +217463,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94077] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [93477] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5974), 1, - anon_sym_catch, ACTIONS(5976), 1, - sym__newline, - STATE(2946), 1, - aux_sym__repeat_newline, - STATE(3041), 1, + sym__space, + STATE(3018), 1, sym_comment, - ACTIONS(5979), 11, + ACTIONS(5974), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217941,40 +217484,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94106] = 6, + anon_sym_RBRACE, + [93502] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5981), 1, - anon_sym_catch, - ACTIONS(5983), 1, - sym__newline, - STATE(2964), 1, - aux_sym__repeat_newline, - STATE(3042), 1, + ACTIONS(2505), 1, + anon_sym_DASH2, + STATE(3019), 1, sym_comment, - ACTIONS(5986), 11, - anon_sym_SEMI, + ACTIONS(2503), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - [94135] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93527] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5988), 1, - sym__newline, - ACTIONS(5991), 1, - sym__space, - STATE(3043), 2, + STATE(3020), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5994), 11, + ACTIONS(5249), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5251), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217985,19 +217527,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, - [94162] = 6, - ACTIONS(3), 1, + [93552] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_else, - ACTIONS(5998), 1, - sym__newline, - STATE(2937), 1, - aux_sym__repeat_newline, - STATE(3044), 1, + STATE(3021), 1, sym_comment, - ACTIONS(6001), 11, + ACTIONS(5271), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5273), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218008,17 +217548,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, - [94191] = 4, + [93577] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3045), 1, - sym_comment, - ACTIONS(2092), 3, - ts_builtin_sym_end, + ACTIONS(960), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2094), 11, + STATE(3022), 1, + sym_comment, + ACTIONS(860), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218030,16 +217567,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, - [94216] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93602] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3046), 1, + STATE(3023), 1, sym_comment, - ACTIONS(5257), 3, + ACTIONS(5735), 14, ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5259), 11, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218051,18 +217589,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, - [94241] = 6, + [93625] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2059), 1, sym__newline, - ACTIONS(6003), 1, + ACTIONS(5978), 1, anon_sym_else, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(3047), 1, + STATE(3024), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(2057), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218074,58 +217612,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94270] = 6, + [93654] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6006), 1, - anon_sym_catch, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3048), 1, + ACTIONS(1002), 1, + anon_sym_DASH2, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern_in_record, + STATE(3025), 1, sym_comment, - ACTIONS(1955), 11, - anon_sym_SEMI, + ACTIONS(1010), 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, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [94299] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93683] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2258), 1, - sym__space, - STATE(3049), 1, + ACTIONS(994), 1, + anon_sym_DASH2, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern_in_record, + STATE(3026), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(1018), 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, - [94324] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93712] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(5983), 1, sym__space, - STATE(3050), 1, + STATE(3027), 1, sym_comment, - ACTIONS(1868), 13, + ACTIONS(5981), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218139,14 +217679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94349] = 4, + [93737] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2563), 1, + ACTIONS(5277), 1, sym__space, - STATE(3051), 1, + STATE(3028), 1, sym_comment, - ACTIONS(2565), 13, + ACTIONS(5275), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218160,14 +217700,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94374] = 4, + [93762] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2571), 1, + ACTIONS(2182), 1, sym__space, - STATE(3052), 1, + STATE(3029), 1, sym_comment, - ACTIONS(2573), 13, + ACTIONS(2184), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218181,106 +217721,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94399] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(6011), 1, - anon_sym_DASH2, - STATE(3053), 1, - sym_comment, - STATE(3300), 1, - sym_param_completer, - ACTIONS(6009), 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, - [94428] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(5783), 1, - anon_sym_DASH2, - STATE(3054), 1, - sym_comment, - STATE(3239), 1, - sym_param_completer, - ACTIONS(5779), 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, - [94457] = 4, + [93787] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3055), 1, - sym_comment, - ACTIONS(1728), 2, - anon_sym_DASH2, + ACTIONS(1645), 1, sym__unquoted_pattern_in_record, - ACTIONS(1726), 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, - [94482] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(868), 1, + ACTIONS(2586), 1, anon_sym_DASH2, - STATE(3056), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + STATE(3030), 1, sym_comment, - ACTIONS(968), 13, + ACTIONS(2584), 11, anon_sym_EQ, sym_identifier, sym__newline, 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_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94507] = 6, - ACTIONS(3), 1, + [93816] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6013), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3057), 1, + ACTIONS(1706), 1, + sym__space, + STATE(3031), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(1613), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218292,36 +217764,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94536] = 4, + anon_sym_RBRACE, + [93841] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2573), 1, - anon_sym_DASH2, - STATE(3058), 1, - sym_comment, - ACTIONS(2571), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2059), 1, sym__newline, - 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94561] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2194), 1, - sym__space, - STATE(3059), 1, + ACTIONS(5985), 1, + anon_sym_catch, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(3032), 1, sym_comment, - ACTIONS(2196), 13, - sym__newline, + ACTIONS(2057), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218333,16 +217788,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, - [94586] = 4, - ACTIONS(103), 1, + [93870] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4629), 1, - sym__space, - STATE(3060), 1, - sym_comment, - ACTIONS(4627), 13, + ACTIONS(5988), 1, + anon_sym_else, + ACTIONS(5990), 1, sym__newline, + STATE(2941), 1, + aux_sym__repeat_newline, + STATE(3033), 1, + sym_comment, + ACTIONS(5993), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218354,57 +217811,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, - [94611] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_DASH2, - STATE(3061), 1, - sym_comment, - ACTIONS(1706), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94636] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2114), 1, - anon_sym_DASH2, - STATE(3062), 1, - sym_comment, - ACTIONS(2112), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94661] = 4, + [93899] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2254), 1, + ACTIONS(5997), 1, sym__space, - STATE(3063), 1, + STATE(3034), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(5995), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218418,17 +217832,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94686] = 5, + [93924] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6016), 1, - anon_sym_LBRACK2, - STATE(3064), 1, + STATE(3035), 1, sym_comment, - ACTIONS(2128), 2, + ACTIONS(5227), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2130), 11, + anon_sym_EQ2, + ACTIONS(5229), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218440,37 +217853,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, - [94713] = 5, + [93949] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1960), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(6018), 1, + ACTIONS(5999), 1, + anon_sym_catch, + ACTIONS(6001), 1, sym__newline, - STATE(3065), 2, + STATE(2984), 1, aux_sym__repeat_newline, + STATE(3036), 1, sym_comment, - ACTIONS(1955), 11, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [94740] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2254), 1, - sym__space, - STATE(3066), 1, - sym_comment, - ACTIONS(2256), 13, - sym__newline, + ACTIONS(6004), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218482,15 +217876,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, - [94765] = 4, + [93978] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2262), 1, + ACTIONS(2596), 1, sym__space, - STATE(3067), 1, + STATE(3037), 1, sym_comment, - ACTIONS(2264), 13, + ACTIONS(2598), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218504,39 +217897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94790] = 4, - ACTIONS(3), 1, + [94003] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2507), 1, - anon_sym_DASH2, - STATE(3068), 1, + ACTIONS(2600), 1, + sym__space, + STATE(3038), 1, sym_comment, - ACTIONS(2505), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - 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_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94815] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6021), 1, - anon_sym_else, - ACTIONS(6023), 1, + ACTIONS(2602), 13, sym__newline, - STATE(2919), 1, - aux_sym__repeat_newline, - STATE(3069), 1, - sym_comment, - ACTIONS(6026), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218548,14 +217917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94844] = 4, + anon_sym_RBRACE, + [94028] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4625), 1, + ACTIONS(2523), 1, sym__space, - STATE(3070), 1, + STATE(3039), 1, sym_comment, - ACTIONS(4623), 13, + ACTIONS(2525), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218569,58 +217939,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94869] = 6, + [94053] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6028), 1, - anon_sym_else, - ACTIONS(6030), 1, + ACTIONS(2062), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(6006), 1, sym__newline, - STATE(2950), 1, + STATE(3040), 2, aux_sym__repeat_newline, - STATE(3071), 1, - sym_comment, - ACTIONS(6033), 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, - [94898] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_DASH2, - STATE(3072), 1, sym_comment, - ACTIONS(2194), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2057), 11, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94923] = 4, + anon_sym_DASH2, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [94080] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6037), 1, + ACTIONS(2535), 1, sym__space, - STATE(3073), 1, + STATE(3041), 1, sym_comment, - ACTIONS(6035), 13, + ACTIONS(2537), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218634,14 +217982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94948] = 4, + [94105] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2234), 1, + ACTIONS(2086), 1, sym__space, - STATE(3074), 1, + STATE(3042), 1, sym_comment, - ACTIONS(2236), 13, + ACTIONS(2088), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218655,39 +218003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94973] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(737), 1, - sym__immediate_decimal, - STATE(3075), 1, - sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(736), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [95007] = 4, - ACTIONS(3), 1, + [94130] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_else, - STATE(3076), 1, + ACTIONS(5394), 1, + sym__space, + STATE(3043), 1, sym_comment, - ACTIONS(6043), 12, + ACTIONS(5392), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218699,64 +218022,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_RBRACE, - [95031] = 15, + [94155] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(2606), 1, + anon_sym_DASH2, + ACTIONS(2622), 1, + anon_sym_LPAREN2, + ACTIONS(2624), 1, + sym__unquoted_pattern_in_record, + STATE(3044), 1, + sym_comment, + ACTIONS(2604), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(5694), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5723), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3077), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [95077] = 4, + [94184] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3078), 1, - sym_comment, - ACTIONS(2537), 2, - ts_builtin_sym_end, + ACTIONS(2456), 1, sym__space, - ACTIONS(2539), 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, - [95101] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3079), 1, + STATE(3045), 1, sym_comment, - ACTIONS(4783), 13, + ACTIONS(2458), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218770,44 +218068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95123] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACK, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6045), 1, - anon_sym_DOT, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, - aux_sym__immediate_decimal_token2, - STATE(3080), 1, - sym_comment, - STATE(3673), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [95165] = 4, + [94209] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3081), 1, - sym_comment, - ACTIONS(5856), 2, - ts_builtin_sym_end, + ACTIONS(2210), 1, sym__space, - ACTIONS(5854), 11, + STATE(3046), 1, + sym_comment, + ACTIONS(2212), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218819,91 +218087,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, - [95189] = 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94234] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(1645), 1, + sym__unquoted_pattern, + ACTIONS(2881), 1, anon_sym_DOLLAR, - STATE(722), 1, - sym__immediate_decimal, - STATE(3082), 1, + STATE(3047), 1, sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, + STATE(3932), 1, + sym__immediate_decimal, + ACTIONS(5862), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(721), 2, + ACTIONS(5864), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(776), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 4, + ACTIONS(1641), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [95223] = 15, + [94271] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6053), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3083), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [95269] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3084), 1, + STATE(3048), 1, sym_comment, - ACTIONS(2202), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2204), 11, + ACTIONS(2493), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(2491), 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, - [95293] = 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, + anon_sym_LPAREN2, + [94296] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3085), 1, - sym_comment, - ACTIONS(5889), 2, - ts_builtin_sym_end, + ACTIONS(2146), 1, sym__space, - ACTIONS(5887), 11, + STATE(3049), 1, + sym_comment, + ACTIONS(2148), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218915,15 +218156,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, - [95317] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94321] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3086), 1, - sym_comment, - ACTIONS(5965), 2, - ts_builtin_sym_end, + ACTIONS(2222), 1, sym__space, - ACTIONS(5963), 11, + STATE(3050), 1, + sym_comment, + ACTIONS(2224), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218935,12 +218177,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, - [95341] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94346] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3087), 1, + ACTIONS(2515), 1, + sym__space, + STATE(3051), 1, sym_comment, - ACTIONS(4789), 13, + ACTIONS(2517), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218954,46 +218200,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95363] = 15, + [94371] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(1613), 1, + anon_sym_DASH2, + ACTIONS(2557), 1, + anon_sym_LPAREN2, + ACTIONS(2559), 1, + sym__unquoted_pattern_in_record, + STATE(3052), 1, + sym_comment, + ACTIONS(1706), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(5694), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5725), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3088), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [95409] = 4, + [94400] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3089), 1, - sym_comment, - ACTIONS(2505), 2, - ts_builtin_sym_end, + ACTIONS(2166), 1, sym__space, - ACTIONS(2507), 11, + STATE(3053), 1, + sym_comment, + ACTIONS(2168), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219005,43 +218242,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, - [95433] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94425] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(6011), 1, sym__space, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6055), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, - aux_sym__immediate_decimal_token2, - STATE(3090), 1, - sym_comment, - STATE(4026), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6059), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3013), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [95473] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3091), 1, + STATE(3054), 1, sym_comment, - ACTIONS(2254), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2256), 11, + ACTIONS(6009), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219053,15 +218263,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, - [95497] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94450] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3092), 1, - sym_comment, - ACTIONS(5885), 2, - ts_builtin_sym_end, + ACTIONS(2090), 1, sym__space, - ACTIONS(5883), 11, + STATE(3055), 1, + sym_comment, + ACTIONS(2092), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219073,14 +218284,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, - [95521] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94475] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6063), 1, - anon_sym_DASH2, - STATE(3093), 1, + STATE(3056), 1, sym_comment, - ACTIONS(6061), 12, + ACTIONS(1728), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1726), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219090,19 +218304,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95545] = 4, - ACTIONS(103), 1, + anon_sym_LPAREN2, + [94500] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3094), 1, - sym_comment, - ACTIONS(2591), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2593), 11, + ACTIONS(2059), 1, sym__newline, + ACTIONS(6013), 1, + anon_sym_else, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(3057), 1, + sym_comment, + ACTIONS(2057), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219113,34 +218329,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, - [95569] = 4, + anon_sym_RPAREN, + [94529] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6067), 1, + ACTIONS(860), 1, anon_sym_DASH2, - STATE(3095), 1, + STATE(3058), 1, sym_comment, - ACTIONS(6065), 12, + ACTIONS(960), 13, anon_sym_EQ, sym_identifier, sym__newline, 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_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95593] = 4, - ACTIONS(3), 1, + [94554] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3096), 1, + ACTIONS(4655), 1, + sym__space, + STATE(3059), 1, sym_comment, - STATE(3211), 1, - aux_sym__repeat_newline, - ACTIONS(5590), 12, + ACTIONS(4653), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219153,17 +218371,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95617] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [94579] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3097), 1, + ACTIONS(5762), 1, + sym__newline, + STATE(824), 1, + aux_sym__pipe_separator, + STATE(3060), 1, sym_comment, - ACTIONS(5961), 2, + STATE(3375), 1, + aux_sym__repeat_newline, + ACTIONS(5765), 2, ts_builtin_sym_end, - sym__space, - ACTIONS(5959), 11, - sym__newline, anon_sym_SEMI, + ACTIONS(2180), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -219173,83 +218396,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95641] = 4, - ACTIONS(103), 1, + [94610] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3098), 1, + ACTIONS(2369), 1, + anon_sym_DASH2, + STATE(3061), 1, sym_comment, - ACTIONS(2254), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2256), 11, + ACTIONS(2367), 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, - [95665] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3099), 1, - sym_comment, - STATE(3932), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [95705] = 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94635] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6079), 1, - anon_sym_catch, - STATE(3100), 1, + ACTIONS(2369), 1, + anon_sym_DASH2, + STATE(3062), 1, sym_comment, - ACTIONS(5918), 12, - ts_builtin_sym_end, + ACTIONS(2367), 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, - [95729] = 4, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94660] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3101), 1, + STATE(3063), 1, sym_comment, - ACTIONS(2206), 2, + ACTIONS(2110), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2208), 11, + anon_sym_LPAREN2, + ACTIONS(2112), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219261,35 +218459,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, - [95753] = 3, + [94685] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(3102), 1, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + ACTIONS(6016), 1, + anon_sym_DOT, + STATE(3064), 1, sym_comment, - ACTIONS(6081), 13, + STATE(3724), 1, + sym__immediate_decimal, + ACTIONS(6018), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6020), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3637), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1590), 3, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_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, - [95775] = 4, + anon_sym_EQ_GT, + [94724] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3103), 1, - sym_comment, - ACTIONS(2210), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2212), 11, + ACTIONS(5656), 1, sym__newline, + ACTIONS(5658), 1, + sym__space, + STATE(2927), 1, + aux_sym__command_parenthesized_repeat1, + STATE(3065), 1, + sym_comment, + ACTIONS(6022), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219300,34 +218509,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, - [95799] = 4, + anon_sym_RPAREN, + [94753] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2098), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(3104), 1, + ACTIONS(1613), 1, + anon_sym_DASH2, + STATE(3066), 1, sym_comment, - ACTIONS(2096), 12, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, + ACTIONS(1706), 13, + anon_sym_EQ, + sym_identifier, sym__newline, + 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_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [95823] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94778] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5924), 1, + ACTIONS(5107), 1, + anon_sym_LPAREN2, + ACTIONS(5731), 1, anon_sym_DASH2, - STATE(3105), 1, + STATE(3067), 1, sym_comment, - ACTIONS(5920), 12, + STATE(4734), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5729), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -219337,18 +218552,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95847] = 4, + [94807] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6083), 1, - anon_sym_else, - STATE(3106), 1, + ACTIONS(2088), 1, + anon_sym_DASH2, + STATE(3068), 1, sym_comment, - ACTIONS(6043), 12, - ts_builtin_sym_end, + ACTIONS(2086), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + 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_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94832] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2367), 1, + sym__space, + STATE(3069), 1, + sym_comment, + ACTIONS(2369), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219360,16 +218594,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, - [95871] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94857] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3107), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1938), 1, + anon_sym_DASH2, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + STATE(3070), 1, sym_comment, - ACTIONS(2258), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2260), 11, + ACTIONS(1936), 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, + [94886] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2059), 1, sym__newline, + ACTIONS(6024), 1, + anon_sym_else, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(3071), 1, + sym_comment, + ACTIONS(2057), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219380,40 +218641,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95895] = 12, + anon_sym_RPAREN, + [94915] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(1590), 1, + sym__entry_separator, + ACTIONS(1606), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1794), 1, anon_sym_DOLLAR, - ACTIONS(4866), 1, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6029), 1, anon_sym_DOT, - ACTIONS(5862), 1, + ACTIONS(6031), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, + ACTIONS(6033), 1, aux_sym__immediate_decimal_token2, - STATE(3108), 1, + STATE(3072), 1, sym_comment, - STATE(3870), 1, + STATE(3577), 1, sym__immediate_decimal, - ACTIONS(1586), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, + ACTIONS(1594), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6035), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3869), 2, + STATE(3864), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [95935] = 3, + [94958] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3109), 1, + ACTIONS(2375), 1, + anon_sym_DASH2, + STATE(3073), 1, + sym_comment, + ACTIONS(2373), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + 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_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94983] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2379), 1, + anon_sym_DASH2, + STATE(3074), 1, + sym_comment, + ACTIONS(2377), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + 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_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95008] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5815), 1, + anon_sym_AT2, + ACTIONS(6039), 1, + anon_sym_DASH2, + STATE(3075), 1, sym_comment, - ACTIONS(6085), 13, + STATE(3304), 1, + sym_param_completer, + ACTIONS(6037), 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, + [95037] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3076), 1, + sym_comment, + ACTIONS(2523), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2525), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219425,17 +218757,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, - [95957] = 4, + [95061] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3110), 1, + STATE(3077), 1, sym_comment, - ACTIONS(2226), 2, + ACTIONS(2600), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2228), 11, + ACTIONS(2602), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219447,15 +218777,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, - [95981] = 4, + [95085] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3111), 1, + STATE(3078), 1, sym_comment, - ACTIONS(2230), 2, + ACTIONS(2535), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2232), 11, + ACTIONS(2537), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219467,15 +218797,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, - [96005] = 4, + [95109] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3112), 1, + STATE(3079), 1, sym_comment, - ACTIONS(2234), 2, + ACTIONS(5829), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2236), 11, + ACTIONS(5827), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219487,12 +218817,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, - [96029] = 3, - ACTIONS(3), 1, + [95133] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3113), 1, + STATE(3080), 1, sym_comment, - ACTIONS(6087), 13, + ACTIONS(2198), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2200), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219504,14 +218837,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, - [96051] = 3, - ACTIONS(3), 1, + [95157] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3114), 1, + STATE(3081), 1, sym_comment, - ACTIONS(6089), 13, + ACTIONS(2202), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2204), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219523,14 +218857,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, - [96073] = 3, - ACTIONS(3), 1, + [95181] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3115), 1, + STATE(3082), 1, sym_comment, - ACTIONS(6091), 13, + ACTIONS(2206), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2208), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219542,55 +218877,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, - [96095] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6095), 1, - anon_sym_DASH2, - STATE(3116), 1, - sym_comment, - ACTIONS(6093), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96119] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6099), 1, - anon_sym_QMARK, - ACTIONS(6101), 1, - anon_sym_DASH2, - STATE(3117), 1, - sym_comment, - ACTIONS(6097), 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, - [96145] = 3, - ACTIONS(3), 1, + [95205] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3118), 1, + STATE(3083), 1, sym_comment, - ACTIONS(6103), 13, + ACTIONS(2210), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2212), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219602,65 +218897,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, - [96167] = 12, + [95229] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1641), 1, sym__entry_separator, - ACTIONS(1776), 1, + ACTIONS(1645), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6043), 1, anon_sym_LPAREN2, - ACTIONS(5841), 1, + ACTIONS(6045), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, + ACTIONS(6047), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6105), 1, - anon_sym_DOT, - STATE(3119), 1, + STATE(3084), 1, sym_comment, - STATE(3862), 1, + STATE(3936), 1, sym__immediate_decimal, - ACTIONS(1586), 2, + ACTIONS(1643), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(5845), 2, + ACTIONS(6049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3861), 2, + STATE(4124), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [96207] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6109), 1, - anon_sym_DASH2, - STATE(3120), 1, - sym_comment, - ACTIONS(6107), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96231] = 4, + [95269] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3121), 1, + STATE(3085), 1, sym_comment, - ACTIONS(2238), 2, + ACTIONS(2222), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2240), 11, + ACTIONS(2224), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219672,15 +218945,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, - [96255] = 4, + [95293] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3122), 1, + STATE(3086), 1, sym_comment, - ACTIONS(5251), 2, + ACTIONS(2515), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5249), 11, + ACTIONS(2517), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219692,15 +218965,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, - [96279] = 4, - ACTIONS(103), 1, + [95317] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3123), 1, + STATE(3087), 1, sym_comment, - ACTIONS(5940), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5938), 11, + ACTIONS(5997), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219712,15 +218982,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, - [96303] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95339] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3124), 1, + STATE(3088), 1, sym_comment, - ACTIONS(5247), 2, + ACTIONS(2226), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5245), 11, + ACTIONS(2228), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219732,15 +219004,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, - [96327] = 4, + [95363] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3125), 1, + STATE(3089), 1, sym_comment, - ACTIONS(2242), 2, + ACTIONS(2230), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2244), 11, + ACTIONS(2232), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219752,15 +219024,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, - [96351] = 4, + [95387] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3126), 1, + STATE(3090), 1, sym_comment, - ACTIONS(6037), 2, + ACTIONS(2234), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6035), 11, + ACTIONS(2236), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219772,84 +219044,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, - [96375] = 12, + [95411] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6055), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, - aux_sym__immediate_decimal_token2, - STATE(3127), 1, + STATE(3091), 1, sym_comment, - STATE(4013), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, + ACTIONS(2238), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2240), 11, sym__newline, anon_sym_SEMI, - ACTIONS(6059), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2982), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96415] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_DASH2, - ACTIONS(5116), 1, - sym__unquoted_pattern_in_record, - STATE(3128), 1, - sym_comment, - ACTIONS(968), 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, - [96441] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6113), 1, - anon_sym_DASH2, - STATE(3129), 1, - sym_comment, - ACTIONS(6111), 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, - [96465] = 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, + [95435] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3130), 1, + STATE(3092), 1, sym_comment, - ACTIONS(2214), 2, + ACTIONS(2242), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2216), 11, + ACTIONS(2244), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219861,30 +219084,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, - [96489] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6117), 1, - anon_sym_DASH2, - STATE(3131), 1, - sym_comment, - ACTIONS(6115), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96513] = 4, + [95459] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3132), 1, + STATE(3093), 1, sym_comment, ACTIONS(2246), 2, ts_builtin_sym_end, @@ -219901,15 +219104,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, - [96537] = 4, + [95483] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3133), 1, + STATE(3094), 1, sym_comment, - ACTIONS(2615), 2, + ACTIONS(2359), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2617), 11, + ACTIONS(2361), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219921,14 +219124,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, - [96561] = 4, - ACTIONS(3), 1, + [95507] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3134), 1, + STATE(3095), 1, sym_comment, - STATE(3173), 1, - aux_sym__repeat_newline, - ACTIONS(5596), 12, + ACTIONS(2367), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2369), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219940,16 +219144,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, - [96585] = 4, + [95531] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3135), 1, + STATE(3096), 1, sym_comment, - ACTIONS(4625), 2, + ACTIONS(2367), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4623), 11, + ACTIONS(2369), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219961,12 +219164,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, - [96609] = 3, + [95555] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3136), 1, + STATE(3097), 1, sym_comment, - ACTIONS(6119), 13, + ACTIONS(6051), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219980,35 +219183,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96631] = 4, + [95577] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6123), 1, - anon_sym_DASH2, - STATE(3137), 1, + STATE(3098), 1, sym_comment, - ACTIONS(6121), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6053), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96655] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [95599] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3138), 1, + STATE(3099), 1, sym_comment, - ACTIONS(2250), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2252), 11, + ACTIONS(6055), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220020,55 +219219,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, - [96679] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95621] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6127), 1, - anon_sym_DASH2, - STATE(3139), 1, + STATE(3100), 1, sym_comment, - ACTIONS(6125), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6058), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96703] = 4, + anon_sym_RBRACE, + [95643] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6131), 1, - anon_sym_DASH2, - STATE(3140), 1, + STATE(3101), 1, sym_comment, - ACTIONS(6129), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6060), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96727] = 4, + anon_sym_RBRACE, + [95665] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3141), 1, + STATE(3102), 1, sym_comment, - ACTIONS(2262), 2, + ACTIONS(5783), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2264), 11, + ACTIONS(5781), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220080,14 +219279,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, - [96751] = 4, + [95689] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3103), 1, + sym_comment, + ACTIONS(5792), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5790), 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, + [95713] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6135), 1, + ACTIONS(6064), 1, anon_sym_DASH2, - STATE(3142), 1, + STATE(3104), 1, sym_comment, - ACTIONS(6133), 12, + ACTIONS(6062), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -220097,18 +219316,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96775] = 4, + anon_sym_LPAREN2, + [95737] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(873), 1, + sym__immediate_decimal, + STATE(3105), 1, + sym_comment, + ACTIONS(5696), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6066), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(872), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1625), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [95771] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3143), 1, + STATE(3106), 1, sym_comment, - ACTIONS(1858), 2, + ACTIONS(2373), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1860), 11, + ACTIONS(2375), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220120,32 +219364,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, - [96799] = 4, - ACTIONS(3), 1, + [95795] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6139), 1, - anon_sym_DASH2, - STATE(3144), 1, + STATE(3107), 1, sym_comment, - ACTIONS(6137), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2377), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2379), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96823] = 3, - ACTIONS(3), 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, + [95819] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3145), 1, + STATE(3108), 1, sym_comment, - ACTIONS(6141), 13, + ACTIONS(5976), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5974), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220157,14 +219404,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, - [96845] = 3, - ACTIONS(3), 1, + [95843] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3146), 1, + STATE(3109), 1, sym_comment, - ACTIONS(6143), 13, + ACTIONS(6011), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6009), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220176,17 +219424,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, - [96867] = 4, + [95867] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3147), 1, + STATE(3110), 1, sym_comment, - ACTIONS(4629), 2, + ACTIONS(5455), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4627), 11, + ACTIONS(5453), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220198,15 +219444,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, - [96891] = 4, + [95891] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3148), 1, + STATE(3111), 1, sym_comment, - ACTIONS(2607), 2, + ACTIONS(1870), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2609), 11, + ACTIONS(1872), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220218,41 +219464,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96915] = 10, + [95915] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1606), 1, sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(2881), 1, anon_sym_DOLLAR, - STATE(3149), 1, + STATE(3112), 1, sym_comment, - STATE(4120), 1, + STATE(4119), 1, + sym__immediate_decimal, + ACTIONS(6068), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6070), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(809), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1590), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [95951] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(741), 1, + sym__immediate_decimal, + STATE(3113), 1, + sym_comment, + ACTIONS(5696), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6066), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(739), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1651), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [95985] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(747), 1, sym__immediate_decimal, - ACTIONS(6145), 2, + STATE(3114), 1, + sym_comment, + ACTIONS(5696), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6066), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, + STATE(743), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1631), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [96019] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(752), 1, + sym__immediate_decimal, + STATE(3115), 1, + sym_comment, + ACTIONS(5696), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + ACTIONS(6066), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(749), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 3, + ACTIONS(1647), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [96951] = 4, + [96053] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3116), 1, + sym_comment, + ACTIONS(6072), 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, + [96075] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3150), 1, + STATE(3117), 1, sym_comment, - ACTIONS(5581), 2, + ACTIONS(2499), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5579), 11, + ACTIONS(2501), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220264,46 +219604,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, - [96975] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6149), 1, - anon_sym_PIPE, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3151), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97021] = 4, + [96099] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3152), 1, + STATE(3118), 1, sym_comment, - ACTIONS(4633), 2, + ACTIONS(2503), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4631), 11, + ACTIONS(2505), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220315,15 +219624,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, - [97045] = 4, - ACTIONS(103), 1, + [96123] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3119), 1, + sym_comment, + ACTIONS(6074), 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, + [96145] = 4, + ACTIONS(3), 1, anon_sym_POUND, + STATE(3120), 1, + sym_comment, STATE(3153), 1, + aux_sym__repeat_newline, + ACTIONS(5527), 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, + [96169] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3121), 1, sym_comment, - ACTIONS(2563), 2, + ACTIONS(2580), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2565), 11, + ACTIONS(2582), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220335,40 +219683,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, - [97069] = 9, + [96193] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(1645), 1, + sym__unquoted_pattern, + ACTIONS(2881), 1, anon_sym_DOLLAR, - STATE(739), 1, - sym__immediate_decimal, - STATE(3154), 1, + STATE(3122), 1, sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, + STATE(4125), 1, + sym__immediate_decimal, + ACTIONS(6068), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(738), 2, + ACTIONS(6070), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(776), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1671), 4, - anon_sym_if, + ACTIONS(1641), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [97103] = 4, - ACTIONS(103), 1, + [96229] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3155), 1, + STATE(3123), 1, sym_comment, - ACTIONS(2571), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2573), 11, + ACTIONS(6076), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220380,15 +219726,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, - [97127] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96251] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3156), 1, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(3124), 1, sym_comment, - ACTIONS(2218), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2220), 11, + ACTIONS(5585), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220400,54 +219747,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, - [97151] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6153), 1, - anon_sym_DASH2, - STATE(3157), 1, - sym_comment, - ACTIONS(6151), 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, - [97175] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6157), 1, - anon_sym_DASH2, - STATE(3158), 1, - sym_comment, - ACTIONS(6155), 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, - [97199] = 4, + [96275] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6159), 1, - anon_sym_else, - STATE(3159), 1, + STATE(3125), 1, sym_comment, - ACTIONS(6043), 12, + ACTIONS(6078), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220460,37 +219766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97223] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(741), 1, - sym__immediate_decimal, - STATE(3160), 1, - sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(740), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97257] = 3, + anon_sym_RBRACE, + [96297] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3161), 1, + ACTIONS(6080), 1, + anon_sym_else, + STATE(3126), 1, sym_comment, - ACTIONS(5548), 13, + ACTIONS(6082), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220502,17 +219786,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, anon_sym_RBRACE, - [97279] = 4, - ACTIONS(103), 1, + [96321] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3162), 1, + ACTIONS(5678), 1, + sym_identifier, + ACTIONS(5684), 1, + anon_sym_DOLLAR, + ACTIONS(5686), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, + anon_sym_DASH_DASH, + ACTIONS(5690), 1, + anon_sym_DASH2, + ACTIONS(5756), 1, + anon_sym_RBRACK, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2818), 1, + aux_sym_parameter_parens_repeat1, + STATE(3127), 1, sym_comment, - ACTIONS(2511), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2513), 11, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [96367] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3128), 1, + sym_comment, + ACTIONS(6084), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220524,15 +219835,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, - [97303] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96389] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3163), 1, + STATE(3129), 1, sym_comment, - ACTIONS(2194), 2, + ACTIONS(5269), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2196), 11, + ACTIONS(5267), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220544,41 +219857,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, - [97327] = 10, - ACTIONS(3), 1, + [96413] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1625), 1, + sym__space, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR, - STATE(3164), 1, - sym_comment, - STATE(4125), 1, - sym__immediate_decimal, - ACTIONS(6145), 2, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(5803), 1, aux_sym__immediate_decimal_token1, + ACTIONS(5805), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, + STATE(3130), 1, + sym_comment, + STATE(3870), 1, + sym__immediate_decimal, + ACTIONS(1627), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5807), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(3869), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1631), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97363] = 4, + [96453] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3165), 1, + STATE(3131), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(4655), 2, ts_builtin_sym_end, sym__space, - ACTIONS(868), 11, + ACTIONS(4653), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220590,15 +219905,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, - [97387] = 4, + [96477] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3166), 1, + STATE(3132), 1, sym_comment, - ACTIONS(5346), 2, + ACTIONS(5983), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5344), 11, + ACTIONS(5981), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220610,12 +219925,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, - [97411] = 3, + [96501] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3167), 1, + ACTIONS(6086), 1, + anon_sym_catch, + STATE(3133), 1, sym_comment, - ACTIONS(6161), 13, + ACTIONS(5958), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220627,17 +219945,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, - [97433] = 4, + [96525] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3168), 1, + STATE(3134), 1, sym_comment, - ACTIONS(2515), 2, + ACTIONS(5277), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2517), 11, + ACTIONS(5275), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220649,12 +219965,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97457] = 3, + [96549] = 13, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + sym__entry_separator, + ACTIONS(1594), 1, + anon_sym_RBRACK, + ACTIONS(1606), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1794), 1, + anon_sym_DOLLAR, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6088), 1, + anon_sym_DOT, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6092), 1, + aux_sym__immediate_decimal_token2, + STATE(3135), 1, + sym_comment, + STATE(3685), 1, + sym__immediate_decimal, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3805), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [96591] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(3169), 1, + ACTIONS(5678), 1, + sym_identifier, + ACTIONS(5684), 1, + anon_sym_DOLLAR, + ACTIONS(5686), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, + anon_sym_DASH_DASH, + ACTIONS(5690), 1, + anon_sym_DASH2, + ACTIONS(5760), 1, + anon_sym_RPAREN, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2818), 1, + aux_sym_parameter_parens_repeat1, + STATE(3136), 1, + sym_comment, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [96637] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3137), 1, sym_comment, - ACTIONS(6163), 13, + ACTIONS(6096), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220668,15 +220044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97479] = 4, - ACTIONS(103), 1, + [96659] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3170), 1, + STATE(3124), 1, + aux_sym__repeat_newline, + STATE(3138), 1, sym_comment, - ACTIONS(5893), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5891), 11, + ACTIONS(5581), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220688,176 +220063,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97503] = 15, + anon_sym_RPAREN, + [96683] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + STATE(3139), 1, + sym_comment, + ACTIONS(5416), 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, + [96705] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5678), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5682), 1, + anon_sym_RBRACK, + ACTIONS(5684), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5686), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5688), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5690), 1, anon_sym_DASH2, - ACTIONS(5753), 1, - anon_sym_RBRACK, - STATE(2467), 1, + STATE(2483), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2628), 1, sym__param_name, - STATE(2828), 1, + STATE(2818), 1, aux_sym_parameter_parens_repeat1, - STATE(3171), 1, + STATE(3140), 1, sym_comment, - STATE(3269), 1, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, sym_param_short_flag, - STATE(3314), 1, + STATE(3261), 1, sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, + STATE(3619), 1, sym_parameter, - [97549] = 15, + [96751] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5678), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5684), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5686), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5688), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5690), 1, anon_sym_DASH2, - ACTIONS(6165), 1, + ACTIONS(5698), 1, anon_sym_RPAREN, - STATE(2467), 1, + STATE(2483), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2628), 1, sym__param_name, - STATE(2828), 1, + STATE(2818), 1, aux_sym_parameter_parens_repeat1, - STATE(3172), 1, + STATE(3141), 1, sym_comment, - STATE(3269), 1, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, sym_param_short_flag, - STATE(3314), 1, + STATE(3261), 1, sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, + STATE(3619), 1, sym_parameter, - [97595] = 4, + [96797] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3173), 1, + ACTIONS(5891), 1, + anon_sym_DASH2, + STATE(3142), 1, sym_comment, - ACTIONS(5514), 12, + ACTIONS(5887), 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, - [97619] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5755), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3174), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97665] = 12, + [96821] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1625), 1, sym__entry_separator, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6069), 1, + ACTIONS(1794), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(6027), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(6031), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(6033), 1, aux_sym__immediate_decimal_token2, - STATE(3175), 1, + ACTIONS(6098), 1, + anon_sym_DOT, + STATE(3143), 1, sym_comment, - STATE(3928), 1, + STATE(3863), 1, sym__immediate_decimal, - ACTIONS(1598), 2, + ACTIONS(1627), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6077), 2, + ACTIONS(6035), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4079), 2, + STATE(3862), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [97705] = 4, - ACTIONS(103), 1, + [96861] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3176), 1, + ACTIONS(6102), 1, + anon_sym_DASH2, + STATE(3144), 1, sym_comment, - ACTIONS(5897), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5895), 11, + ACTIONS(6100), 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, - [97729] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96885] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3177), 1, + STATE(3145), 1, sym_comment, - ACTIONS(2198), 2, + ACTIONS(4659), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2200), 11, + ACTIONS(4657), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220869,75 +220233,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, - [97753] = 13, + [96909] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1590), 1, + sym__space, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(6167), 1, - anon_sym_DOT, - ACTIONS(6169), 1, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + ACTIONS(6104), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6171), 1, + ACTIONS(6106), 1, aux_sym__immediate_decimal_token2, - STATE(3178), 1, + STATE(3146), 1, sym_comment, - STATE(3639), 1, + STATE(4001), 1, sym__immediate_decimal, - ACTIONS(6173), 2, + ACTIONS(1594), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6108), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3809), 2, + STATE(3055), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [97795] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5706), 1, - anon_sym_PIPE, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3179), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97841] = 4, + [96949] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3180), 1, + STATE(3147), 1, sym_comment, - ACTIONS(1706), 2, + ACTIONS(4601), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1619), 11, + ACTIONS(4599), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220949,15 +220281,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, - [97865] = 4, + [96973] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3181), 1, + STATE(3148), 1, sym_comment, - ACTIONS(5901), 2, + ACTIONS(5811), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5899), 11, + ACTIONS(5809), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220969,15 +220301,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, - [97889] = 4, + [96997] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3182), 1, + STATE(3149), 1, sym_comment, - ACTIONS(2100), 2, + ACTIONS(4649), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2102), 11, + ACTIONS(4647), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220989,18 +220321,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, - [97913] = 6, + [97021] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5969), 1, - sym__newline, - ACTIONS(6175), 1, - anon_sym_else, - STATE(3183), 1, + STATE(3150), 1, sym_comment, - STATE(3186), 1, - aux_sym__repeat_newline, - ACTIONS(5972), 10, + ACTIONS(4785), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221011,18 +220338,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, - [97941] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97043] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6023), 1, - sym__newline, - ACTIONS(6177), 1, - anon_sym_else, - STATE(3184), 1, + ACTIONS(5678), 1, + sym_identifier, + ACTIONS(5684), 1, + anon_sym_DOLLAR, + ACTIONS(5686), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, + anon_sym_DASH_DASH, + ACTIONS(5690), 1, + anon_sym_DASH2, + ACTIONS(5773), 1, + anon_sym_PIPE, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2818), 1, + aux_sym_parameter_parens_repeat1, + STATE(3151), 1, sym_comment, - STATE(3188), 1, - aux_sym__repeat_newline, - ACTIONS(6026), 10, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [97089] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3152), 1, + sym_comment, + ACTIONS(2596), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2598), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221033,18 +220391,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, - [97969] = 6, + [97113] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, - sym__newline, - ACTIONS(6179), 1, - anon_sym_else, - STATE(3185), 1, - sym_comment, - STATE(3189), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(6033), 10, + STATE(3153), 1, + sym_comment, + ACTIONS(5445), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221055,18 +220410,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97997] = 6, + anon_sym_RPAREN, + [97137] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5817), 1, + ACTIONS(6112), 1, + anon_sym_DASH2, + STATE(3154), 1, + sym_comment, + ACTIONS(6110), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6181), 1, - anon_sym_else, - STATE(3186), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97161] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6116), 1, + anon_sym_DASH2, + STATE(3155), 1, sym_comment, - STATE(3190), 1, - aux_sym__repeat_newline, - ACTIONS(5820), 10, + ACTIONS(6114), 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_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97185] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__space, + ACTIONS(1645), 1, + sym__unquoted_pattern, + ACTIONS(3096), 1, + anon_sym_LPAREN2, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + ACTIONS(6104), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6106), 1, + aux_sym__immediate_decimal_token2, + STATE(3156), 1, + sym_comment, + STATE(4025), 1, + sym__immediate_decimal, + ACTIONS(1643), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6108), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3011), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [97225] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6120), 1, + anon_sym_DASH2, + STATE(3157), 1, + sym_comment, + ACTIONS(6118), 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_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97249] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6124), 1, + anon_sym_DASH2, + STATE(3158), 1, + sym_comment, + ACTIONS(6122), 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_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97273] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6128), 1, + anon_sym_DASH2, + STATE(3159), 1, + sym_comment, + ACTIONS(6126), 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_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97297] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6132), 1, + anon_sym_DASH2, + STATE(3160), 1, + sym_comment, + ACTIONS(6130), 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_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97321] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6136), 1, + anon_sym_DASH2, + STATE(3161), 1, + sym_comment, + ACTIONS(6134), 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_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97345] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6140), 1, + sym__space, + STATE(3162), 1, + sym_comment, + ACTIONS(6138), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221077,18 +220598,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, - [98025] = 6, + anon_sym_RPAREN, + [97369] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5950), 1, + ACTIONS(5678), 1, + sym_identifier, + ACTIONS(5684), 1, + anon_sym_DOLLAR, + ACTIONS(5686), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, + anon_sym_DASH_DASH, + ACTIONS(5690), 1, + anon_sym_DASH2, + ACTIONS(6142), 1, + anon_sym_RBRACK, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2818), 1, + aux_sym_parameter_parens_repeat1, + STATE(3163), 1, + sym_comment, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [97415] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6146), 1, + anon_sym_QMARK, + ACTIONS(6148), 1, + anon_sym_DASH2, + STATE(3164), 1, + sym_comment, + ACTIONS(6144), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6183), 1, - anon_sym_else, - STATE(3187), 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, + [97441] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5678), 1, + sym_identifier, + ACTIONS(5684), 1, + anon_sym_DOLLAR, + ACTIONS(5686), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, + anon_sym_DASH_DASH, + ACTIONS(5690), 1, + anon_sym_DASH2, + ACTIONS(6150), 1, + anon_sym_RPAREN, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2818), 1, + aux_sym_parameter_parens_repeat1, + STATE(3165), 1, sym_comment, - STATE(3191), 1, - aux_sym__repeat_newline, - ACTIONS(5953), 10, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [97487] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3166), 1, + sym_comment, + ACTIONS(4791), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221099,18 +220699,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, - [98053] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97509] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5794), 1, - sym__newline, - ACTIONS(6185), 1, - anon_sym_else, - STATE(3188), 1, + STATE(3167), 1, sym_comment, - STATE(3192), 1, - aux_sym__repeat_newline, - ACTIONS(5797), 10, + ACTIONS(960), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(860), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221121,18 +220721,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, - [98081] = 6, - ACTIONS(3), 1, + [97533] = 13, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5849), 1, - sym__newline, - ACTIONS(6187), 1, - anon_sym_else, - STATE(3189), 1, + ACTIONS(1590), 1, + sym__entry_separator, + ACTIONS(1594), 1, + anon_sym_RBRACE, + ACTIONS(1606), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1794), 1, + anon_sym_DOLLAR, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6152), 1, + anon_sym_DOT, + ACTIONS(6154), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6156), 1, + aux_sym__immediate_decimal_token2, + STATE(3168), 1, sym_comment, - STATE(3193), 1, - aux_sym__repeat_newline, - ACTIONS(5852), 10, + STATE(3672), 1, + sym__immediate_decimal, + ACTIONS(6158), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3805), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [97575] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3169), 1, + sym_comment, + ACTIONS(1706), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1613), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221143,18 +220770,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, - [98109] = 6, - ACTIONS(3), 1, + [97599] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6189), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3190), 1, + STATE(3170), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(2086), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2088), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221165,18 +220790,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, - [98137] = 6, + [97623] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5998), 1, + ACTIONS(860), 1, + anon_sym_DASH2, + ACTIONS(5117), 1, + sym__unquoted_pattern_in_record, + STATE(3171), 1, + sym_comment, + ACTIONS(960), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6192), 1, - anon_sym_else, - STATE(3191), 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, + [97649] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6162), 1, + anon_sym_DASH2, + STATE(3172), 1, sym_comment, - STATE(3194), 1, - aux_sym__repeat_newline, - ACTIONS(6001), 10, + ACTIONS(6160), 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, + [97673] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3173), 1, + sym_comment, + ACTIONS(6164), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221187,18 +220848,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, - [98165] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97695] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6194), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3192), 1, + STATE(3174), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(2495), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2497), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221209,18 +220870,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, - [98193] = 6, - ACTIONS(3), 1, + [97719] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6197), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3193), 1, + STATE(3175), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(2561), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2563), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221231,18 +220890,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, - [98221] = 6, - ACTIONS(3), 1, + [97743] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6200), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3194), 1, + STATE(3176), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(2118), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2120), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221253,15 +220910,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, - [98249] = 4, + [97767] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3195), 1, + STATE(3177), 1, sym_comment, - ACTIONS(2076), 2, + ACTIONS(5858), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2078), 11, + ACTIONS(5856), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221273,15 +220930,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, - [98273] = 4, - ACTIONS(103), 1, + [97791] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3196), 1, + ACTIONS(6166), 1, + anon_sym_else, + STATE(3178), 1, sym_comment, - ACTIONS(5905), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5903), 11, + ACTIONS(6082), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221293,15 +220949,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, - [98297] = 4, + anon_sym_RPAREN, + [97815] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2066), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(3179), 1, + sym_comment, + ACTIONS(2064), 12, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + sym__newline, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [97839] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3197), 1, + ACTIONS(1625), 1, + sym__entry_separator, + ACTIONS(1794), 1, + anon_sym_DOLLAR, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6092), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6098), 1, + anon_sym_DOT, + STATE(3180), 1, sym_comment, - ACTIONS(2222), 2, + STATE(3804), 1, + sym__immediate_decimal, + ACTIONS(1627), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3803), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [97879] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3181), 1, + sym_comment, + ACTIONS(5394), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2224), 11, + ACTIONS(5392), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221313,46 +221018,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98321] = 15, + [97903] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5678), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5684), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5686), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5688), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5690), 1, anon_sym_DASH2, - ACTIONS(6203), 1, + ACTIONS(6168), 1, anon_sym_RBRACK, - STATE(2467), 1, + STATE(2483), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2628), 1, sym__param_name, - STATE(2828), 1, + STATE(2818), 1, aux_sym_parameter_parens_repeat1, - STATE(3198), 1, + STATE(3182), 1, sym_comment, - STATE(3269), 1, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, sym_param_short_flag, - STATE(3314), 1, + STATE(3261), 1, sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, + STATE(3619), 1, sym_parameter, - [98367] = 4, + [97949] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3199), 1, + STATE(3183), 1, sym_comment, - ACTIONS(2120), 2, + ACTIONS(5868), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2122), 11, + ACTIONS(5866), 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, + [97973] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6170), 1, + anon_sym_else, + STATE(3184), 1, + sym_comment, + ACTIONS(6082), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221364,43 +221089,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98391] = 12, + [97997] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5678), 1, + sym_identifier, + ACTIONS(5684), 1, + anon_sym_DOLLAR, + ACTIONS(5686), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, + anon_sym_DASH_DASH, + ACTIONS(5690), 1, + anon_sym_DASH2, + ACTIONS(6172), 1, + anon_sym_RPAREN, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2818), 1, + aux_sym_parameter_parens_repeat1, + STATE(3185), 1, + sym_comment, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [98043] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1590), 1, sym__entry_separator, - ACTIONS(1776), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6043), 1, anon_sym_LPAREN2, - ACTIONS(6047), 1, + ACTIONS(6045), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, + ACTIONS(6047), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6105), 1, - anon_sym_DOT, - STATE(3200), 1, + STATE(3186), 1, sym_comment, - STATE(3808), 1, + STATE(3931), 1, sym__immediate_decimal, - ACTIONS(1586), 2, + ACTIONS(1594), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, + anon_sym_DOT_DOT, + ACTIONS(6049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3807), 2, + STATE(4077), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [98431] = 4, + [98083] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3201), 1, + STATE(3187), 1, sym_comment, - ACTIONS(2152), 2, + ACTIONS(5881), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2154), 11, + ACTIONS(5879), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221412,46 +221168,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, - [98455] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6205), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3202), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [98501] = 4, + [98107] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3203), 1, + STATE(3188), 1, sym_comment, - ACTIONS(2112), 2, + ACTIONS(5885), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2114), 11, + ACTIONS(5883), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221463,15 +221188,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, - [98525] = 4, + [98131] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3204), 1, + STATE(3189), 1, sym_comment, - ACTIONS(4651), 2, + ACTIONS(1858), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4649), 11, + ACTIONS(1860), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221483,15 +221208,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, - [98549] = 4, + [98155] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3205), 1, + STATE(3190), 1, sym_comment, - ACTIONS(2268), 2, + ACTIONS(2654), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2270), 11, + ACTIONS(2656), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221503,15 +221228,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, - [98573] = 4, + [98179] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3206), 1, + STATE(3191), 1, sym_comment, - ACTIONS(2272), 2, + ACTIONS(2539), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2274), 11, + ACTIONS(2541), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221523,13 +221248,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98597] = 3, + [98203] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3207), 1, + ACTIONS(5874), 1, + sym__newline, + ACTIONS(6174), 1, + anon_sym_else, + STATE(3192), 1, sym_comment, - ACTIONS(6207), 13, + STATE(3195), 1, + aux_sym__repeat_newline, + ACTIONS(5877), 10, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [98231] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5918), 1, + sym__newline, + ACTIONS(6176), 1, + anon_sym_else, + STATE(3193), 1, + sym_comment, + STATE(3197), 1, + aux_sym__repeat_newline, + ACTIONS(5921), 10, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [98259] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5925), 1, sym__newline, + ACTIONS(6178), 1, + anon_sym_else, + STATE(3194), 1, + sym_comment, + STATE(3198), 1, + aux_sym__repeat_newline, + ACTIONS(5928), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221540,17 +221314,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, - [98619] = 4, - ACTIONS(103), 1, + [98287] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6212), 1, - sym__space, - STATE(3208), 1, - sym_comment, - ACTIONS(6210), 12, + ACTIONS(5939), 1, sym__newline, + ACTIONS(6180), 1, + anon_sym_else, + STATE(3195), 1, + sym_comment, + STATE(3199), 1, + aux_sym__repeat_newline, + ACTIONS(5942), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221561,14 +221336,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, - [98643] = 3, + [98315] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3209), 1, - sym_comment, - ACTIONS(5885), 13, + ACTIONS(5962), 1, sym__newline, + ACTIONS(6182), 1, + anon_sym_else, + STATE(3196), 1, + sym_comment, + STATE(3200), 1, + aux_sym__repeat_newline, + ACTIONS(5965), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221579,18 +221358,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, - [98665] = 4, - ACTIONS(103), 1, + [98343] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3210), 1, - sym_comment, - ACTIONS(5914), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5912), 11, + ACTIONS(5911), 1, sym__newline, + ACTIONS(6184), 1, + anon_sym_else, + STATE(3197), 1, + sym_comment, + STATE(3201), 1, + aux_sym__repeat_newline, + ACTIONS(5914), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221601,15 +221380,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, - [98689] = 4, + [98371] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3211), 1, - sym_comment, - ACTIONS(5529), 12, + ACTIONS(5932), 1, sym__newline, + ACTIONS(6186), 1, + anon_sym_else, + STATE(3198), 1, + sym_comment, + STATE(3202), 1, + aux_sym__repeat_newline, + ACTIONS(5935), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221620,17 +221402,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, - [98713] = 4, - ACTIONS(103), 1, + [98399] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3212), 1, - sym_comment, - ACTIONS(2519), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2521), 11, + ACTIONS(2059), 1, sym__newline, + ACTIONS(6188), 1, + anon_sym_else, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(3199), 1, + sym_comment, + ACTIONS(2057), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221641,16 +221424,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, - [98737] = 4, - ACTIONS(103), 1, + [98427] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3213), 1, - sym_comment, - ACTIONS(1866), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1868), 11, + ACTIONS(5990), 1, sym__newline, + ACTIONS(6191), 1, + anon_sym_else, + STATE(3200), 1, + sym_comment, + STATE(3203), 1, + aux_sym__repeat_newline, + ACTIONS(5993), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221661,18 +221446,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, - [98761] = 6, + [98455] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5969), 1, + ACTIONS(2059), 1, sym__newline, - ACTIONS(6214), 1, + ACTIONS(6193), 1, anon_sym_else, - STATE(3214), 1, - sym_comment, - STATE(3319), 1, + STATE(656), 1, aux_sym__repeat_newline, - ACTIONS(5972), 9, + STATE(3201), 1, + sym_comment, + ACTIONS(2057), 10, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221682,13 +221468,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, - [98788] = 3, + [98483] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3215), 1, - sym_comment, - ACTIONS(6216), 12, + ACTIONS(2059), 1, sym__newline, + ACTIONS(6196), 1, + anon_sym_else, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(3202), 1, + sym_comment, + ACTIONS(2057), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221699,41 +221490,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, - [98809] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6218), 1, - anon_sym_RBRACK, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3216), 1, - sym_comment, - STATE(3603), 1, - sym__immediate_decimal, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3860), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [98848] = 3, + [98511] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3217), 1, - sym_comment, - ACTIONS(6224), 12, + ACTIONS(2059), 1, sym__newline, + ACTIONS(6199), 1, + anon_sym_else, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(3203), 1, + sym_comment, + ACTIONS(2057), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221744,13 +221512,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, - [98869] = 3, - ACTIONS(3), 1, + [98539] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3218), 1, + STATE(3204), 1, sym_comment, - ACTIONS(6226), 12, + ACTIONS(2363), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2365), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221762,53 +221532,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, - [98890] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6230), 1, - anon_sym_DASH2, - STATE(3219), 1, - sym_comment, - ACTIONS(6228), 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, - [98913] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_DASH2, - STATE(3220), 1, - sym_comment, - ACTIONS(2246), 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, - [98936] = 4, + [98563] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, + ACTIONS(6204), 1, anon_sym_DASH2, - STATE(3221), 1, + STATE(3205), 1, sym_comment, - ACTIONS(2250), 11, + ACTIONS(6202), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -221818,14 +221549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98959] = 3, - ACTIONS(3), 1, + [98587] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3222), 1, + STATE(3206), 1, sym_comment, - ACTIONS(6232), 12, + ACTIONS(2456), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2458), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221837,13 +221572,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, - [98980] = 3, - ACTIONS(3), 1, + [98611] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3223), 1, + STATE(3207), 1, sym_comment, - ACTIONS(6234), 12, + ACTIONS(2146), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2148), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221855,13 +221592,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, - [99001] = 3, - ACTIONS(3), 1, + [98635] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3224), 1, + STATE(3208), 1, sym_comment, - ACTIONS(6236), 12, + ACTIONS(2166), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2168), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221873,13 +221612,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, - [99022] = 3, - ACTIONS(3), 1, + [98659] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3225), 1, + STATE(3209), 1, sym_comment, - ACTIONS(6238), 12, + ACTIONS(2090), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2092), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221891,59 +221632,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99043] = 4, + [98683] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, + ACTIONS(6208), 1, anon_sym_DASH2, - STATE(3226), 1, + STATE(3210), 1, sym_comment, - ACTIONS(2214), 11, + ACTIONS(6206), 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, - [99066] = 6, + [98707] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(3227), 1, + ACTIONS(6212), 1, + anon_sym_DASH2, + STATE(3211), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(2303), 9, + ACTIONS(6210), 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, - [99093] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98731] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(3228), 1, + ACTIONS(5678), 1, + sym_identifier, + ACTIONS(5684), 1, + anon_sym_DOLLAR, + ACTIONS(5686), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5688), 1, + anon_sym_DASH_DASH, + ACTIONS(5690), 1, + anon_sym_DASH2, + ACTIONS(6214), 1, + anon_sym_PIPE, + STATE(2483), 1, + sym_param_long_flag, + STATE(2628), 1, + sym__param_name, + STATE(2818), 1, + aux_sym_parameter_parens_repeat1, + STATE(3212), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(2303), 9, + STATE(3221), 1, + sym_param_opt, + STATE(3224), 1, + sym_param_short_flag, + STATE(3261), 1, + sym_param_rest, + STATE(3619), 1, + sym_parameter, + [98777] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3213), 1, + sym_comment, + ACTIONS(2182), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2184), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221953,13 +221723,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, - [99120] = 3, - ACTIONS(3), 1, + [98801] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3229), 1, + STATE(3214), 1, sym_comment, - ACTIONS(6085), 12, + ACTIONS(5997), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5995), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221971,12 +221743,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, - [99141] = 3, + [98825] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3230), 1, + STATE(3215), 1, sym_comment, - ACTIONS(6240), 12, + ACTIONS(6216), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221989,14 +221761,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99162] = 4, + [98846] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5715), 1, + ACTIONS(6220), 1, anon_sym_DASH2, - STATE(3231), 1, + STATE(3216), 1, sym_comment, - ACTIONS(5713), 11, + ACTIONS(6218), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222008,12 +221780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99185] = 3, + [98869] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3232), 1, + STATE(3217), 1, sym_comment, - ACTIONS(6242), 12, + ACTIONS(6222), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222026,201 +221798,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99206] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6246), 1, - anon_sym_DASH2, - STATE(3233), 1, - sym_comment, - ACTIONS(6244), 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, - [99229] = 4, + [98890] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DASH2, - STATE(3234), 1, + STATE(3218), 1, sym_comment, - ACTIONS(5640), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6224), 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, - [99252] = 11, + [98911] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1667), 1, + ACTIONS(1590), 1, sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3235), 1, - sym_comment, - STATE(4116), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, + ACTIONS(1594), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4115), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99289] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1671), 1, - sym__entry_separator, - ACTIONS(5837), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6027), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(6226), 1, anon_sym_DOLLAR, - ACTIONS(6250), 1, + ACTIONS(6228), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, + ACTIONS(6230), 1, aux_sym__immediate_decimal_token2, - STATE(3236), 1, + STATE(3219), 1, sym_comment, - STATE(4119), 1, + STATE(4155), 1, sym__immediate_decimal, - ACTIONS(1673), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, + ACTIONS(6232), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4117), 2, + STATE(4077), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [99326] = 11, + [98950] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1675), 1, + ACTIONS(1647), 1, sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(6250), 1, + ACTIONS(6043), 1, + anon_sym_LPAREN2, + ACTIONS(6045), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, + ACTIONS(6047), 1, aux_sym__immediate_decimal_token2, - STATE(3237), 1, + STATE(3220), 1, sym_comment, STATE(4122), 1, sym__immediate_decimal, - ACTIONS(1677), 2, + ACTIONS(1649), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, + anon_sym_DOT_DOT, + ACTIONS(6049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, STATE(4121), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [99363] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3008), 1, - sym__immediate_decimal, - STATE(3238), 1, - sym_comment, - ACTIONS(1669), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3006), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99400] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_DASH2, - STATE(3239), 1, - sym_comment, - ACTIONS(6258), 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, - [99423] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1671), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3010), 1, - sym__immediate_decimal, - STATE(3240), 1, - sym_comment, - ACTIONS(1673), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99460] = 4, + [98987] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6260), 1, + ACTIONS(6236), 1, anon_sym_DASH2, - STATE(3241), 1, + STATE(3221), 1, sym_comment, - ACTIONS(6258), 11, + ACTIONS(6234), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222232,52 +221888,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99483] = 4, + [99010] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6264), 1, - anon_sym_DASH2, - STATE(3242), 1, + STATE(3222), 1, sym_comment, - ACTIONS(6262), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6238), 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, - [99506] = 4, + [99031] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6268), 1, - anon_sym_DASH2, - STATE(3243), 1, + STATE(3223), 1, sym_comment, - ACTIONS(6266), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6240), 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, - [99529] = 4, + [99052] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6272), 1, + ACTIONS(6244), 1, anon_sym_DASH2, - STATE(3244), 1, + STATE(3224), 1, sym_comment, - ACTIONS(6270), 11, + ACTIONS(6242), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222289,12 +221943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99552] = 3, + [99075] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3245), 1, + STATE(3225), 1, sym_comment, - ACTIONS(6274), 12, + ACTIONS(6078), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222306,13 +221961,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, - [99573] = 3, + [99096] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3246), 1, + STATE(3226), 1, sym_comment, - ACTIONS(6276), 12, + ACTIONS(6246), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222325,12 +221979,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99594] = 3, + [99117] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3247), 1, + STATE(3227), 1, sym_comment, - ACTIONS(6278), 12, + ACTIONS(6058), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222342,34 +221997,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99615] = 6, + [99138] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6280), 1, - anon_sym_DOT, - ACTIONS(6282), 1, - aux_sym__immediate_decimal_token5, - STATE(3248), 1, + ACTIONS(6250), 1, + anon_sym_DASH2, + STATE(3228), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, + ACTIONS(6248), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [99642] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [99161] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__entry_separator, + ACTIONS(1643), 1, + anon_sym_RBRACE, + ACTIONS(1645), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6226), 1, + anon_sym_DOLLAR, + ACTIONS(6252), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6254), 1, + aux_sym__immediate_decimal_token2, + STATE(3229), 1, + sym_comment, + STATE(4208), 1, + sym__immediate_decimal, + ACTIONS(6256), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4124), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [99200] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3249), 1, + STATE(3230), 1, sym_comment, - ACTIONS(6284), 12, + ACTIONS(6258), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222382,12 +222061,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99663] = 3, + [99221] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3250), 1, + STATE(3231), 1, sym_comment, - ACTIONS(6286), 12, + ACTIONS(6051), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222399,32 +222079,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, - [99684] = 4, + [99242] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6290), 1, - anon_sym_DASH2, - STATE(3251), 1, + STATE(3232), 1, sym_comment, - ACTIONS(6288), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6053), 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, - [99707] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [99263] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3252), 1, + STATE(3233), 1, sym_comment, - ACTIONS(4789), 12, + ACTIONS(6060), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -222437,54 +222115,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99728] = 6, + [99284] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6292), 1, + STATE(3234), 1, + sym_comment, + ACTIONS(6055), 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, + [99305] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6260), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6294), 1, + ACTIONS(6262), 1, aux_sym__immediate_decimal_token5, - STATE(3253), 1, + STATE(3235), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(739), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_list, + ACTIONS(741), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [99755] = 6, + sym__entry_separator, + [99332] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6296), 1, - sym__newline, - ACTIONS(6299), 1, + ACTIONS(1590), 1, + anon_sym_LBRACE, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + ACTIONS(6264), 1, + anon_sym_DOT, + STATE(3236), 1, + sym_comment, + STATE(3899), 1, + sym__immediate_decimal, + ACTIONS(6266), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6268), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4184), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [99369] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6272), 1, anon_sym_DASH2, - STATE(3254), 1, + STATE(3237), 1, sym_comment, - ACTIONS(2096), 2, + ACTIONS(6270), 11, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4376), 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, - [99782] = 3, + [99392] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3255), 1, + STATE(3238), 1, sym_comment, - ACTIONS(6301), 12, + ACTIONS(6274), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222497,31 +222217,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99803] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6305), 1, - anon_sym_DASH2, - STATE(3256), 1, - sym_comment, - ACTIONS(6303), 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, - [99826] = 3, + [99413] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3257), 1, + STATE(3239), 1, sym_comment, - ACTIONS(6307), 12, + ACTIONS(6276), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222534,13 +222235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99847] = 3, + [99434] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3258), 1, + STATE(3240), 1, sym_comment, - ACTIONS(6163), 12, - ts_builtin_sym_end, + ACTIONS(6278), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222552,12 +222252,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, - [99868] = 3, + anon_sym_RPAREN, + [99455] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1651), 1, + sym__entry_separator, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6226), 1, + anon_sym_DOLLAR, + ACTIONS(6280), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6282), 1, + aux_sym__immediate_decimal_token2, + STATE(3241), 1, + sym_comment, + STATE(4116), 1, + sym__immediate_decimal, + ACTIONS(1653), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4115), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [99492] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3259), 1, + STATE(3242), 1, sym_comment, - ACTIONS(6309), 12, + ACTIONS(6284), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222570,31 +222297,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99889] = 4, + [99513] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5721), 1, - anon_sym_DASH2, - STATE(3260), 1, + STATE(3243), 1, sym_comment, - ACTIONS(5719), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6286), 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, - [99912] = 3, + [99534] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3261), 1, + STATE(3244), 1, sym_comment, - ACTIONS(6311), 12, + ACTIONS(6288), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222607,12 +222333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99933] = 3, + [99555] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3262), 1, + STATE(3245), 1, sym_comment, - ACTIONS(6313), 12, + ACTIONS(6290), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222625,12 +222351,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99954] = 3, + [99576] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3263), 1, + STATE(3246), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6292), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222643,38 +222369,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99975] = 11, + [99597] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5749), 1, + anon_sym_DASH2, + STATE(3247), 1, + sym_comment, + ACTIONS(5747), 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, + [99620] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1675), 1, - sym__space, - ACTIONS(3212), 1, + ACTIONS(1631), 1, + sym__entry_separator, + ACTIONS(6027), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(6226), 1, anon_sym_DOLLAR, - ACTIONS(6254), 1, + ACTIONS(6280), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, + ACTIONS(6282), 1, aux_sym__immediate_decimal_token2, - STATE(3012), 1, - sym__immediate_decimal, - STATE(3264), 1, + STATE(3248), 1, sym_comment, - ACTIONS(1677), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, + STATE(4120), 1, + sym__immediate_decimal, + ACTIONS(1633), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6094), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3011), 2, + STATE(4118), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100012] = 3, + [99657] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6294), 1, + anon_sym_DOT, + ACTIONS(6296), 1, + aux_sym__immediate_decimal_token5, + STATE(3249), 1, + sym_comment, + ACTIONS(747), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [99684] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3265), 1, + STATE(3250), 1, sym_comment, - ACTIONS(6317), 12, + ACTIONS(4809), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222687,13 +222453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100033] = 3, + [99705] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3266), 1, + STATE(3251), 1, sym_comment, - ACTIONS(6081), 12, - ts_builtin_sym_end, + ACTIONS(6298), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222705,57 +222470,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, - [100054] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + [99726] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6319), 1, - anon_sym_DOT, - ACTIONS(6321), 1, - aux_sym__immediate_decimal_token5, - STATE(3267), 1, + STATE(3252), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(6300), 12, sym__newline, anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [100081] = 7, - ACTIONS(103), 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, + [99747] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1452), 1, - anon_sym_BANG, - ACTIONS(6323), 1, - anon_sym_QMARK2, - STATE(351), 1, - sym__path_suffix, - STATE(3268), 1, + STATE(3253), 1, sym_comment, - ACTIONS(1448), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1446), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [100110] = 4, + ACTIONS(6074), 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, + [99768] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6327), 1, + ACTIONS(6304), 1, anon_sym_DASH2, - STATE(3269), 1, + STATE(3254), 1, sym_comment, - ACTIONS(6325), 11, + ACTIONS(6302), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222767,52 +222526,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100133] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6329), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6331), 1, - aux_sym__immediate_decimal_token5, - STATE(3270), 1, - sym_comment, - ACTIONS(747), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [100160] = 4, + [99791] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, + ACTIONS(2062), 1, anon_sym_DASH2, - STATE(3271), 1, + ACTIONS(6306), 1, + sym__newline, + STATE(3255), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(2206), 11, + ACTIONS(2057), 9, 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, - [100183] = 3, + [99816] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3272), 1, + STATE(3256), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6309), 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, + [99837] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3257), 1, + sym_comment, + ACTIONS(6311), 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, + [99858] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3258), 1, + sym_comment, + ACTIONS(4807), 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, + [99879] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3259), 1, + sym_comment, + ACTIONS(6313), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222825,41 +222618,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100204] = 12, + [99900] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(1794), 1, anon_sym_DOLLAR, - ACTIONS(6335), 1, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6031), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, + ACTIONS(6033), 1, aux_sym__immediate_decimal_token2, - STATE(3273), 1, + ACTIONS(6315), 1, + anon_sym_RBRACK, + ACTIONS(6317), 1, + anon_sym_DOLLAR2, + ACTIONS(6319), 1, + aux_sym__unquoted_in_list_token2, + STATE(3260), 1, sym_comment, - STATE(4177), 1, + STATE(3579), 1, sym__immediate_decimal, - ACTIONS(6339), 2, + ACTIONS(6035), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4079), 2, + STATE(3861), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100243] = 4, + [99939] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2212), 1, + ACTIONS(6323), 1, anon_sym_DASH2, - STATE(3274), 1, + STATE(3261), 1, sym_comment, - ACTIONS(2210), 11, + ACTIONS(6321), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222871,78 +222664,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100266] = 4, + [99962] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_DASH2, - STATE(3275), 1, + STATE(3262), 1, sym_comment, - ACTIONS(2226), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6325), 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, - [100289] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6341), 1, - anon_sym_DOT, - ACTIONS(6343), 1, - aux_sym__immediate_decimal_token5, - STATE(3276), 1, - sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [100316] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3277), 1, - sym_comment, - STATE(4075), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100353] = 3, + [99983] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3278), 1, + STATE(3263), 1, sym_comment, - ACTIONS(6143), 12, + ACTIONS(5416), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -222955,31 +222700,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, - [100374] = 4, + [100004] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2232), 1, - anon_sym_DASH2, - STATE(3279), 1, + STATE(3264), 1, sym_comment, - ACTIONS(2230), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6327), 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, - [100397] = 3, + [100025] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3280), 1, + STATE(3265), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(6329), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222992,15 +222736,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100418] = 3, + [100046] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3281), 1, + STATE(3266), 1, sym_comment, - ACTIONS(6087), 12, + ACTIONS(6084), 12, ts_builtin_sym_end, sym__newline, - anon_sym_SEMI, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [100067] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2905), 1, + sym__newline, + STATE(713), 1, + aux_sym__pipe_separator, + STATE(3267), 1, + sym_comment, + STATE(3375), 1, + aux_sym__repeat_newline, + ACTIONS(2180), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223010,13 +222775,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, - [100439] = 3, + [100094] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3282), 1, + STATE(3268), 1, sym_comment, - ACTIONS(6089), 12, - ts_builtin_sym_end, + ACTIONS(6331), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223028,13 +222792,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, - [100460] = 3, + anon_sym_RPAREN, + [100115] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3283), 1, + STATE(3269), 1, sym_comment, - ACTIONS(6091), 12, - ts_builtin_sym_end, + ACTIONS(6333), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223046,14 +222810,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, - [100481] = 4, + anon_sym_RPAREN, + [100136] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + sym__entry_separator, + ACTIONS(1594), 1, + anon_sym_RBRACE, + ACTIONS(1794), 1, + anon_sym_DOLLAR, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6090), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6092), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6335), 1, + anon_sym_DOT, + STATE(3270), 1, + sym_comment, + STATE(3939), 1, + sym__immediate_decimal, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3805), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100175] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6349), 1, + ACTIONS(2120), 1, anon_sym_DASH2, - STATE(3284), 1, + STATE(3271), 1, sym_comment, - ACTIONS(6347), 11, + ACTIONS(2118), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223065,59 +222857,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100504] = 4, + [100198] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_DOLLAR, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6031), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6033), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6317), 1, + anon_sym_DOLLAR2, + ACTIONS(6319), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6337), 1, + anon_sym_RBRACK, + STATE(3272), 1, + sym_comment, + STATE(3579), 1, + sym__immediate_decimal, + ACTIONS(6035), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3861), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100237] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_DASH2, - STATE(3285), 1, + STATE(3273), 1, sym_comment, - ACTIONS(2234), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6339), 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, - [100527] = 12, + [100258] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6343), 1, + aux_sym__immediate_decimal_token5, + STATE(3274), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [100285] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(1590), 1, sym__entry_separator, - ACTIONS(1633), 1, + ACTIONS(1594), 1, anon_sym_RBRACE, - ACTIONS(1639), 1, + ACTIONS(1606), 1, sym__unquoted_pattern_in_record, - ACTIONS(5837), 1, + ACTIONS(6027), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(6226), 1, anon_sym_DOLLAR, - ACTIONS(6335), 1, + ACTIONS(6252), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, + ACTIONS(6254), 1, aux_sym__immediate_decimal_token2, - STATE(3286), 1, + STATE(3275), 1, sym_comment, - STATE(4208), 1, + STATE(4186), 1, sym__immediate_decimal, - ACTIONS(6339), 2, + ACTIONS(6256), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4123), 2, + STATE(4077), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100566] = 3, + [100324] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3287), 1, + STATE(3276), 1, sym_comment, - ACTIONS(5548), 12, - ts_builtin_sym_end, + ACTIONS(6345), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223129,13 +222967,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, - [100587] = 3, + anon_sym_RPAREN, + [100345] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3288), 1, + STATE(3277), 1, sym_comment, - ACTIONS(6103), 12, - ts_builtin_sym_end, + ACTIONS(6347), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223147,12 +222985,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, - [100608] = 3, + anon_sym_RPAREN, + [100366] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3289), 1, + STATE(3278), 1, sym_comment, - ACTIONS(6351), 12, + ACTIONS(4785), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223164,15 +223004,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, - [100629] = 4, + [100387] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(6351), 1, anon_sym_DASH2, - STATE(3290), 1, + STATE(3279), 1, sym_comment, - ACTIONS(2152), 11, + ACTIONS(6349), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223184,14 +223023,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100652] = 3, - ACTIONS(3), 1, + [100410] = 11, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3291), 1, + ACTIONS(1647), 1, + sym__entry_separator, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6226), 1, + anon_sym_DOLLAR, + ACTIONS(6280), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6282), 1, + aux_sym__immediate_decimal_token2, + STATE(3280), 1, sym_comment, - ACTIONS(6353), 12, + STATE(4122), 1, + sym__immediate_decimal, + ACTIONS(1649), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4121), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100447] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5874), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6353), 1, + anon_sym_else, + STATE(3281), 1, + sym_comment, + STATE(3287), 1, + aux_sym__repeat_newline, + ACTIONS(5877), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223201,62 +223070,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, - [100673] = 11, + [100474] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1625), 1, sym__space, - ACTIONS(3212), 1, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR, - ACTIONS(6254), 1, + ACTIONS(6355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, + ACTIONS(6357), 1, aux_sym__immediate_decimal_token2, - STATE(2981), 1, + STATE(3053), 1, sym__immediate_decimal, - STATE(3292), 1, + STATE(3282), 1, sym_comment, - ACTIONS(1586), 2, + ACTIONS(1627), 2, sym__newline, anon_sym_SEMI, - ACTIONS(5866), 2, + ACTIONS(5807), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2979), 2, + STATE(3049), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100710] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(368), 1, - sym_cell_path, - STATE(3293), 1, - sym_comment, - STATE(3378), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1432), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [100741] = 3, + [100511] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3294), 1, + STATE(3283), 1, sym_comment, - ACTIONS(6357), 12, + ACTIONS(4791), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223268,13 +223114,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, - [100762] = 3, + [100532] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3295), 1, + STATE(3284), 1, sym_comment, - ACTIONS(4803), 12, + ACTIONS(5997), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223286,15 +223132,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, - [100783] = 3, + [100553] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3296), 1, - sym_comment, - ACTIONS(6359), 12, + ACTIONS(5918), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6359), 1, + anon_sym_else, + STATE(3285), 1, + sym_comment, + STATE(3289), 1, + aux_sym__repeat_newline, + ACTIONS(5921), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223304,15 +223153,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, - [100804] = 3, + [100580] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3297), 1, - sym_comment, - ACTIONS(6361), 12, + ACTIONS(5925), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6361), 1, + anon_sym_else, + STATE(3286), 1, + sym_comment, + STATE(3290), 1, + aux_sym__repeat_newline, + ACTIONS(5928), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223322,36 +223174,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, - [100825] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6363), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6365), 1, - aux_sym__immediate_decimal_token5, - STATE(3298), 1, - sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [100852] = 3, + [100607] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3299), 1, - sym_comment, - ACTIONS(6367), 12, + ACTIONS(5939), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6363), 1, + anon_sym_else, + STATE(3287), 1, + sym_comment, + STATE(3355), 1, + aux_sym__repeat_newline, + ACTIONS(5942), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223361,35 +223195,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, - [100873] = 4, + [100634] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6371), 1, - anon_sym_DASH2, - STATE(3300), 1, - sym_comment, - ACTIONS(6369), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5962), 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, - [100896] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3301), 1, + ACTIONS(6365), 1, + anon_sym_else, + STATE(3288), 1, sym_comment, - ACTIONS(6161), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + STATE(3292), 1, + aux_sym__repeat_newline, + ACTIONS(5965), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223399,15 +223216,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, - [100917] = 3, + [100661] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3302), 1, - sym_comment, - ACTIONS(6119), 12, - ts_builtin_sym_end, + ACTIONS(5911), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6367), 1, + anon_sym_else, + STATE(3289), 1, + sym_comment, + STATE(3293), 1, + aux_sym__repeat_newline, + ACTIONS(5914), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223417,15 +223237,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, - [100938] = 3, + [100688] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3303), 1, - sym_comment, - ACTIONS(6207), 12, - ts_builtin_sym_end, + ACTIONS(5932), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6369), 1, + anon_sym_else, + STATE(3290), 1, + sym_comment, + STATE(3294), 1, + aux_sym__repeat_newline, + ACTIONS(5935), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223435,14 +223258,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, - [100959] = 4, + [100715] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(5727), 1, anon_sym_DASH2, - STATE(3304), 1, + STATE(3291), 1, sym_comment, - ACTIONS(2238), 11, + ACTIONS(5725), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223454,53 +223277,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100982] = 4, + [100738] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2244), 1, - anon_sym_DASH2, - STATE(3305), 1, - sym_comment, - ACTIONS(2242), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5990), 1, sym__newline, + ACTIONS(6371), 1, + anon_sym_else, + STATE(3292), 1, + sym_comment, + STATE(3295), 1, + aux_sym__repeat_newline, + ACTIONS(5993), 9, 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, - [101005] = 5, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [100765] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1960), 1, - anon_sym_DASH2, - ACTIONS(6373), 1, + ACTIONS(2059), 1, sym__newline, - STATE(3306), 2, + ACTIONS(6373), 1, + anon_sym_else, + STATE(656), 1, aux_sym__repeat_newline, + STATE(3293), 1, sym_comment, - ACTIONS(1955), 9, - anon_sym_EQ, - sym_identifier, + ACTIONS(2057), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [101030] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [100792] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3307), 1, - sym_comment, - ACTIONS(6376), 12, + ACTIONS(2059), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6376), 1, + anon_sym_else, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(3294), 1, + sym_comment, + ACTIONS(2057), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223510,15 +223340,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, - [101051] = 3, + [100819] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3308), 1, - sym_comment, - ACTIONS(6378), 12, + ACTIONS(2059), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6379), 1, + anon_sym_else, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(3295), 1, + sym_comment, + ACTIONS(2057), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223528,13 +223361,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, - [101072] = 3, + [100846] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3309), 1, + STATE(3296), 1, sym_comment, - ACTIONS(6380), 12, + ACTIONS(6382), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223547,13 +223379,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101093] = 3, + [100867] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6384), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6386), 1, + aux_sym__immediate_decimal_token5, + STATE(3297), 1, + sym_comment, + ACTIONS(739), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [100894] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3310), 1, + STATE(3298), 1, sym_comment, - ACTIONS(5885), 12, - ts_builtin_sym_end, + ACTIONS(6388), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223565,12 +223417,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, - [101114] = 3, + anon_sym_RPAREN, + [100915] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3311), 1, + STATE(3299), 1, sym_comment, - ACTIONS(6382), 12, + ACTIONS(6390), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223583,12 +223436,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101135] = 3, + [100936] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3312), 1, + STATE(3300), 1, sym_comment, - ACTIONS(6141), 12, + ACTIONS(6164), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223601,12 +223454,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, - [101156] = 3, + [100957] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3313), 1, + STATE(3301), 1, sym_comment, - ACTIONS(6384), 12, + ACTIONS(6096), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223618,15 +223472,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [101177] = 4, + [100978] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__entry_separator, + ACTIONS(1643), 1, + anon_sym_RBRACK, + ACTIONS(1645), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6226), 1, + anon_sym_DOLLAR, + ACTIONS(6228), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6230), 1, + aux_sym__immediate_decimal_token2, + STATE(3302), 1, + sym_comment, + STATE(4289), 1, + sym__immediate_decimal, + ACTIONS(6232), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4124), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101017] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1625), 1, + sym__entry_separator, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6226), 1, + anon_sym_DOLLAR, + ACTIONS(6280), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6282), 1, + aux_sym__immediate_decimal_token2, + STATE(3303), 1, + sym_comment, + STATE(4073), 1, + sym__immediate_decimal, + ACTIONS(1627), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4072), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101054] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6388), 1, + ACTIONS(6394), 1, anon_sym_DASH2, - STATE(3314), 1, + STATE(3304), 1, sym_comment, - ACTIONS(6386), 11, + ACTIONS(6392), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223638,12 +223544,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101200] = 3, + [101077] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3315), 1, + STATE(3305), 1, sym_comment, - ACTIONS(6390), 12, + ACTIONS(6396), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223656,12 +223562,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101221] = 3, + [101098] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3316), 1, + STATE(3306), 1, sym_comment, - ACTIONS(6392), 12, + ACTIONS(6398), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223674,18 +223580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101242] = 6, + [101119] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6023), 1, - sym__newline, - ACTIONS(6394), 1, - anon_sym_else, - STATE(3317), 1, + STATE(3307), 1, sym_comment, - STATE(3321), 1, - aux_sym__repeat_newline, - ACTIONS(6026), 9, + ACTIONS(6076), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223695,18 +223598,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, - [101269] = 6, + [101140] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, - sym__newline, - ACTIONS(6396), 1, - anon_sym_else, - STATE(3318), 1, + STATE(3308), 1, sym_comment, - STATE(3322), 1, - aux_sym__repeat_newline, - ACTIONS(6033), 9, + ACTIONS(6400), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223716,18 +223615,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, - [101296] = 6, + anon_sym_RPAREN, + [101161] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5817), 1, - sym__newline, - ACTIONS(6398), 1, - anon_sym_else, - STATE(3319), 1, + STATE(3309), 1, sym_comment, - STATE(3323), 1, - aux_sym__repeat_newline, - ACTIONS(5820), 9, + ACTIONS(6402), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223737,18 +223633,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, - [101323] = 6, + anon_sym_RPAREN, + [101182] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5950), 1, - sym__newline, - ACTIONS(6400), 1, - anon_sym_else, - STATE(3320), 1, + STATE(3310), 1, sym_comment, - STATE(3324), 1, - aux_sym__repeat_newline, - ACTIONS(5953), 9, + ACTIONS(6404), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223758,18 +223651,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, - [101350] = 6, + anon_sym_RPAREN, + [101203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, - sym__newline, - ACTIONS(6402), 1, - anon_sym_else, - STATE(3321), 1, + STATE(3311), 1, sym_comment, - STATE(3325), 1, - aux_sym__repeat_newline, - ACTIONS(5797), 9, + ACTIONS(6406), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223779,18 +223669,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, - [101377] = 6, + anon_sym_RPAREN, + [101224] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5849), 1, - sym__newline, - ACTIONS(6404), 1, - anon_sym_else, - STATE(3322), 1, + STATE(3312), 1, sym_comment, - STATE(3326), 1, - aux_sym__repeat_newline, - ACTIONS(5852), 9, + ACTIONS(6408), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223800,18 +223687,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, - [101404] = 6, + anon_sym_RPAREN, + [101245] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6406), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3323), 1, + STATE(3313), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6410), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223821,18 +223705,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, - [101431] = 6, + anon_sym_RPAREN, + [101266] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5998), 1, + ACTIONS(5731), 1, + anon_sym_DASH2, + STATE(3314), 1, + sym_comment, + ACTIONS(5729), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(6409), 1, - anon_sym_else, - STATE(3324), 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, + [101289] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6412), 1, + anon_sym_DOT, + ACTIONS(6414), 1, + aux_sym__immediate_decimal_token5, + STATE(3315), 1, sym_comment, - STATE(3327), 1, - aux_sym__repeat_newline, - ACTIONS(6001), 9, + ACTIONS(747), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [101316] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3316), 1, + sym_comment, + ACTIONS(6416), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223842,18 +223763,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, - [101458] = 6, + anon_sym_RPAREN, + [101337] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6418), 1, + anon_sym_DOT2, + STATE(363), 1, + sym_path, + STATE(374), 1, + sym_cell_path, + STATE(3317), 1, + sym_comment, + STATE(3385), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1462), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1460), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [101368] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1486), 1, + anon_sym_BANG, + ACTIONS(6420), 1, + anon_sym_QMARK2, + STATE(362), 1, + sym__path_suffix, + STATE(3318), 1, + sym_comment, + ACTIONS(1478), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1476), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [101397] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6411), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3325), 1, + STATE(3319), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6422), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223863,18 +223826,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101485] = 6, + anon_sym_RPAREN, + [101418] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + STATE(3320), 1, + sym_comment, + ACTIONS(6424), 12, sym__newline, - ACTIONS(6414), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3326), 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, + [101439] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6426), 1, + anon_sym_DOT, + ACTIONS(6428), 1, + aux_sym__immediate_decimal_token5, + STATE(3321), 1, + sym_comment, + ACTIONS(747), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [101466] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6430), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6432), 1, + aux_sym__immediate_decimal_token5, + STATE(3322), 1, + sym_comment, + ACTIONS(739), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [101493] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3323), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6434), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223884,18 +223904,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, - [101512] = 6, + anon_sym_RPAREN, + [101514] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(6417), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3327), 1, + STATE(824), 1, + aux_sym__pipe_separator, + STATE(3324), 1, sym_comment, - ACTIONS(1955), 9, + STATE(3375), 1, + aux_sym__repeat_newline, + ACTIONS(2180), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223905,14 +223926,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, - [101539] = 4, + [101541] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6422), 1, + ACTIONS(2458), 1, anon_sym_DASH2, - STATE(3328), 1, + STATE(3325), 1, sym_comment, - ACTIONS(6420), 11, + ACTIONS(2456), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223924,259 +223945,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101562] = 3, + [101564] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3329), 1, + ACTIONS(2148), 1, + anon_sym_DASH2, + STATE(3326), 1, sym_comment, - ACTIONS(6424), 12, + ACTIONS(2146), 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, - [101583] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101587] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3330), 1, + ACTIONS(2168), 1, + anon_sym_DASH2, + STATE(3327), 1, sym_comment, - ACTIONS(6426), 12, + ACTIONS(2166), 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, - [101604] = 11, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101610] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1596), 1, - anon_sym_LBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(6428), 1, - anon_sym_DOT, - STATE(3331), 1, + ACTIONS(2092), 1, + anon_sym_DASH2, + STATE(3328), 1, sym_comment, - STATE(3892), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, + ACTIONS(2090), 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, + [101633] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1625), 1, + sym__entry_separator, + ACTIONS(6041), 1, + anon_sym_DOLLAR, + ACTIONS(6043), 1, + anon_sym_LPAREN2, + ACTIONS(6045), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6047), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, + STATE(3329), 1, + sym_comment, + STATE(4073), 1, + sym__immediate_decimal, + ACTIONS(1627), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4186), 2, + STATE(4072), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101641] = 3, + [101670] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3332), 1, + ACTIONS(2200), 1, + anon_sym_DASH2, + STATE(3330), 1, sym_comment, - ACTIONS(4791), 12, + ACTIONS(2198), 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, - [101662] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101693] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3333), 1, + ACTIONS(2204), 1, + anon_sym_DASH2, + STATE(3331), 1, sym_comment, - ACTIONS(6434), 12, + ACTIONS(2202), 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, - [101683] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101716] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3334), 1, + ACTIONS(2208), 1, + anon_sym_DASH2, + STATE(3332), 1, sym_comment, - ACTIONS(4783), 12, - ts_builtin_sym_end, + ACTIONS(2206), 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, - [101704] = 11, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101739] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1651), 1, sym__entry_separator, - ACTIONS(6069), 1, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(6043), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(6045), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(6047), 1, aux_sym__immediate_decimal_token2, - STATE(3335), 1, + STATE(3333), 1, sym_comment, - STATE(4075), 1, + STATE(4116), 1, sym__immediate_decimal, - ACTIONS(1586), 2, + ACTIONS(1653), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6077), 2, + ACTIONS(6049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4074), 2, + STATE(4115), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101741] = 11, + [101776] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1667), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(1651), 1, + sym__space, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + ACTIONS(6355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(6357), 1, aux_sym__immediate_decimal_token2, - STATE(3336), 1, - sym_comment, - STATE(4116), 1, + STATE(2974), 1, sym__immediate_decimal, - ACTIONS(1669), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, + STATE(3334), 1, + sym_comment, + ACTIONS(1653), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5807), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4115), 2, + STATE(2967), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101778] = 11, + [101813] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1671), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(1631), 1, + sym__space, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + ACTIONS(6355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(6357), 1, aux_sym__immediate_decimal_token2, - STATE(3337), 1, - sym_comment, - STATE(4119), 1, + STATE(2995), 1, sym__immediate_decimal, - ACTIONS(1673), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, + STATE(3335), 1, + sym_comment, + ACTIONS(1633), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5807), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4117), 2, + STATE(2982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101815] = 11, + [101850] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1675), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(1647), 1, + sym__space, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + ACTIONS(6355), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(6357), 1, aux_sym__immediate_decimal_token2, - STATE(3338), 1, - sym_comment, - STATE(4122), 1, + STATE(3010), 1, sym__immediate_decimal, - ACTIONS(1677), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, + STATE(3336), 1, + sym_comment, + ACTIONS(1649), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5807), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4121), 2, + STATE(3000), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101852] = 12, + [101887] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(1631), 1, + sym__entry_separator, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6043), 1, anon_sym_LPAREN2, - ACTIONS(5841), 1, + ACTIONS(6045), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, + ACTIONS(6047), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6436), 1, - anon_sym_RBRACK, - STATE(3339), 1, + STATE(3337), 1, sym_comment, - STATE(3603), 1, + STATE(4120), 1, sym__immediate_decimal, - ACTIONS(5845), 2, + ACTIONS(1633), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3860), 2, + STATE(4118), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101891] = 3, + [101924] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3340), 1, + STATE(3338), 1, + sym_comment, + ACTIONS(6072), 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, + [101945] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3339), 1, sym_comment, - ACTIONS(6438), 12, + ACTIONS(6436), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224189,12 +224251,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101912] = 3, + [101966] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2228), 1, + anon_sym_DASH2, + STATE(3340), 1, + sym_comment, + ACTIONS(2226), 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, + [101989] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6438), 1, + anon_sym_else, STATE(3341), 1, sym_comment, - ACTIONS(6440), 12, + ACTIONS(6082), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224206,42 +224289,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [102012] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6442), 1, + anon_sym_DASH2, + STATE(3342), 1, + sym_comment, + ACTIONS(6440), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [101933] = 12, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102035] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, + ACTIONS(2232), 1, + anon_sym_DASH2, + STATE(3343), 1, + sym_comment, + ACTIONS(2230), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, - aux_sym__immediate_decimal_token2, - STATE(3342), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102058] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6446), 1, + anon_sym_DASH2, + STATE(3344), 1, sym_comment, - STATE(4286), 1, - sym__immediate_decimal, - ACTIONS(6446), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101972] = 4, + ACTIONS(6444), 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, + [102081] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2236), 1, + anon_sym_DASH2, + STATE(3345), 1, + sym_comment, + ACTIONS(2234), 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, + [102104] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6450), 1, + anon_sym_DASH2, + STATE(3346), 1, + sym_comment, + ACTIONS(6448), 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, + [102127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2200), 1, + ACTIONS(2240), 1, anon_sym_DASH2, - STATE(3343), 1, + STATE(3347), 1, sym_comment, - ACTIONS(2198), 11, + ACTIONS(2238), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224253,41 +224403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101995] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6448), 1, - anon_sym_DOT, - STATE(3344), 1, - sym_comment, - STATE(3937), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102034] = 4, + [102150] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, + ACTIONS(6454), 1, anon_sym_DASH2, - STATE(3345), 1, + STATE(3348), 1, sym_comment, - ACTIONS(2100), 11, + ACTIONS(6452), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224299,33 +224422,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102057] = 4, + [102173] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6450), 1, - anon_sym_else, - STATE(3346), 1, + ACTIONS(2244), 1, + anon_sym_DASH2, + STATE(3349), 1, sym_comment, - ACTIONS(6043), 11, + ACTIONS(2242), 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, - [102080] = 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, + [102196] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2078), 1, + ACTIONS(6351), 1, anon_sym_DASH2, - STATE(3347), 1, + STATE(3350), 1, sym_comment, - ACTIONS(2076), 11, + ACTIONS(6349), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224337,74 +224460,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102103] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6452), 1, - anon_sym_DOT, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token5, - STATE(3348), 1, - sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [102130] = 3, + [102219] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3349), 1, + ACTIONS(2248), 1, + anon_sym_DASH2, + STATE(3351), 1, sym_comment, - ACTIONS(6456), 12, + ACTIONS(2246), 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, - [102151] = 6, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102242] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6456), 1, + anon_sym_DOT, ACTIONS(6458), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6460), 1, aux_sym__immediate_decimal_token5, - STATE(3350), 1, + STATE(3352), 1, sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(747), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(749), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [102178] = 4, + [102269] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, + ACTIONS(2361), 1, anon_sym_DASH2, - STATE(3351), 1, + STATE(3353), 1, sym_comment, - ACTIONS(2120), 11, + ACTIONS(2359), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224416,59 +224519,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102201] = 3, + [102292] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3352), 1, - sym_comment, - ACTIONS(6462), 12, + ACTIONS(6460), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6463), 1, + anon_sym_DASH2, + STATE(3354), 1, + sym_comment, + ACTIONS(2064), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4444), 8, + 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, - anon_sym_RPAREN, - [102222] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, anon_sym_RBRACK, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, - aux_sym__immediate_decimal_token2, - STATE(3353), 1, - sym_comment, - STATE(4145), 1, - sym__immediate_decimal, - ACTIONS(6446), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4079), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102261] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102319] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3354), 1, - sym_comment, - ACTIONS(6464), 12, + ACTIONS(2059), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6465), 1, + anon_sym_else, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(3355), 1, + sym_comment, + ACTIONS(2057), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224478,211 +224561,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [102282] = 9, + [102346] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(73), 1, - aux_sym_expr_unary_token1, - ACTIONS(1649), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(4815), 1, + ACTIONS(2260), 1, + aux_sym_expr_unary_token1, + ACTIONS(4799), 1, anon_sym_LPAREN, - ACTIONS(4819), 1, + ACTIONS(4801), 1, anon_sym_DASH2, - STATE(1294), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(3355), 1, + STATE(3356), 1, sym_comment, - ACTIONS(2174), 2, + ACTIONS(2252), 2, anon_sym_true, anon_sym_false, - STATE(1305), 4, + STATE(923), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [102314] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2098), 1, - anon_sym_DASH2, - STATE(3356), 1, - sym_comment, - ACTIONS(2096), 10, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102336] = 11, + [102378] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, - anon_sym_LPAREN2, ACTIONS(6468), 1, - anon_sym_DOT_DOT2, - ACTIONS(6472), 1, - sym_filesize_unit, - ACTIONS(6474), 1, - sym_duration_unit, - STATE(3357), 1, - sym_comment, - STATE(4728), 1, - sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6470), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [102372] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6476), 1, aux_sym__immediate_decimal_token5, - STATE(3358), 1, + STATE(3357), 1, sym_comment, ACTIONS(771), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102396] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4819), 1, - anon_sym_DASH2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - ACTIONS(5168), 1, - anon_sym_LPAREN, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(3359), 1, - sym_comment, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(1305), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [102428] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6343), 1, - aux_sym__immediate_decimal_token5, - STATE(3360), 1, - sym_comment, - ACTIONS(739), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(741), 6, + ACTIONS(773), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [102452] = 10, + [102402] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1631), 1, + ACTIONS(1641), 1, anon_sym_LBRACE, - ACTIONS(1639), 1, + ACTIONS(1645), 1, sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(2881), 1, anon_sym_DOLLAR, - STATE(3361), 1, + STATE(3358), 1, sym_comment, - STATE(4787), 1, + STATE(4784), 1, sym__immediate_decimal, - ACTIONS(6478), 2, + ACTIONS(6470), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, + ACTIONS(6472), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(776), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [102486] = 6, + [102436] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6482), 1, - anon_sym_DOT, - ACTIONS(6484), 1, - aux_sym__immediate_decimal_token5, - STATE(3362), 1, + ACTIONS(6476), 1, + anon_sym_DASH2, + STATE(3359), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, + STATE(3389), 1, + aux_sym_parameter_repeat2, + ACTIONS(1444), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(6474), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102512] = 6, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102462] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5334), 1, + ACTIONS(2066), 1, anon_sym_DASH2, - STATE(3363), 1, + STATE(3360), 1, sym_comment, - STATE(3371), 1, - aux_sym_parameter_repeat2, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5332), 7, + ACTIONS(2064), 10, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102538] = 6, + [102484] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6486), 1, + ACTIONS(6478), 1, anon_sym_DOT, - ACTIONS(6488), 1, + ACTIONS(6480), 1, aux_sym__immediate_decimal_token5, - STATE(3364), 1, + STATE(3361), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 7, + ACTIONS(749), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, @@ -224690,63 +224685,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102564] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3365), 1, - sym_comment, - ACTIONS(2531), 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, - [102588] = 11, + [102510] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(4969), 1, - sym__unquoted_pattern, - ACTIONS(6490), 1, + STATE(3362), 1, + sym_comment, + ACTIONS(1524), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1522), 8, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - ACTIONS(6494), 1, - sym_filesize_unit, - ACTIONS(6496), 1, - sym_duration_unit, - STATE(3366), 1, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [102532] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6482), 1, + anon_sym_DOT, + ACTIONS(6484), 1, + aux_sym__immediate_decimal_token5, + STATE(3363), 1, sym_comment, - STATE(4625), 1, - sym__expr_parenthesized_immediate, - ACTIONS(868), 2, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 7, sym__newline, - anon_sym_SEMI, - ACTIONS(6492), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [102624] = 6, + sym_filesize_unit, + sym_duration_unit, + [102558] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6500), 1, + ACTIONS(6488), 1, anon_sym_DASH2, - STATE(3367), 1, + STATE(3364), 1, sym_comment, - STATE(3371), 1, + STATE(3389), 1, aux_sym_parameter_repeat2, - ACTIONS(1494), 2, + ACTIONS(1444), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6498), 7, + ACTIONS(6486), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -224754,18 +224743,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102650] = 5, + [102584] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6490), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6492), 1, aux_sym__immediate_decimal_token5, - STATE(3368), 1, + STATE(3365), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 8, - anon_sym_if, + ACTIONS(741), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -224773,59 +224763,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102674] = 8, + [102610] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3369), 1, - sym_comment, - STATE(3378), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3663), 1, - sym_cell_path, - ACTIONS(1641), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1641), 1, sym__entry_separator, - ACTIONS(1643), 4, - anon_sym_RBRACK, + ACTIONS(1643), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [102704] = 5, - ACTIONS(103), 1, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6226), 1, + anon_sym_DOLLAR, + ACTIONS(6280), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6282), 1, + aux_sym__immediate_decimal_token2, + STATE(3366), 1, + sym_comment, + STATE(4695), 1, + sym__immediate_decimal, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4124), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102646] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6504), 1, + ACTIONS(6494), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6496), 1, aux_sym__immediate_decimal_token5, - STATE(3370), 1, + STATE(3367), 1, sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(739), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(741), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [102728] = 5, + [102672] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6511), 1, + ACTIONS(173), 1, + aux_sym_expr_unary_token1, + ACTIONS(1592), 1, + anon_sym_DOLLAR, + ACTIONS(4799), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_DASH2, - ACTIONS(6508), 2, - sym__newline, - anon_sym_COMMA, - STATE(3371), 2, + STATE(901), 1, + sym__expr_unary_minus, + STATE(3368), 1, + sym_comment, + ACTIONS(1916), 2, + anon_sym_true, + anon_sym_false, + STATE(923), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [102704] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5316), 1, + anon_sym_DASH2, + STATE(3369), 1, sym_comment, + STATE(3389), 1, aux_sym_parameter_repeat2, - ACTIONS(6506), 7, + ACTIONS(1444), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5314), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -224833,16 +224851,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102752] = 4, + [102730] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LBRACE, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(3370), 1, + sym_comment, + STATE(4638), 1, + sym__immediate_decimal, + ACTIONS(6470), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6472), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(809), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102764] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(73), 1, + aux_sym_expr_unary_token1, + ACTIONS(1671), 1, + anon_sym_DOLLAR, + ACTIONS(4823), 1, + anon_sym_LPAREN, + ACTIONS(4827), 1, + anon_sym_DASH2, + STATE(1269), 1, + sym__expr_unary_minus, + STATE(3371), 1, + sym_comment, + ACTIONS(2272), 2, + anon_sym_true, + anon_sym_false, + STATE(1342), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [102796] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3372), 1, sym_comment, - ACTIONS(1480), 3, + ACTIONS(1528), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1478), 8, + ACTIONS(1526), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -224851,38 +224916,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [102774] = 5, - ACTIONS(3), 1, + [102818] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6282), 1, - aux_sym__immediate_decimal_token5, STATE(3373), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1508), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102798] = 6, + sym__entry_separator, + ACTIONS(1506), 8, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [102840] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5378), 1, + ACTIONS(6500), 1, anon_sym_DASH2, - STATE(3371), 1, - aux_sym_parameter_repeat2, STATE(3374), 1, sym_comment, - ACTIONS(1494), 2, + STATE(3389), 1, + aux_sym_parameter_repeat2, + ACTIONS(1444), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5376), 7, + ACTIONS(6498), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -224890,40 +224954,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102824] = 10, + [102866] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, - anon_sym_LBRACE, - ACTIONS(1588), 1, + ACTIONS(2905), 1, + sym__newline, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(3375), 1, + sym_comment, + ACTIONS(2652), 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, + [102890] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6502), 1, + aux_sym__immediate_decimal_token5, + STATE(3376), 1, + sym_comment, + ACTIONS(771), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 6, + sym__space, anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [102914] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2694), 1, + aux_sym_expr_unary_token1, + ACTIONS(4827), 1, + anon_sym_DASH2, + ACTIONS(4834), 1, anon_sym_DOLLAR, - STATE(3375), 1, + ACTIONS(5195), 1, + anon_sym_LPAREN, + STATE(1269), 1, + sym__expr_unary_minus, + STATE(3377), 1, sym_comment, - STATE(4183), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4178), 2, - sym__expr_parenthesized_immediate, + ACTIONS(2272), 2, + anon_sym_true, + anon_sym_false, + STATE(1342), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [102858] = 4, + [102946] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3376), 1, + STATE(3378), 1, sym_comment, - ACTIONS(1545), 3, + ACTIONS(1512), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1543), 8, + ACTIONS(1510), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -224932,16 +225033,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [102880] = 4, + [102968] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3377), 1, + STATE(3379), 1, sym_comment, - ACTIONS(1468), 3, + ACTIONS(1516), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1466), 8, + ACTIONS(1514), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -224950,37 +225051,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [102902] = 7, + [102990] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3378), 1, - sym_comment, + ACTIONS(6414), 1, + aux_sym__immediate_decimal_token5, STATE(3380), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1458), 5, + sym_comment, + ACTIONS(747), 4, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - [102930] = 4, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [103014] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3379), 1, + STATE(3381), 1, sym_comment, - ACTIONS(1472), 3, + ACTIONS(1520), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1470), 8, + ACTIONS(1518), 8, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -224989,98 +225088,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [102952] = 6, + [103036] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6513), 1, + ACTIONS(6418), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(363), 1, sym_path, - STATE(3380), 2, + STATE(3382), 1, sym_comment, + STATE(3385), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 3, + STATE(3623), 1, + sym_cell_path, + ACTIONS(1655), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1524), 5, + ACTIONS(1657), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - [102978] = 9, + [103066] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(173), 1, - aux_sym_expr_unary_token1, - ACTIONS(1584), 1, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1625), 1, + anon_sym_LBRACE, + ACTIONS(1629), 1, + anon_sym_DOT, + ACTIONS(2881), 1, anon_sym_DOLLAR, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - STATE(945), 1, - sym__expr_unary_minus, - STATE(3381), 1, + STATE(3383), 1, sym_comment, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(953), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(4180), 1, + sym__immediate_decimal, + ACTIONS(6266), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6268), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4179), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [103010] = 4, + [103100] = 11, ACTIONS(103), 1, anon_sym_POUND, - STATE(3382), 1, - sym_comment, - ACTIONS(1476), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1590), 1, sym__entry_separator, - ACTIONS(1474), 8, - anon_sym_RBRACK, + ACTIONS(1594), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [103032] = 4, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6226), 1, + anon_sym_DOLLAR, + ACTIONS(6280), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6282), 1, + aux_sym__immediate_decimal_token2, + STATE(3384), 1, + sym_comment, + STATE(4633), 1, + sym__immediate_decimal, + ACTIONS(6094), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4077), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103136] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3383), 1, + ACTIONS(6418), 1, + anon_sym_DOT2, + STATE(363), 1, + sym_path, + STATE(3385), 1, sym_comment, - ACTIONS(1516), 3, + STATE(3387), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1536), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1514), 8, + ACTIONS(1534), 5, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [103054] = 6, + [103164] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6518), 1, + ACTIONS(5324), 1, anon_sym_DASH2, - STATE(3371), 1, - aux_sym_parameter_repeat2, - STATE(3384), 1, + STATE(3386), 1, sym_comment, - ACTIONS(1494), 2, + STATE(3389), 1, + aux_sym_parameter_repeat2, + ACTIONS(1444), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6516), 7, + ACTIONS(5322), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -225088,162 +225200,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103080] = 10, - ACTIONS(3), 1, + [103190] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1596), 1, - anon_sym_LBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3385), 1, + ACTIONS(6504), 1, + anon_sym_DOT2, + STATE(363), 1, + sym_path, + STATE(3387), 2, sym_comment, - STATE(4713), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103114] = 8, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1540), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1538), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + [103216] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(6418), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(363), 1, sym_path, - STATE(3378), 1, + STATE(3385), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3386), 1, + STATE(3388), 1, sym_comment, - STATE(3661), 1, + STATE(3729), 1, sym_cell_path, - ACTIONS(1679), 3, + ACTIONS(1665), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1681), 4, + ACTIONS(1667), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [103144] = 11, - ACTIONS(103), 1, + [103246] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3387), 1, + ACTIONS(6512), 1, + anon_sym_DASH2, + ACTIONS(6509), 2, + sym__newline, + anon_sym_COMMA, + STATE(3389), 2, sym_comment, - STATE(4753), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4079), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103180] = 5, + aux_sym_parameter_repeat2, + ACTIONS(6507), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103270] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6321), 1, + ACTIONS(6428), 1, aux_sym__immediate_decimal_token5, - STATE(3388), 1, + STATE(3390), 1, sym_comment, - ACTIONS(739), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(747), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103204] = 11, + sym__entry_separator, + [103294] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(960), 1, sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACE, - ACTIONS(5837), 1, + ACTIONS(6319), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6514), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3389), 1, - sym_comment, - STATE(4790), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4123), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103240] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6520), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6522), 1, - aux_sym__immediate_decimal_token5, - STATE(3390), 1, - sym_comment, - ACTIONS(747), 2, + ACTIONS(6516), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(6520), 1, sym_filesize_unit, + ACTIONS(6522), 1, sym_duration_unit, - [103266] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5318), 1, - anon_sym_DASH2, - STATE(3371), 1, - aux_sym_parameter_repeat2, STATE(3391), 1, sym_comment, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5316), 7, - sym_identifier, - anon_sym_PIPE, + STATE(4701), 1, + sym__expr_parenthesized_immediate, + ACTIONS(860), 2, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [103292] = 6, + anon_sym_DOT_DOT, + ACTIONS(6518), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [103330] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6524), 1, @@ -225252,68 +225314,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token5, STATE(3392), 1, sym_comment, - ACTIONS(739), 3, + ACTIONS(747), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(741), 6, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [103356] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6528), 1, + aux_sym__immediate_decimal_token5, + STATE(3393), 1, + sym_comment, + ACTIONS(771), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(773), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [103318] = 9, + [103380] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1774), 1, anon_sym_LPAREN, - ACTIONS(2690), 1, + ACTIONS(2764), 1, aux_sym_expr_unary_token1, - ACTIONS(2878), 1, + ACTIONS(2881), 1, anon_sym_DOLLAR, - ACTIONS(4797), 1, + ACTIONS(4801), 1, anon_sym_DASH2, - STATE(945), 1, + STATE(901), 1, sym__expr_unary_minus, - STATE(3393), 1, + STATE(3394), 1, sym_comment, - ACTIONS(1937), 2, + ACTIONS(1916), 2, anon_sym_true, anon_sym_false, - STATE(953), 4, + STATE(923), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [103350] = 6, + [103412] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6530), 1, - anon_sym_DASH2, - STATE(3371), 1, - aux_sym_parameter_repeat2, - STATE(3394), 1, - sym_comment, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(6528), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [103376] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6532), 1, anon_sym_else, STATE(3395), 1, sym_comment, - ACTIONS(6043), 10, + ACTIONS(6082), 10, sym__newline, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225324,80 +225385,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103398] = 9, - ACTIONS(3), 1, + [103434] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2406), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - STATE(945), 1, - sym__expr_unary_minus, + ACTIONS(960), 1, + sym__space, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + ACTIONS(5009), 1, + sym__unquoted_pattern, + ACTIONS(6532), 1, + anon_sym_DOT_DOT2, + ACTIONS(6536), 1, + sym_filesize_unit, + ACTIONS(6538), 1, + sym_duration_unit, STATE(3396), 1, sym_comment, - ACTIONS(2398), 2, - anon_sym_true, - anon_sym_false, - STATE(953), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [103430] = 6, + STATE(4656), 1, + sym__expr_parenthesized_immediate, + ACTIONS(860), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6534), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [103470] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6540), 1, + aux_sym__immediate_decimal_token5, + STATE(3397), 1, + sym_comment, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [103494] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6534), 1, + ACTIONS(6542), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6536), 1, + ACTIONS(6544), 1, aux_sym__immediate_decimal_token5, - STATE(3397), 1, + STATE(3398), 1, sym_comment, - ACTIONS(747), 3, + ACTIONS(739), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(749), 6, + ACTIONS(741), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [103456] = 5, - ACTIONS(103), 1, + [103520] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6454), 1, + ACTIONS(6458), 1, aux_sym__immediate_decimal_token5, - STATE(3398), 1, + STATE(3399), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [103544] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5328), 1, + anon_sym_DASH2, + STATE(3389), 1, + aux_sym_parameter_repeat2, + STATE(3400), 1, + sym_comment, + ACTIONS(1444), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5326), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103570] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6296), 1, + aux_sym__immediate_decimal_token5, + STATE(3401), 1, + sym_comment, + ACTIONS(747), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, + sym__unquoted_pattern, + ACTIONS(749), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [103480] = 5, + [103594] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6538), 1, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + ACTIONS(1838), 1, + aux_sym_unquoted_token2, + ACTIONS(3444), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6546), 1, + anon_sym_DOLLAR, + ACTIONS(6548), 1, + aux_sym__immediate_decimal_token2, + STATE(1500), 1, + sym__immediate_decimal, + STATE(3402), 1, + sym_comment, + ACTIONS(6550), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1334), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103627] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3020), 1, + sym_raw_string_begin, + ACTIONS(6552), 1, + anon_sym_DQUOTE, + ACTIONS(6554), 1, + anon_sym_SQUOTE, + ACTIONS(6556), 1, + anon_sym_BQUOTE, + ACTIONS(6558), 1, + aux_sym_path_token1, + STATE(2374), 1, + sym_val_string, + STATE(3403), 1, + sym_comment, + STATE(2575), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [103658] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6560), 1, aux_sym__immediate_decimal_token5, - STATE(3399), 1, + STATE(3404), 1, sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(771), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, + sym__unquoted_pattern_in_record, ACTIONS(773), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -225405,805 +225570,547 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [103504] = 6, + [103681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6540), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6542), 1, + ACTIONS(6484), 1, aux_sym__immediate_decimal_token5, - STATE(3400), 1, + STATE(3405), 1, sym_comment, ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, ACTIONS(749), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103530] = 10, + [103704] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(3232), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4886), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(4888), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3401), 1, - sym_comment, - STATE(3922), 1, + ACTIONS(5036), 1, + aux_sym_unquoted_token2, + STATE(2573), 1, sym__immediate_decimal, - ACTIONS(6077), 2, + STATE(3406), 1, + sym_comment, + ACTIONS(4890), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4234), 2, + STATE(2657), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103563] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(6544), 1, - anon_sym_DQUOTE, - ACTIONS(6546), 1, - anon_sym_SQUOTE, - ACTIONS(6548), 1, - anon_sym_BQUOTE, - ACTIONS(6550), 1, - aux_sym_path_token1, - STATE(2374), 1, - sym_val_string, - STATE(3402), 1, - sym_comment, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103594] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(6552), 1, - anon_sym_DQUOTE, - ACTIONS(6554), 1, - anon_sym_SQUOTE, - ACTIONS(6556), 1, - anon_sym_BQUOTE, - ACTIONS(6558), 1, - aux_sym_path_token1, - STATE(3403), 1, - sym_comment, - STATE(3610), 1, - sym_val_string, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103625] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DQUOTE, - ACTIONS(6562), 1, - anon_sym_SQUOTE, - ACTIONS(6564), 1, - anon_sym_BQUOTE, - ACTIONS(6566), 1, - aux_sym_path_token1, - ACTIONS(6568), 1, - sym_raw_string_begin, - STATE(336), 1, - sym_val_string, - STATE(3404), 1, - sym_comment, - STATE(365), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103656] = 10, + [103737] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3232), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(5743), 1, + ACTIONS(4900), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6570), 1, + ACTIONS(4902), 1, aux_sym__immediate_decimal_token2, - STATE(3405), 1, - sym_comment, - STATE(3600), 1, + ACTIONS(5036), 1, + aux_sym_unquoted_token2, + STATE(2892), 1, sym__immediate_decimal, - ACTIONS(6572), 2, + STATE(3407), 1, + sym_comment, + ACTIONS(4904), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3625), 2, + STATE(3176), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103689] = 10, + [103770] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR, - ACTIONS(5934), 1, + ACTIONS(4852), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6574), 1, + ACTIONS(4854), 1, aux_sym__immediate_decimal_token2, - STATE(3406), 1, - sym_comment, - STATE(3914), 1, + ACTIONS(5009), 1, + aux_sym_unquoted_token2, + STATE(2495), 1, sym__immediate_decimal, - ACTIONS(6576), 2, + STATE(3408), 1, + sym_comment, + ACTIONS(4856), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(2618), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103722] = 4, + [103803] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3407), 1, - sym_comment, - ACTIONS(771), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 6, - sym__space, + ACTIONS(3096), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103743] = 9, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4868), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5009), 1, + aux_sym_unquoted_token2, + STATE(2766), 1, + sym__immediate_decimal, + STATE(3409), 1, + sym_comment, + ACTIONS(4870), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3004), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103836] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6578), 1, + ACTIONS(6562), 1, anon_sym_DQUOTE, - ACTIONS(6580), 1, + ACTIONS(6564), 1, anon_sym_SQUOTE, - ACTIONS(6582), 1, + ACTIONS(6566), 1, anon_sym_BQUOTE, - ACTIONS(6584), 1, + ACTIONS(6568), 1, aux_sym_path_token1, - ACTIONS(6586), 1, + ACTIONS(6570), 1, sym_raw_string_begin, - STATE(374), 1, + STATE(1738), 1, sym_val_string, - STATE(3408), 1, + STATE(3410), 1, sym_comment, - STATE(391), 4, + STATE(1778), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [103774] = 10, + [103867] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(6047), 1, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(5187), 1, + anon_sym_DOLLAR, + ACTIONS(6266), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, + ACTIONS(6572), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3409), 1, + STATE(3411), 1, sym_comment, - STATE(3719), 1, + STATE(3984), 1, sym__immediate_decimal, - ACTIONS(6051), 2, + ACTIONS(6574), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + STATE(4132), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103807] = 10, + [103900] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6248), 1, + ACTIONS(1794), 1, anon_sym_DOLLAR, - ACTIONS(6442), 1, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6031), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, + ACTIONS(6033), 1, aux_sym__immediate_decimal_token2, - STATE(3410), 1, + ACTIONS(6319), 1, + aux_sym__unquoted_in_list_token2, + STATE(3412), 1, sym_comment, - STATE(4350), 1, + STATE(3579), 1, sym__immediate_decimal, - ACTIONS(6446), 2, + ACTIONS(6035), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4234), 2, + STATE(3861), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103840] = 10, + [103933] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(6041), 1, anon_sym_DOLLAR, - ACTIONS(6478), 1, + ACTIONS(6043), 1, + anon_sym_LPAREN2, + ACTIONS(6045), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6047), 1, aux_sym__immediate_decimal_token2, - STATE(3411), 1, + ACTIONS(6319), 1, + aux_sym__unquoted_in_list_token2, + STATE(3413), 1, sym_comment, - STATE(4660), 1, + STATE(3926), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6049), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(4225), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103873] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6484), 1, - aux_sym__immediate_decimal_token5, - STATE(3412), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103896] = 6, + [103966] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6592), 1, + ACTIONS(6576), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6594), 1, + ACTIONS(6578), 1, aux_sym__immediate_decimal_token5, - STATE(3413), 1, + STATE(3414), 1, sym_comment, ACTIONS(1726), 4, - sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym__entry_separator, ACTIONS(1728), 4, - sym__newline, - anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [103921] = 4, + sym__unquoted_pattern_in_list, + [103991] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3414), 1, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1600), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(6580), 1, + anon_sym_DOLLAR, + ACTIONS(6582), 1, + aux_sym__immediate_decimal_token2, + STATE(516), 1, + sym__immediate_decimal, + STATE(3415), 1, sym_comment, - ACTIONS(849), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 6, - sym__space, + ACTIONS(6584), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(687), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104024] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1596), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103942] = 9, + ACTIONS(1637), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(6580), 1, + anon_sym_DOLLAR, + ACTIONS(6586), 1, + aux_sym__immediate_decimal_token2, + STATE(919), 1, + sym__immediate_decimal, + STATE(3416), 1, + sym_comment, + ACTIONS(6588), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(874), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104057] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(6596), 1, + ACTIONS(6590), 1, anon_sym_DQUOTE, - ACTIONS(6598), 1, + ACTIONS(6592), 1, anon_sym_SQUOTE, - ACTIONS(6600), 1, + ACTIONS(6594), 1, anon_sym_BQUOTE, - ACTIONS(6602), 1, + ACTIONS(6596), 1, aux_sym_path_token1, - STATE(406), 1, - sym_val_string, - STATE(3415), 1, + ACTIONS(6598), 1, + sym_raw_string_begin, + STATE(3417), 1, sym_comment, - STATE(415), 4, + STATE(3647), 1, + sym_val_string, + STATE(3791), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [103973] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6604), 1, - anon_sym_DOT, - ACTIONS(6606), 1, - aux_sym__immediate_decimal_token5, - STATE(3416), 1, - sym_comment, - ACTIONS(1736), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [103998] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6299), 1, - anon_sym_DASH2, - STATE(3417), 1, - sym_comment, - ACTIONS(4376), 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, - [104019] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(6608), 1, - anon_sym_DOT_DOT2, - ACTIONS(6612), 1, - sym_filesize_unit, - ACTIONS(6614), 1, - sym_duration_unit, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, - STATE(3418), 1, - sym_comment, - STATE(4630), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6610), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [104054] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6488), 1, - aux_sym__immediate_decimal_token5, - STATE(3419), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104077] = 10, + [104088] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4969), 1, + ACTIONS(1838), 1, aux_sym_unquoted_token2, - ACTIONS(5862), 1, + ACTIONS(4838), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, + ACTIONS(5197), 1, + anon_sym_DOLLAR, + ACTIONS(6600), 1, aux_sym__immediate_decimal_token2, - STATE(3420), 1, - sym_comment, - STATE(3608), 1, + STATE(2462), 1, sym__immediate_decimal, - ACTIONS(5866), 2, + STATE(3418), 1, + sym_comment, + ACTIONS(6602), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3853), 2, + STATE(2576), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104110] = 10, + [104121] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4969), 1, + ACTIONS(1838), 1, aux_sym_unquoted_token2, - ACTIONS(6055), 1, + ACTIONS(4846), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, + ACTIONS(5197), 1, + anon_sym_DOLLAR, + ACTIONS(6604), 1, aux_sym__immediate_decimal_token2, - STATE(3421), 1, - sym_comment, - STATE(3961), 1, + STATE(2589), 1, sym__immediate_decimal, - ACTIONS(6059), 2, + STATE(3419), 1, + sym_comment, + ACTIONS(6606), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2930), 2, + STATE(1334), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104143] = 9, + [104154] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3022), 1, - sym_raw_string_begin, - ACTIONS(6550), 1, - aux_sym_path_token1, - ACTIONS(6618), 1, + ACTIONS(6608), 1, anon_sym_DQUOTE, - ACTIONS(6620), 1, + ACTIONS(6610), 1, anon_sym_SQUOTE, - ACTIONS(6622), 1, + ACTIONS(6612), 1, anon_sym_BQUOTE, - STATE(2374), 1, + ACTIONS(6614), 1, + aux_sym_path_token1, + ACTIONS(6616), 1, + sym_raw_string_begin, + STATE(3318), 1, sym_val_string, - STATE(3422), 1, + STATE(3420), 1, sym_comment, - STATE(2548), 4, + STATE(3362), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104174] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6624), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6626), 1, - aux_sym__immediate_decimal_token5, - STATE(3423), 1, - sym_comment, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1728), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [104199] = 4, + [104185] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3424), 1, - sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, + ACTIONS(1596), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [104220] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3425), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104241] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6628), 1, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(4817), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6630), 1, - aux_sym__immediate_decimal_token5, - STATE(3426), 1, - sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [104266] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1667), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(5187), 1, anon_sym_DOLLAR, - STATE(737), 1, + ACTIONS(6618), 1, + aux_sym__immediate_decimal_token2, + STATE(2401), 1, sym__immediate_decimal, - STATE(3427), 1, + STATE(3421), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6620), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(736), 2, + STATE(2511), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104297] = 9, - ACTIONS(3), 1, + [104218] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1671), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(4842), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5187), 1, anon_sym_DOLLAR, - STATE(739), 1, + ACTIONS(6622), 1, + aux_sym__immediate_decimal_token2, + STATE(2582), 1, sym__immediate_decimal, - STATE(3428), 1, + STATE(3422), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6624), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(738), 2, + STATE(874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104328] = 4, + [104251] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(3429), 1, + ACTIONS(6626), 1, + anon_sym_DQUOTE, + ACTIONS(6628), 1, + anon_sym_SQUOTE, + ACTIONS(6630), 1, + anon_sym_BQUOTE, + ACTIONS(6632), 1, + aux_sym_path_token1, + ACTIONS(6634), 1, + sym_raw_string_begin, + STATE(338), 1, + sym_val_string, + STATE(3423), 1, sym_comment, - ACTIONS(849), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(851), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [104349] = 10, + STATE(364), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104282] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(5187), 1, anon_sym_DOLLAR, - ACTIONS(4850), 1, + ACTIONS(6018), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, + ACTIONS(6636), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - STATE(2505), 1, - sym__immediate_decimal, - STATE(3430), 1, + STATE(3424), 1, sym_comment, - ACTIONS(4854), 2, + STATE(3633), 1, + sym__immediate_decimal, + ACTIONS(6638), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2605), 2, + STATE(3626), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104382] = 10, + [104315] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(5187), 1, anon_sym_DOLLAR, - ACTIONS(4884), 1, + ACTIONS(6068), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, + ACTIONS(6640), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - STATE(2699), 1, - sym__immediate_decimal, - STATE(3431), 1, + STATE(3425), 1, sym_comment, - ACTIONS(4888), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2930), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104415] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1675), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(741), 1, + STATE(4111), 1, sym__immediate_decimal, - STATE(3432), 1, - sym_comment, - ACTIONS(6432), 2, + ACTIONS(6642), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(740), 2, + STATE(874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104446] = 9, + [104348] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6634), 1, + ACTIONS(936), 1, anon_sym_DQUOTE, - ACTIONS(6636), 1, + ACTIONS(938), 1, anon_sym_SQUOTE, - ACTIONS(6638), 1, + ACTIONS(940), 1, anon_sym_BQUOTE, - ACTIONS(6640), 1, - aux_sym_path_token1, - ACTIONS(6642), 1, + ACTIONS(952), 1, sym_raw_string_begin, - STATE(1772), 1, + ACTIONS(6644), 1, + aux_sym_path_token1, + STATE(2426), 1, sym_val_string, - STATE(3433), 1, + STATE(3426), 1, sym_comment, - STATE(1780), 4, + STATE(2469), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104477] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - anon_sym_LBRACE, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(722), 1, - sym__immediate_decimal, - STATE(3434), 1, - sym_comment, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(721), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104508] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1442), 1, - anon_sym_BANG, - STATE(3435), 1, - sym_comment, - ACTIONS(1440), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1438), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [104531] = 10, + [104379] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(1592), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1762), 1, + ACTIONS(1838), 1, aux_sym_unquoted_token2, - ACTIONS(6644), 1, + ACTIONS(3422), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6546), 1, anon_sym_DOLLAR, ACTIONS(6646), 1, aux_sym__immediate_decimal_token2, - STATE(642), 1, + STATE(1445), 1, sym__immediate_decimal, - STATE(3436), 1, + STATE(3427), 1, sym_comment, ACTIONS(6648), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(898), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104564] = 10, + [104412] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(1635), 1, + ACTIONS(1693), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1762), 1, + ACTIONS(1838), 1, aux_sym_unquoted_token2, - ACTIONS(6644), 1, + ACTIONS(6546), 1, anon_sym_DOLLAR, ACTIONS(6650), 1, aux_sym__immediate_decimal_token2, - STATE(941), 1, + STATE(976), 1, sym__immediate_decimal, - STATE(3437), 1, + STATE(3428), 1, sym_comment, ACTIONS(6652), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(1334), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104597] = 9, + [104445] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(105), 1, - sym_raw_string_begin, ACTIONS(6654), 1, anon_sym_DQUOTE, ACTIONS(6656), 1, @@ -226212,475 +226119,655 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(6660), 1, aux_sym_path_token1, - STATE(502), 1, + ACTIONS(6662), 1, + sym_raw_string_begin, + STATE(1899), 1, sym_val_string, - STATE(3438), 1, + STATE(3429), 1, sym_comment, - STATE(480), 4, + STATE(1958), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104628] = 6, + [104476] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6662), 1, - anon_sym_DOT, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(3940), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6580), 1, + anon_sym_DOLLAR, ACTIONS(6664), 1, - aux_sym__immediate_decimal_token5, - STATE(3439), 1, + aux_sym__immediate_decimal_token2, + STATE(1852), 1, + sym__immediate_decimal, + STATE(3430), 1, sym_comment, - ACTIONS(1736), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [104653] = 5, - ACTIONS(3), 1, + ACTIONS(6666), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1917), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104509] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6666), 1, - aux_sym__immediate_decimal_token5, - STATE(3440), 1, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(1744), 1, + aux_sym_unquoted_token2, + ACTIONS(3956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6580), 1, + anon_sym_DOLLAR, + ACTIONS(6668), 1, + aux_sym__immediate_decimal_token2, + STATE(2058), 1, + sym__immediate_decimal, + STATE(3431), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104676] = 9, + ACTIONS(6670), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(874), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104542] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6668), 1, + ACTIONS(834), 1, anon_sym_DQUOTE, - ACTIONS(6670), 1, + ACTIONS(836), 1, anon_sym_SQUOTE, - ACTIONS(6672), 1, + ACTIONS(838), 1, anon_sym_BQUOTE, - ACTIONS(6674), 1, - aux_sym_path_token1, - ACTIONS(6676), 1, + ACTIONS(852), 1, sym_raw_string_begin, - STATE(3441), 1, - sym_comment, - STATE(3677), 1, + ACTIONS(6672), 1, + aux_sym_path_token1, + STATE(2384), 1, sym_val_string, - STATE(3791), 4, + STATE(3432), 1, + sym_comment, + STATE(2449), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104707] = 10, + [104573] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1744), 1, aux_sym_unquoted_token2, - ACTIONS(4836), 1, + ACTIONS(3357), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, + ACTIONS(6580), 1, anon_sym_DOLLAR, - ACTIONS(6678), 1, + ACTIONS(6674), 1, aux_sym__immediate_decimal_token2, - STATE(2433), 1, + STATE(1435), 1, sym__immediate_decimal, - STATE(3442), 1, + STATE(3433), 1, sym_comment, - ACTIONS(6680), 2, + ACTIONS(6676), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2576), 2, + STATE(687), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104740] = 10, + [104606] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(1744), 1, aux_sym_unquoted_token2, - ACTIONS(4844), 1, + ACTIONS(3372), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, + ACTIONS(6580), 1, anon_sym_DOLLAR, - ACTIONS(6682), 1, + ACTIONS(6678), 1, aux_sym__immediate_decimal_token2, - STATE(2626), 1, + STATE(1488), 1, sym__immediate_decimal, - STATE(3443), 1, + STATE(3434), 1, sym_comment, - ACTIONS(6684), 2, + ACTIONS(6680), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104773] = 9, + [104639] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6686), 1, + ACTIONS(6682), 1, anon_sym_DQUOTE, - ACTIONS(6688), 1, + ACTIONS(6684), 1, anon_sym_SQUOTE, - ACTIONS(6690), 1, + ACTIONS(6686), 1, anon_sym_BQUOTE, - ACTIONS(6692), 1, + ACTIONS(6688), 1, aux_sym_path_token1, + ACTIONS(6690), 1, + sym_raw_string_begin, + STATE(3435), 1, + sym_comment, + STATE(3938), 1, + sym_val_string, + STATE(4144), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104670] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6692), 1, + anon_sym_DQUOTE, ACTIONS(6694), 1, + anon_sym_SQUOTE, + ACTIONS(6696), 1, + anon_sym_BQUOTE, + ACTIONS(6698), 1, + aux_sym_path_token1, + ACTIONS(6700), 1, sym_raw_string_begin, - STATE(3268), 1, + STATE(1716), 1, sym_val_string, - STATE(3444), 1, + STATE(3436), 1, + sym_comment, + STATE(1774), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104701] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6702), 1, + anon_sym_DQUOTE, + ACTIONS(6704), 1, + anon_sym_SQUOTE, + ACTIONS(6706), 1, + anon_sym_BQUOTE, + ACTIONS(6708), 1, + aux_sym_path_token1, + ACTIONS(6710), 1, + sym_raw_string_begin, + STATE(2360), 1, + sym_val_string, + STATE(3437), 1, + sym_comment, + STATE(2388), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104732] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(6558), 1, + aux_sym_path_token1, + ACTIONS(6712), 1, + anon_sym_DQUOTE, + ACTIONS(6714), 1, + anon_sym_SQUOTE, + ACTIONS(6716), 1, + anon_sym_BQUOTE, + STATE(2374), 1, + sym_val_string, + STATE(3438), 1, + sym_comment, + STATE(2234), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104763] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1422), 1, + sym_raw_string_begin, + ACTIONS(6718), 1, + anon_sym_DQUOTE, + ACTIONS(6720), 1, + anon_sym_SQUOTE, + ACTIONS(6722), 1, + anon_sym_BQUOTE, + ACTIONS(6724), 1, + aux_sym_path_token1, + STATE(3439), 1, + sym_comment, + STATE(3618), 1, + sym_val_string, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104794] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6726), 1, + anon_sym_DQUOTE, + ACTIONS(6728), 1, + anon_sym_SQUOTE, + ACTIONS(6730), 1, + anon_sym_BQUOTE, + ACTIONS(6732), 1, + aux_sym_path_token1, + ACTIONS(6734), 1, + sym_raw_string_begin, + STATE(339), 1, + sym_val_string, + STATE(3440), 1, + sym_comment, + STATE(353), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104825] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(6712), 1, + anon_sym_DQUOTE, + ACTIONS(6714), 1, + anon_sym_SQUOTE, + ACTIONS(6716), 1, + anon_sym_BQUOTE, + ACTIONS(6736), 1, + aux_sym_path_token1, + STATE(2264), 1, + sym_val_string, + STATE(3441), 1, sym_comment, - STATE(3372), 4, + STATE(2234), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104804] = 5, + [104856] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6696), 1, + ACTIONS(6738), 1, aux_sym__immediate_decimal_token5, - STATE(3445), 1, + STATE(3442), 1, sym_comment, ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, ACTIONS(773), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104827] = 10, + [104879] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(6740), 1, + anon_sym_DQUOTE, + ACTIONS(6742), 1, + anon_sym_SQUOTE, + ACTIONS(6744), 1, + anon_sym_BQUOTE, + ACTIONS(6746), 1, + aux_sym_path_token1, + STATE(406), 1, + sym_val_string, + STATE(3443), 1, + sym_comment, + STATE(419), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [104910] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1744), 1, aux_sym_unquoted_token2, - ACTIONS(4825), 1, + ACTIONS(3896), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5164), 1, + ACTIONS(6580), 1, anon_sym_DOLLAR, - ACTIONS(6698), 1, + ACTIONS(6748), 1, aux_sym__immediate_decimal_token2, - STATE(2406), 1, + STATE(1830), 1, sym__immediate_decimal, - STATE(3446), 1, + STATE(3444), 1, sym_comment, - ACTIONS(6700), 2, + ACTIONS(6750), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2500), 2, + STATE(687), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104860] = 10, + [104943] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1744), 1, aux_sym_unquoted_token2, - ACTIONS(4840), 1, + ACTIONS(3900), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5164), 1, + ACTIONS(6580), 1, anon_sym_DOLLAR, - ACTIONS(6702), 1, + ACTIONS(6752), 1, aux_sym__immediate_decimal_token2, - STATE(2523), 1, + STATE(1956), 1, sym__immediate_decimal, - STATE(3447), 1, + STATE(3445), 1, sym_comment, - ACTIONS(6704), 2, + ACTIONS(6754), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104893] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3448), 1, - sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104914] = 10, + [104976] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6335), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - STATE(3449), 1, + ACTIONS(1422), 1, + sym_raw_string_begin, + ACTIONS(6614), 1, + aux_sym_path_token1, + ACTIONS(6718), 1, + anon_sym_DQUOTE, + ACTIONS(6720), 1, + anon_sym_SQUOTE, + ACTIONS(6722), 1, + anon_sym_BQUOTE, + STATE(3318), 1, + sym_val_string, + STATE(3446), 1, sym_comment, - STATE(4159), 1, - sym__immediate_decimal, - ACTIONS(6339), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4234), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104947] = 5, + STATE(3527), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [105007] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6706), 1, - aux_sym__immediate_decimal_token5, - STATE(3450), 1, + STATE(3447), 1, sym_comment, - ACTIONS(771), 3, + ACTIONS(878), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 6, + sym__unquoted_pattern_in_list, + ACTIONS(880), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [104970] = 10, - ACTIONS(103), 1, + [105028] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(1651), 1, + anon_sym_LBRACE, + ACTIONS(2881), 1, anon_sym_DOLLAR, - ACTIONS(5930), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6708), 1, - aux_sym__immediate_decimal_token2, - STATE(3451), 1, - sym_comment, - STATE(3687), 1, + STATE(741), 1, sym__immediate_decimal, - ACTIONS(6710), 2, + STATE(3448), 1, + sym_comment, + ACTIONS(6268), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3625), 2, + ACTIONS(6756), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(739), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105003] = 4, - ACTIONS(103), 1, + [105059] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3452), 1, + ACTIONS(6463), 1, + anon_sym_DASH2, + STATE(3449), 1, sym_comment, - ACTIONS(771), 4, + ACTIONS(4444), 9, + sym_identifier, + sym__newline, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105080] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3450), 1, + sym_comment, + ACTIONS(771), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(773), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [105024] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(6145), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6712), 1, - aux_sym__immediate_decimal_token2, - STATE(3453), 1, - sym_comment, - STATE(4112), 1, - sym__immediate_decimal, - ACTIONS(6714), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(888), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105057] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(942), 1, - anon_sym_DQUOTE, - ACTIONS(944), 1, - anon_sym_SQUOTE, - ACTIONS(946), 1, - anon_sym_BQUOTE, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(6716), 1, - aux_sym_path_token1, - STATE(2455), 1, - sym_val_string, - STATE(3454), 1, - sym_comment, - STATE(2472), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [105088] = 10, - ACTIONS(103), 1, + [105101] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(3374), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6718), 1, + ACTIONS(1625), 1, + anon_sym_LBRACE, + ACTIONS(2881), 1, anon_sym_DOLLAR, - ACTIONS(6720), 1, - aux_sym__immediate_decimal_token2, - STATE(1441), 1, + STATE(873), 1, sym__immediate_decimal, - STATE(3455), 1, + STATE(3451), 1, sym_comment, - ACTIONS(6722), 2, + ACTIONS(6268), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + ACTIONS(6756), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(872), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105121] = 11, + [105132] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, + ACTIONS(860), 1, anon_sym_RBRACK, - ACTIONS(968), 1, + ACTIONS(960), 1, sym__entry_separator, - ACTIONS(6222), 1, + ACTIONS(6319), 1, sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, + ACTIONS(6514), 1, anon_sym_LPAREN2, - ACTIONS(6724), 1, + ACTIONS(6758), 1, anon_sym_DOT_DOT2, - ACTIONS(6728), 1, + ACTIONS(6762), 1, sym_filesize_unit, - ACTIONS(6730), 1, + ACTIONS(6764), 1, sym_duration_unit, - STATE(3456), 1, + STATE(3452), 1, sym_comment, - STATE(4728), 1, + STATE(4701), 1, sym__expr_parenthesized_immediate, - ACTIONS(6726), 2, + ACTIONS(6760), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [105156] = 10, - ACTIONS(103), 1, + [105167] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(6169), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6171), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - STATE(3457), 1, - sym_comment, - STATE(3693), 1, + ACTIONS(1647), 1, + anon_sym_LBRACE, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(752), 1, sym__immediate_decimal, - ACTIONS(6173), 2, + STATE(3453), 1, + sym_comment, + ACTIONS(6268), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + ACTIONS(6756), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(749), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105189] = 10, + [105198] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6766), 1, + anon_sym_DOT, + ACTIONS(6768), 1, + aux_sym__immediate_decimal_token5, + STATE(3454), 1, + sym_comment, + ACTIONS(1762), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1760), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [105223] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(6770), 1, + anon_sym_DOT, + ACTIONS(6772), 1, + aux_sym__immediate_decimal_token5, + STATE(3455), 1, + sym_comment, + ACTIONS(1760), 4, anon_sym_LPAREN2, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(3450), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6718), 1, - anon_sym_DOLLAR, - ACTIONS(6732), 1, - aux_sym__immediate_decimal_token2, - STATE(1495), 1, - sym__immediate_decimal, - STATE(3458), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1762), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [105248] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3456), 1, sym_comment, - ACTIONS(6734), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1264), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105222] = 9, + ACTIONS(878), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(880), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105269] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6774), 1, + aux_sym__immediate_decimal_token5, + STATE(3457), 1, + sym_comment, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105292] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6736), 1, - anon_sym_DQUOTE, - ACTIONS(6738), 1, - anon_sym_SQUOTE, - ACTIONS(6740), 1, - anon_sym_BQUOTE, - ACTIONS(6742), 1, - aux_sym_path_token1, - ACTIONS(6744), 1, - sym_raw_string_begin, - STATE(1882), 1, - sym_val_string, + ACTIONS(6776), 1, + anon_sym_DOT, + ACTIONS(6778), 1, + aux_sym__immediate_decimal_token5, + STATE(3458), 1, + sym_comment, + ACTIONS(1760), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1762), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [105317] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6780), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6782), 1, + aux_sym__immediate_decimal_token5, STATE(3459), 1, sym_comment, - STATE(1953), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [105253] = 5, + ACTIONS(1728), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1726), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [105342] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6526), 1, - aux_sym__immediate_decimal_token5, STATE(3460), 1, sym_comment, - ACTIONS(739), 3, + ACTIONS(739), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, + sym__unquoted_pattern_in_list, ACTIONS(741), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -226688,479 +226775,291 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [105276] = 10, + [105363] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(5003), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5005), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5116), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6746), 1, - anon_sym_DOLLAR, - STATE(2612), 1, - sym__immediate_decimal, STATE(3461), 1, sym_comment, - ACTIONS(6748), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2886), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105309] = 10, + ACTIONS(739), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105384] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5013), 1, + ACTIONS(6784), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5116), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6746), 1, - anon_sym_DOLLAR, - STATE(2983), 1, - sym__immediate_decimal, + ACTIONS(6786), 1, + aux_sym__immediate_decimal_token5, STATE(3462), 1, sym_comment, - ACTIONS(6750), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3290), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105342] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1726), 4, + sym__space, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(3940), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, - anon_sym_DOLLAR, - ACTIONS(6752), 1, - aux_sym__immediate_decimal_token2, - STATE(1850), 1, - sym__immediate_decimal, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1728), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [105409] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(3463), 1, sym_comment, - ACTIONS(6754), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1960), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105375] = 10, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105430] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(1794), 1, anon_sym_DOLLAR, - ACTIONS(4870), 1, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6090), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, + ACTIONS(6092), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5048), 1, - aux_sym_unquoted_token2, - STATE(2565), 1, - sym__immediate_decimal, + ACTIONS(6319), 1, + aux_sym__unquoted_in_list_token2, STATE(3464), 1, sym_comment, - ACTIONS(4874), 2, + STATE(3625), 1, + sym__immediate_decimal, + ACTIONS(6094), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2682), 2, + STATE(3780), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105408] = 10, - ACTIONS(103), 1, + [105463] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(3954), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, - anon_sym_DOLLAR, - ACTIONS(6756), 1, - aux_sym__immediate_decimal_token2, - STATE(1974), 1, - sym__immediate_decimal, STATE(3465), 1, sym_comment, - ACTIONS(6758), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(888), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105441] = 10, + ACTIONS(878), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(880), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105484] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1744), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(5187), 1, anon_sym_DOLLAR, - ACTIONS(6430), 1, + ACTIONS(6470), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6788), 1, aux_sym__immediate_decimal_token2, STATE(3466), 1, sym_comment, - STATE(3977), 1, + STATE(4771), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6790), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4135), 2, + STATE(874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105474] = 9, + [105517] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(827), 1, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(6792), 1, anon_sym_DQUOTE, - ACTIONS(829), 1, + ACTIONS(6794), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(6796), 1, anon_sym_BQUOTE, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(6764), 1, + ACTIONS(6798), 1, aux_sym_path_token1, - STATE(2404), 1, + STATE(500), 1, sym_val_string, STATE(3467), 1, sym_comment, - STATE(2454), 4, + STATE(493), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105505] = 10, + [105548] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(1655), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(6718), 1, - anon_sym_DOLLAR, - ACTIONS(6766), 1, - aux_sym__immediate_decimal_token2, - STATE(693), 1, - sym__immediate_decimal, STATE(3468), 1, sym_comment, - ACTIONS(6768), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(950), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105538] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(6718), 1, - anon_sym_DOLLAR, - ACTIONS(6770), 1, - aux_sym__immediate_decimal_token2, - STATE(1047), 1, - sym__immediate_decimal, - STATE(3469), 1, - sym_comment, - ACTIONS(6772), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1264), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105571] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6774), 1, - anon_sym_DOT, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token5, - STATE(3470), 1, - sym_comment, - ACTIONS(1736), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 4, + ACTIONS(771), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [105596] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(773), 6, + sym__space, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4916), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5048), 1, - aux_sym_unquoted_token2, - STATE(2816), 1, - sym__immediate_decimal, - STATE(3471), 1, - sym_comment, - ACTIONS(4920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3201), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105629] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105569] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1744), 1, aux_sym_unquoted_token2, - ACTIONS(3347), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(5187), 1, anon_sym_DOLLAR, - ACTIONS(6778), 1, - aux_sym__immediate_decimal_token2, - STATE(1436), 1, - sym__immediate_decimal, - STATE(3472), 1, - sym_comment, - ACTIONS(6780), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(704), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105662] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(3378), 1, + ACTIONS(5694), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, - anon_sym_DOLLAR, - ACTIONS(6782), 1, + ACTIONS(6800), 1, aux_sym__immediate_decimal_token2, - STATE(1470), 1, - sym__immediate_decimal, - STATE(3473), 1, + STATE(3469), 1, sym_comment, - ACTIONS(6784), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(888), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105695] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(3762), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, - anon_sym_DOLLAR, - ACTIONS(6786), 1, - aux_sym__immediate_decimal_token2, - STATE(1827), 1, + STATE(3583), 1, sym__immediate_decimal, - STATE(3474), 1, - sym_comment, - ACTIONS(6788), 2, + ACTIONS(6802), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(3626), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105728] = 10, + [105602] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1744), 1, aux_sym_unquoted_token2, - ACTIONS(3900), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(5187), 1, anon_sym_DOLLAR, - ACTIONS(6790), 1, + ACTIONS(5862), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6804), 1, aux_sym__immediate_decimal_token2, - STATE(1952), 1, - sym__immediate_decimal, - STATE(3475), 1, + STATE(3470), 1, sym_comment, - ACTIONS(6792), 2, + STATE(3924), 1, + sym__immediate_decimal, + ACTIONS(6806), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105761] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6794), 1, - anon_sym_DQUOTE, - ACTIONS(6796), 1, - anon_sym_SQUOTE, - ACTIONS(6798), 1, - anon_sym_BQUOTE, - ACTIONS(6800), 1, - aux_sym_path_token1, - ACTIONS(6802), 1, - sym_raw_string_begin, - STATE(3476), 1, - sym_comment, - STATE(3934), 1, - sym_val_string, - STATE(4140), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [105792] = 9, + [105635] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(6544), 1, - anon_sym_DQUOTE, - ACTIONS(6546), 1, - anon_sym_SQUOTE, - ACTIONS(6548), 1, - anon_sym_BQUOTE, - ACTIONS(6804), 1, - aux_sym_path_token1, - STATE(2263), 1, - sym_val_string, - STATE(3477), 1, + ACTIONS(1470), 1, + anon_sym_BANG, + STATE(3471), 1, sym_comment, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [105823] = 10, + ACTIONS(1468), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1466), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [105658] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(1794), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6027), 1, anon_sym_LPAREN2, - ACTIONS(5841), 1, + ACTIONS(6154), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, + ACTIONS(6156), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3478), 1, + ACTIONS(6808), 1, + aux_sym__unquoted_in_record_token2, + STATE(3472), 1, sym_comment, - STATE(3603), 1, + STATE(3644), 1, sym__immediate_decimal, - ACTIONS(5845), 2, + ACTIONS(6158), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3860), 2, + STATE(3780), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105856] = 9, + [105691] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(6552), 1, - anon_sym_DQUOTE, - ACTIONS(6554), 1, - anon_sym_SQUOTE, - ACTIONS(6556), 1, - anon_sym_BQUOTE, - ACTIONS(6692), 1, - aux_sym_path_token1, - STATE(3268), 1, - sym_val_string, - STATE(3479), 1, - sym_comment, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [105887] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6806), 1, - anon_sym_DOT, - ACTIONS(6808), 1, + ACTIONS(6526), 1, aux_sym__immediate_decimal_token5, - STATE(3480), 1, + STATE(3473), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(747), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_record, + ACTIONS(749), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [105912] = 4, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [105714] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3481), 1, + STATE(3474), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(739), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(749), 6, + ACTIONS(741), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [105933] = 6, + [105735] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6810), 1, aux_sym__immediate_decimal_token1, ACTIONS(6812), 1, aux_sym__immediate_decimal_token5, - STATE(3482), 1, + STATE(3475), 1, sym_comment, ACTIONS(1726), 4, anon_sym_LPAREN2, @@ -227172,7 +227071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [105958] = 9, + [105760] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6814), 1, @@ -227185,19 +227084,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_path_token1, ACTIONS(6822), 1, sym_raw_string_begin, - STATE(1733), 1, + STATE(376), 1, sym_val_string, - STATE(3483), 1, + STATE(3476), 1, sym_comment, - STATE(1749), 4, + STATE(385), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105989] = 4, + [105791] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3484), 1, + STATE(3477), 1, sym_comment, ACTIONS(771), 4, anon_sym_RBRACK, @@ -227211,393 +227110,537 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [106010] = 4, + [105812] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3485), 1, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6226), 1, + anon_sym_DOLLAR, + ACTIONS(6228), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6230), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6319), 1, + aux_sym__unquoted_in_list_token2, + STATE(3478), 1, + sym_comment, + STATE(4355), 1, + sym__immediate_decimal, + ACTIONS(6232), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4225), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105845] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3479), 1, sym_comment, - ACTIONS(849), 4, + ACTIONS(771), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(851), 6, + ACTIONS(773), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [106031] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6824), 1, - anon_sym_DQUOTE, - ACTIONS(6826), 1, - anon_sym_SQUOTE, - ACTIONS(6828), 1, - anon_sym_BQUOTE, - ACTIONS(6830), 1, - aux_sym_path_token1, - ACTIONS(6832), 1, - sym_raw_string_begin, - STATE(2359), 1, - sym_val_string, - STATE(3486), 1, - sym_comment, - STATE(2420), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [106062] = 8, + [105866] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(6834), 1, + ACTIONS(6480), 1, + aux_sym__immediate_decimal_token5, + STATE(3480), 1, + sym_comment, + ACTIONS(747), 2, anon_sym_DOT_DOT2, - ACTIONS(6838), 1, + sym__unquoted_pattern, + ACTIONS(749), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(6840), 1, sym_duration_unit, - STATE(3487), 1, + [105889] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + ACTIONS(6226), 1, + anon_sym_DOLLAR, + ACTIONS(6252), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6254), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6808), 1, + aux_sym__unquoted_in_record_token2, + STATE(3481), 1, sym_comment, - ACTIONS(6836), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [106091] = 4, - ACTIONS(3), 1, + STATE(4169), 1, + sym__immediate_decimal, + ACTIONS(6256), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4225), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105922] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3488), 1, + STATE(3482), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(878), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_list, + ACTIONS(880), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106112] = 4, + sym__entry_separator, + [105943] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3489), 1, + ACTIONS(6824), 1, + anon_sym_DOT, + ACTIONS(6826), 1, + aux_sym__immediate_decimal_token5, + STATE(3483), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(1760), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1762), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 6, - sym__space, + [105968] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(860), 1, + anon_sym_RBRACE, + ACTIONS(960), 1, + sym__entry_separator, + ACTIONS(5107), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(6808), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6828), 1, + anon_sym_DOT_DOT2, + ACTIONS(6832), 1, sym_filesize_unit, + ACTIONS(6834), 1, sym_duration_unit, - [106133] = 9, + STATE(3484), 1, + sym_comment, + STATE(4678), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6830), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [106003] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6842), 1, - anon_sym_DQUOTE, - ACTIONS(6844), 1, - anon_sym_SQUOTE, - ACTIONS(6846), 1, - anon_sym_BQUOTE, - ACTIONS(6848), 1, - aux_sym_path_token1, - ACTIONS(6850), 1, - sym_raw_string_begin, - STATE(337), 1, - sym_val_string, - STATE(3490), 1, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(4946), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(4948), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5117), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(6836), 1, + anon_sym_DOLLAR, + STATE(2616), 1, + sym__immediate_decimal, + STATE(3485), 1, sym_comment, - STATE(343), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [106164] = 4, + ACTIONS(6838), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2827), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106036] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3491), 1, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(5046), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5048), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5117), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(6836), 1, + anon_sym_DOLLAR, + STATE(3070), 1, + sym__immediate_decimal, + STATE(3486), 1, sym_comment, - ACTIONS(771), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 6, + ACTIONS(6840), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3271), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106069] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1673), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [106184] = 4, + ACTIONS(1677), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1838), 1, + aux_sym_unquoted_token2, + ACTIONS(6546), 1, + anon_sym_DOLLAR, + ACTIONS(6842), 1, + aux_sym__immediate_decimal_token2, + STATE(693), 1, + sym__immediate_decimal, + STATE(3487), 1, + sym_comment, + ACTIONS(6844), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(898), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106102] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3492), 1, - sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, + ACTIONS(1744), 1, sym__unquoted_pattern, - ACTIONS(851), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(6846), 1, + anon_sym_DOT_DOT2, + ACTIONS(6850), 1, sym_filesize_unit, - sym_duration_unit, - [106204] = 7, - ACTIONS(3), 1, - anon_sym_POUND, ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2843), 1, - sym_cell_path, - STATE(3493), 1, + sym_duration_unit, + STATE(3488), 1, sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1866), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [106230] = 8, - ACTIONS(3), 1, + ACTIONS(6848), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(960), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [106131] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR, - STATE(3494), 1, + ACTIONS(5009), 1, + aux_sym_unquoted_token2, + ACTIONS(5803), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5805), 1, + aux_sym__immediate_decimal_token2, + STATE(3489), 1, sym_comment, - STATE(3919), 1, + STATE(3615), 1, sym__immediate_decimal, - ACTIONS(5934), 2, + ACTIONS(5807), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3853), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106164] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3096), 1, + anon_sym_LPAREN2, + ACTIONS(3679), 1, + anon_sym_DOLLAR, + ACTIONS(5009), 1, + aux_sym_unquoted_token2, + ACTIONS(6104), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6106), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, + STATE(3490), 1, + sym_comment, + STATE(3962), 1, + sym__immediate_decimal, + ACTIONS(6108), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(3004), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106258] = 8, + [106197] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(1631), 1, + anon_sym_LBRACE, + ACTIONS(2881), 1, anon_sym_DOLLAR, - STATE(2997), 1, + STATE(747), 1, sym__immediate_decimal, - STATE(3495), 1, + STATE(3491), 1, sym_comment, - ACTIONS(4912), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6856), 2, + ACTIONS(6268), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2996), 2, + ACTIONS(6756), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(743), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106286] = 7, + [106228] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2914), 1, - sym_cell_path, - STATE(3496), 1, + ACTIONS(1592), 1, + anon_sym_DOLLAR, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + STATE(933), 1, + sym__immediate_decimal, + STATE(3492), 1, sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1858), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [106312] = 4, - ACTIONS(103), 1, + ACTIONS(1602), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1635), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(725), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106256] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3497), 1, + STATE(3493), 1, sym_comment, - ACTIONS(849), 3, - anon_sym_RBRACE, + ACTIONS(739), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(851), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(741), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [106332] = 8, + [106276] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(1671), 1, anon_sym_DOLLAR, - STATE(3498), 1, - sym_comment, - STATE(4020), 1, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + STATE(1501), 1, sym__immediate_decimal, - ACTIONS(6055), 2, + STATE(3494), 1, + sym_comment, + ACTIONS(3444), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6858), 2, + ACTIONS(3446), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2998), 2, + STATE(1336), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106360] = 8, + [106304] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1508), 1, + sym__entry_separator, + STATE(3495), 1, + sym_comment, + ACTIONS(1506), 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [106324] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3830), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(3499), 1, - sym_comment, - STATE(4106), 1, + STATE(2096), 1, sym__immediate_decimal, - ACTIONS(6073), 2, + STATE(3496), 1, + sym_comment, + ACTIONS(3956), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6860), 2, + ACTIONS(3958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4105), 2, + STATE(725), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106388] = 5, + [106352] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6862), 1, + ACTIONS(6854), 1, aux_sym__immediate_decimal_token5, - STATE(3500), 1, + STATE(3497), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1810), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1804), 4, + ACTIONS(1812), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [106410] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(6864), 1, - anon_sym_DOT_DOT2, - ACTIONS(6868), 1, - sym_filesize_unit, - ACTIONS(6870), 1, - sym_duration_unit, - STATE(3501), 1, - sym_comment, - ACTIONS(6866), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [106438] = 8, + [106374] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(1313), 1, + STATE(1472), 1, sym__immediate_decimal, - STATE(3502), 1, + STATE(3498), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(3372), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1306), 2, + ACTIONS(3374), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(725), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106466] = 8, + [106402] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(2549), 1, anon_sym_DOLLAR, - STATE(2710), 1, - sym__immediate_decimal, - STATE(3503), 1, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + STATE(3499), 1, sym_comment, - ACTIONS(4884), 2, + STATE(3911), 1, + sym__immediate_decimal, + ACTIONS(6090), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6872), 2, + ACTIONS(6856), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2998), 2, + STATE(3780), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106494] = 8, + [106430] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(3884), 1, anon_sym_DOLLAR, - STATE(727), 1, - sym__immediate_decimal, - STATE(3504), 1, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + STATE(3500), 1, sym_comment, - ACTIONS(1594), 2, + STATE(4717), 1, + sym__immediate_decimal, + ACTIONS(6280), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6856), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + STATE(4225), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [106458] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6858), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2874), 1, + sym_cell_path, + STATE(3501), 1, + sym_comment, + STATE(3589), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1840), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [106484] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3502), 1, + sym_comment, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [106504] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3884), 1, + anon_sym_DOLLAR, + ACTIONS(6027), 1, + anon_sym_LPAREN2, + STATE(3503), 1, + sym_comment, + STATE(4106), 1, + sym__immediate_decimal, + ACTIONS(6280), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, + ACTIONS(6856), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4105), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106522] = 4, + [106532] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1480), 1, + ACTIONS(1516), 1, sym__entry_separator, - STATE(3505), 1, + STATE(3504), 1, sym_comment, - ACTIONS(1478), 8, + ACTIONS(1514), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -227606,110 +227649,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [106542] = 8, + [106552] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(6858), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2905), 1, + sym_cell_path, + STATE(3505), 1, + sym_comment, + STATE(3589), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1870), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [106578] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6860), 1, + anon_sym_DOT, + ACTIONS(6862), 1, + aux_sym__immediate_decimal_token5, + STATE(3506), 1, + sym_comment, + ACTIONS(1762), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1760), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [106602] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(958), 1, - sym__immediate_decimal, - STATE(3506), 1, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(3507), 1, sym_comment, - ACTIONS(1635), 2, + STATE(3922), 1, + sym__immediate_decimal, + ACTIONS(5862), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1637), 2, + ACTIONS(5864), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(725), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106570] = 8, + [106630] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(6864), 1, anon_sym_DOLLAR, - STATE(3274), 1, + STATE(2961), 1, sym__immediate_decimal, - STATE(3507), 1, + STATE(3508), 1, sym_comment, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(5081), 2, + ACTIONS(4930), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(3271), 2, + ACTIONS(6866), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2947), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106598] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1476), 1, - sym__entry_separator, - STATE(3508), 1, - sym_comment, - ACTIONS(1474), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [106618] = 8, + [106658] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, + ACTIONS(4834), 1, + anon_sym_DOLLAR, + STATE(1333), 1, + sym__immediate_decimal, STATE(3509), 1, sym_comment, - STATE(4200), 1, - sym__immediate_decimal, - ACTIONS(6335), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6874), 2, + ACTIONS(1679), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + ACTIONS(1710), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1332), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106646] = 8, + [106686] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(727), 1, + STATE(723), 1, sym__immediate_decimal, STATE(3510), 1, sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(1602), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(726), 2, + ACTIONS(1635), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(722), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106674] = 4, + [106714] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3511), 1, + sym_comment, + ACTIONS(878), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(880), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [106734] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3512), 1, + sym_comment, + ACTIONS(6868), 9, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [106752] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1516), 1, + ACTIONS(1520), 1, sym__entry_separator, - STATE(3511), 1, + STATE(3513), 1, sym_comment, - ACTIONS(1514), 8, + ACTIONS(1518), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -227718,331 +227813,366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [106694] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(2614), 1, - sym__immediate_decimal, - STATE(3512), 1, - sym_comment, - ACTIONS(4844), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1306), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106722] = 8, + [106772] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3830), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(3513), 1, - sym_comment, - STATE(3930), 1, + STATE(933), 1, sym__immediate_decimal, - ACTIONS(6073), 2, + STATE(3514), 1, + sym_comment, + ACTIONS(3956), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6860), 2, + ACTIONS(3958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + STATE(725), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106750] = 6, + [106800] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6876), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6878), 1, + ACTIONS(6870), 1, aux_sym__immediate_decimal_token5, - STATE(3514), 1, + STATE(3515), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1812), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 5, + ACTIONS(1810), 6, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [106774] = 8, + [106822] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3516), 1, + sym_comment, + ACTIONS(771), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(773), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [106842] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3232), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(6872), 1, anon_sym_DOLLAR, - STATE(2534), 1, + STATE(2844), 1, sym__immediate_decimal, - STATE(3515), 1, + STATE(3517), 1, sym_comment, - ACTIONS(4840), 2, + ACTIONS(4900), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, + ACTIONS(6874), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(3082), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106802] = 8, + [106870] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(6880), 1, + ACTIONS(1671), 1, anon_sym_DOLLAR, - STATE(2888), 1, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + STATE(1333), 1, sym__immediate_decimal, - STATE(3516), 1, + STATE(3518), 1, sym_comment, - ACTIONS(4916), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6882), 2, + ACTIONS(1679), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3130), 2, + ACTIONS(1710), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1332), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106830] = 8, + [106898] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(3884), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6027), 1, anon_sym_LPAREN2, - STATE(3517), 1, + STATE(3519), 1, sym_comment, - STATE(4229), 1, + STATE(4167), 1, sym__immediate_decimal, - ACTIONS(6442), 2, + ACTIONS(6228), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6884), 2, + ACTIONS(6876), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, STATE(4107), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106858] = 6, - ACTIONS(3), 1, + [106926] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6886), 1, - anon_sym_DOT, - ACTIONS(6888), 1, - aux_sym__immediate_decimal_token5, - STATE(3518), 1, + STATE(3520), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(878), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, + sym__unquoted_pattern_in_record, + ACTIONS(880), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106882] = 8, + sym__entry_separator, + [106946] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(1671), 1, anon_sym_DOLLAR, - STATE(2993), 1, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + STATE(1271), 1, sym__immediate_decimal, - STATE(3519), 1, + STATE(3521), 1, sym_comment, - ACTIONS(5013), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5015), 2, + ACTIONS(1679), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3226), 2, + ACTIONS(1710), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1334), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106910] = 8, + [106974] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(1671), 1, anon_sym_DOLLAR, - STATE(3520), 1, - sym_comment, - STATE(4124), 1, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + STATE(1337), 1, sym__immediate_decimal, - ACTIONS(6145), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, + STATE(3522), 1, + sym_comment, + ACTIONS(1679), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + ACTIONS(1710), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1336), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106938] = 8, + [107002] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3521), 1, + ACTIONS(1744), 1, + sym__unquoted_pattern, + ACTIONS(6878), 1, + anon_sym_DOT_DOT2, + ACTIONS(6882), 1, + sym_filesize_unit, + ACTIONS(6884), 1, + sym_duration_unit, + STATE(3523), 1, sym_comment, - STATE(4723), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(728), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106966] = 8, + ACTIONS(6880), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(960), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [107030] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(6858), 1, + anon_sym_DOT2, + STATE(2262), 1, + sym_cell_path, + STATE(2492), 1, + sym_path, + STATE(3524), 1, + sym_comment, + STATE(3589), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1462), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [107056] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6768), 1, + aux_sym__immediate_decimal_token5, + STATE(3525), 1, + sym_comment, + ACTIONS(1762), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1760), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [107078] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6778), 1, + aux_sym__immediate_decimal_token5, + STATE(3526), 1, + sym_comment, + ACTIONS(1760), 4, anon_sym_LPAREN2, - STATE(1502), 1, - sym__immediate_decimal, - STATE(3522), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1762), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [107100] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1524), 1, + sym__entry_separator, + STATE(3527), 1, sym_comment, - ACTIONS(3450), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1306), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106994] = 8, + ACTIONS(1522), 8, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [107120] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(3096), 1, anon_sym_LPAREN2, - STATE(2084), 1, - sym__immediate_decimal, - STATE(3523), 1, + ACTIONS(6864), 1, + anon_sym_DOLLAR, + STATE(3528), 1, sym_comment, - ACTIONS(3954), 2, + STATE(4022), 1, + sym__immediate_decimal, + ACTIONS(6104), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(6886), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(2965), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107022] = 8, + [107148] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(3803), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(6043), 1, anon_sym_LPAREN2, - STATE(1487), 1, - sym__immediate_decimal, - STATE(3524), 1, + STATE(3529), 1, sym_comment, - ACTIONS(3378), 2, + STATE(4106), 1, + sym__immediate_decimal, + ACTIONS(6045), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, + ACTIONS(6888), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(4105), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107050] = 8, + [107176] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(1671), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - STATE(956), 1, + STATE(987), 1, sym__immediate_decimal, - STATE(3525), 1, + STATE(3530), 1, sym_comment, - ACTIONS(1655), 2, + ACTIONS(1693), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1657), 2, + ACTIONS(1695), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + STATE(1336), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107078] = 9, - ACTIONS(103), 1, + [107204] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4139), 1, + ACTIONS(6890), 1, + anon_sym_DOT, + ACTIONS(6892), 1, + aux_sym__immediate_decimal_token5, + STATE(3531), 1, + sym_comment, + ACTIONS(747), 2, anon_sym_DOT_DOT2, - ACTIONS(4969), 1, sym__unquoted_pattern, - ACTIONS(6494), 1, + ACTIONS(749), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(6496), 1, sym_duration_unit, - STATE(3526), 1, + [107228] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3532), 1, sym_comment, - ACTIONS(868), 2, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 7, sym__newline, - anon_sym_SEMI, - ACTIONS(4141), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107108] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(6880), 1, - anon_sym_DOLLAR, - STATE(3103), 1, - sym__immediate_decimal, - STATE(3527), 1, - sym_comment, - ACTIONS(4938), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6890), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3101), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107136] = 4, + sym_filesize_unit, + sym_duration_unit, + [107248] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1468), 1, + ACTIONS(1528), 1, sym__entry_separator, - STATE(3528), 1, + STATE(3533), 1, sym_comment, - ACTIONS(1466), 8, + ACTIONS(1526), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -228051,72 +228181,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [107156] = 8, + [107268] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(3529), 1, - sym_comment, - STATE(4676), 1, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(723), 1, sym__immediate_decimal, - ACTIONS(6250), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + STATE(3534), 1, + sym_comment, + ACTIONS(5696), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4107), 2, + ACTIONS(6066), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(722), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107184] = 8, + [107296] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(6864), 1, anon_sym_DOLLAR, - STATE(1300), 1, + STATE(2807), 1, sym__immediate_decimal, - STATE(3530), 1, + STATE(3535), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(4866), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1298), 2, + ACTIONS(6894), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2965), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107212] = 8, + [107324] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(3531), 1, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(3536), 1, sym_comment, - STATE(4106), 1, + STATE(4123), 1, sym__immediate_decimal, - ACTIONS(6250), 2, + ACTIONS(6068), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(6070), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4105), 2, + STATE(725), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107240] = 3, + [107352] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3532), 1, + STATE(3537), 1, sym_comment, - ACTIONS(6894), 9, + ACTIONS(6896), 9, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -228126,519 +228256,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [107258] = 8, + [107370] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(904), 1, + STATE(688), 1, sym__immediate_decimal, - STATE(3533), 1, + STATE(3538), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(1600), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(1602), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(687), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107286] = 5, + [107398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6896), 1, - aux_sym__immediate_decimal_token5, - STATE(3534), 1, + STATE(3539), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(878), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 6, - anon_sym_if, + ACTIONS(880), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107308] = 8, + sym_filesize_unit, + sym_duration_unit, + [107418] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(904), 1, + STATE(951), 1, sym__immediate_decimal, - STATE(3535), 1, + STATE(3540), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1637), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1639), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + STATE(725), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107446] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3839), 1, + anon_sym_DOLLAR, + STATE(3331), 1, + sym__immediate_decimal, + STATE(3541), 1, + sym_comment, + ACTIONS(4950), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(5095), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(728), 2, + STATE(3330), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107336] = 5, - ACTIONS(3), 1, + [107474] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6808), 1, + ACTIONS(6898), 1, aux_sym__immediate_decimal_token5, - STATE(3536), 1, + STATE(3542), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1810), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1812), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + [107496] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6900), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6902), 1, + aux_sym__immediate_decimal_token5, + STATE(3543), 1, + sym_comment, + ACTIONS(1728), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1726), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107358] = 8, + sym__entry_separator, + [107520] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(709), 1, + STATE(925), 1, sym__immediate_decimal, - STATE(3537), 1, + STATE(3544), 1, sym_comment, - ACTIONS(1592), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1594), 2, + ACTIONS(1602), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + ACTIONS(1635), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107386] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3538), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107406] = 8, + [107548] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, + ACTIONS(3884), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6027), 1, anon_sym_LPAREN2, - STATE(3539), 1, + STATE(3545), 1, sym_comment, - STATE(3911), 1, + STATE(4204), 1, sym__immediate_decimal, - ACTIONS(6047), 2, + ACTIONS(6252), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(6904), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + STATE(4107), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107434] = 8, + [107576] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(3540), 1, - sym_comment, - STATE(4750), 1, + STATE(723), 1, sym__immediate_decimal, - ACTIONS(6250), 2, + STATE(3546), 1, + sym_comment, + ACTIONS(3956), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(3958), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4234), 2, + STATE(722), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107462] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3541), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107482] = 4, + [107604] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3542), 1, + ACTIONS(6772), 1, + aux_sym__immediate_decimal_token5, + STATE(3547), 1, sym_comment, - ACTIONS(747), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 6, + ACTIONS(1760), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [107502] = 8, + ACTIONS(1762), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [107626] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(727), 1, + STATE(1942), 1, sym__immediate_decimal, - STATE(3543), 1, + STATE(3548), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(3940), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107530] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(6898), 1, - sym_filesize_unit, - ACTIONS(6900), 1, - sym_duration_unit, - ACTIONS(6902), 1, - sym__unquoted_pattern, - STATE(3544), 1, - sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [107558] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(727), 1, - sym__immediate_decimal, - STATE(3545), 1, - sym_comment, - ACTIONS(6432), 2, + ACTIONS(3942), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(726), 2, + STATE(1917), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107586] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3546), 1, - sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107606] = 8, + [107654] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1671), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - STATE(955), 1, + STATE(900), 1, sym__immediate_decimal, - STATE(3547), 1, + STATE(3549), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1677), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(888), 2, + ACTIONS(1679), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(898), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107634] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token5, - STATE(3548), 1, - sym_comment, - ACTIONS(1736), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [107656] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3549), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107676] = 8, + [107682] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(3232), 1, anon_sym_LPAREN2, - STATE(1083), 1, + ACTIONS(6872), 1, + anon_sym_DOLLAR, + STATE(3081), 1, sym__immediate_decimal, STATE(3550), 1, sym_comment, - ACTIONS(1683), 2, + ACTIONS(4940), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1685), 2, + ACTIONS(6906), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1306), 2, + STATE(3080), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107704] = 8, + [107710] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(3884), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(6027), 1, anon_sym_LPAREN2, - STATE(1300), 1, - sym__immediate_decimal, STATE(3551), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + STATE(4624), 1, + sym__immediate_decimal, + ACTIONS(6280), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1298), 2, + ACTIONS(6856), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4107), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107732] = 8, + [107738] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(4834), 1, anon_sym_DOLLAR, - STATE(727), 1, + STATE(2606), 1, sym__immediate_decimal, STATE(3552), 1, sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, + ACTIONS(4846), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, + ACTIONS(4848), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1336), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107760] = 5, + [107766] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6664), 1, + ACTIONS(6908), 1, aux_sym__immediate_decimal_token5, STATE(3553), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(1810), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1738), 4, + ACTIONS(1812), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [107782] = 6, + [107788] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6904), 1, - anon_sym_DOT, - ACTIONS(6906), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(723), 1, + sym__immediate_decimal, STATE(3554), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107806] = 9, + ACTIONS(6268), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6756), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(722), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107816] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(960), 1, sym__entry_separator, - ACTIONS(6222), 1, + ACTIONS(6319), 1, sym__unquoted_pattern_in_list, - ACTIONS(6468), 1, + ACTIONS(6516), 1, anon_sym_DOT_DOT2, - ACTIONS(6472), 1, + ACTIONS(6520), 1, sym_filesize_unit, - ACTIONS(6474), 1, + ACTIONS(6522), 1, sym_duration_unit, STATE(3555), 1, sym_comment, - ACTIONS(868), 2, + ACTIONS(860), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6470), 2, + ACTIONS(6518), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107836] = 8, - ACTIONS(3), 1, + [107846] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(1956), 1, - sym__immediate_decimal, + ACTIONS(6826), 1, + aux_sym__immediate_decimal_token5, STATE(3556), 1, sym_comment, - ACTIONS(3940), 2, + ACTIONS(1760), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1762), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [107868] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6910), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1960), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107864] = 8, + ACTIONS(6912), 1, + aux_sym__immediate_decimal_token5, + STATE(3557), 1, + sym_comment, + ACTIONS(1728), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1726), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [107892] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(955), 1, - sym__immediate_decimal, - STATE(3557), 1, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(3558), 1, sym_comment, - ACTIONS(3954), 2, + STATE(4632), 1, + sym__immediate_decimal, + ACTIONS(6470), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(6472), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(725), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107892] = 8, + [107920] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, + ACTIONS(3803), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(6043), 1, anon_sym_LPAREN2, - STATE(1266), 1, - sym__immediate_decimal, - STATE(3558), 1, + STATE(3559), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + STATE(3934), 1, + sym__immediate_decimal, + ACTIONS(6045), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1264), 2, + ACTIONS(6888), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4107), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107920] = 6, - ACTIONS(103), 1, + [107948] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6908), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6910), 1, - aux_sym__immediate_decimal_token5, - STATE(3559), 1, + STATE(3560), 1, sym_comment, - ACTIONS(1728), 3, - anon_sym_RBRACE, + ACTIONS(739), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 4, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(741), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [107944] = 4, + sym_filesize_unit, + sym_duration_unit, + [107968] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1472), 1, + ACTIONS(1512), 1, sym__entry_separator, - STATE(3560), 1, + STATE(3561), 1, sym_comment, - ACTIONS(1470), 8, + ACTIONS(1510), 8, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -228647,103 +228709,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [107964] = 4, + [107988] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3561), 1, + ACTIONS(1592), 1, + anon_sym_DOLLAR, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + STATE(925), 1, + sym__immediate_decimal, + STATE(3562), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107984] = 7, + ACTIONS(3956), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3958), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(874), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108016] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(6858), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2492), 1, sym_path, - STATE(2899), 1, + STATE(2859), 1, sym_cell_path, - STATE(3562), 1, + STATE(3563), 1, sym_comment, - STATE(3592), 1, + STATE(3589), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1882), 5, + ACTIONS(1858), 5, anon_sym_EQ, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_GT2, anon_sym_DASH_DASH, - [108010] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6912), 1, - aux_sym__immediate_decimal_token5, - STATE(3563), 1, - sym_comment, - ACTIONS(1802), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108032] = 6, + [108042] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6914), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6916), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(2528), 1, + sym__immediate_decimal, STATE(3564), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108056] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6606), 1, - aux_sym__immediate_decimal_token5, - STATE(3565), 1, - sym_comment, - ACTIONS(1736), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108078] = 8, + ACTIONS(4842), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4844), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(725), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108070] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1592), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1596), 1, anon_sym_LPAREN2, - STATE(1924), 1, + STATE(1922), 1, sym__immediate_decimal, - STATE(3566), 1, + STATE(3565), 1, sym_comment, ACTIONS(3900), 2, aux_sym__immediate_decimal_token1, @@ -228751,3090 +228785,3138 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3902), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(725), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108106] = 8, + [108098] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, + ACTIONS(3096), 1, anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(6864), 1, anon_sym_DOLLAR, - STATE(2997), 1, + STATE(2961), 1, sym__immediate_decimal, - STATE(3567), 1, + STATE(3566), 1, sym_comment, - ACTIONS(6254), 2, + ACTIONS(6355), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6918), 2, + ACTIONS(6914), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2996), 2, + STATE(2947), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108134] = 4, + [108126] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(960), 1, + sym__space, + ACTIONS(4123), 1, + anon_sym_DOT_DOT2, + ACTIONS(5009), 1, + sym__unquoted_pattern, + ACTIONS(6536), 1, + sym_filesize_unit, + ACTIONS(6538), 1, + sym_duration_unit, + STATE(3567), 1, + sym_comment, + ACTIONS(860), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [108156] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1545), 1, - sym__entry_separator, STATE(3568), 1, sym_comment, - ACTIONS(1543), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(739), 3, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [108154] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [108176] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6920), 1, + ACTIONS(6916), 1, + anon_sym_DOT, + ACTIONS(6918), 1, aux_sym__immediate_decimal_token5, STATE(3569), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1762), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1760), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108176] = 3, + [108200] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4123), 1, + anon_sym_DOT_DOT2, + ACTIONS(6920), 1, + sym_filesize_unit, + ACTIONS(6922), 1, + sym_duration_unit, + ACTIONS(6924), 1, + sym__unquoted_pattern, STATE(3570), 1, sym_comment, - ACTIONS(6922), 9, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, + ACTIONS(4125), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(960), 3, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, + [108228] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3200), 1, + anon_sym_LPAREN2, + ACTIONS(3839), 1, + anon_sym_DOLLAR, + STATE(3030), 1, + sym__immediate_decimal, + STATE(3571), 1, + sym_comment, + ACTIONS(5048), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5050), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3332), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108256] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6928), 1, + aux_sym__immediate_decimal_token5, + STATE(3572), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 5, anon_sym_LBRACE, - anon_sym_RBRACE, - [108194] = 6, - ACTIONS(103), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108280] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6924), 1, + ACTIONS(1596), 1, + anon_sym_LPAREN2, + ACTIONS(2881), 1, + anon_sym_DOLLAR, + STATE(723), 1, + sym__immediate_decimal, + STATE(3573), 1, + sym_comment, + ACTIONS(1602), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1635), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(722), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108308] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6930), 1, anon_sym_DOT, - ACTIONS(6926), 1, + ACTIONS(6932), 1, aux_sym__immediate_decimal_token5, - STATE(3571), 1, + STATE(3574), 1, sym_comment, - ACTIONS(1738), 3, - anon_sym_RBRACE, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1736), 4, + ACTIONS(749), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108331] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + sym__space, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + ACTIONS(6934), 1, + anon_sym_DOT_DOT2, + STATE(3575), 1, + sym_comment, + ACTIONS(1948), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6936), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [108358] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4934), 1, + anon_sym_DOT2, + STATE(451), 1, + sym_path, + STATE(2293), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3576), 1, + sym_comment, + STATE(4300), 1, + sym_cell_path, + ACTIONS(6938), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [108383] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + sym__entry_separator, + ACTIONS(1950), 1, anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6940), 1, + anon_sym_DOT_DOT2, + STATE(3577), 1, + sym_comment, + ACTIONS(1948), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6942), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [108218] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2258), 1, - sym_cell_path, - STATE(2511), 1, - sym_path, - STATE(3572), 1, - sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108244] = 7, + [108410] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6930), 1, + ACTIONS(2381), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(647), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(842), 1, sym_path, - STATE(3133), 1, + STATE(1323), 1, sym_cell_path, - STATE(3573), 1, + STATE(3578), 1, sym_comment, - ACTIONS(6928), 4, + ACTIONS(6944), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108269] = 7, + [108435] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1936), 1, + sym__entry_separator, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + ACTIONS(6946), 1, + anon_sym_DOT_DOT2, + STATE(3579), 1, + sym_comment, + ACTIONS(1938), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6948), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [108462] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, + ACTIONS(6952), 1, anon_sym_DOT2, - STATE(518), 1, + STATE(1925), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, + STATE(2120), 1, sym_path, - STATE(1333), 1, + STATE(2169), 1, sym_cell_path, - STATE(3574), 1, + STATE(3580), 1, sym_comment, - ACTIONS(6932), 4, + ACTIONS(6950), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108294] = 5, + [108487] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6934), 1, - aux_sym__immediate_decimal_token5, - STATE(3575), 1, + STATE(3581), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1856), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 5, + ACTIONS(1854), 6, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108315] = 7, - ACTIONS(3), 1, + [108506] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(1842), 1, + sym__table_head_separator, + ACTIONS(6957), 1, + anon_sym_DOT_DOT, + ACTIONS(6959), 1, anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(3035), 1, - sym_cell_path, - STATE(3576), 1, + STATE(3582), 1, sym_comment, - STATE(3592), 1, + STATE(3756), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(6936), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108340] = 6, + STATE(4114), 1, + sym_path, + STATE(4369), 1, + sym_cell_path, + ACTIONS(6954), 2, + anon_sym_RBRACK, + sym__entry_separator, + [108535] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(1606), 1, sym__unquoted_pattern, - ACTIONS(6938), 1, + ACTIONS(6961), 1, anon_sym_DOT_DOT2, - STATE(3577), 1, + STATE(3583), 1, sym_comment, - ACTIONS(6940), 2, + ACTIONS(6963), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 4, + ACTIONS(1936), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [108363] = 4, + [108558] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3578), 1, + ACTIONS(6965), 1, + aux_sym__immediate_decimal_token5, + STATE(3584), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1812), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1810), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108382] = 4, - ACTIONS(3), 1, + [108579] = 10, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3579), 1, + ACTIONS(2744), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2780), 1, + anon_sym_COLON2, + ACTIONS(6967), 1, + anon_sym_alias, + ACTIONS(6969), 1, + anon_sym_const, + ACTIONS(6971), 1, + anon_sym_def, + ACTIONS(6973), 1, + anon_sym_use, + ACTIONS(6975), 1, + anon_sym_extern, + ACTIONS(6977), 1, + anon_sym_module, + STATE(3585), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108401] = 7, + [108610] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(6981), 1, anon_sym_DOT2, - STATE(423), 1, + STATE(2455), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(2567), 1, sym_path, - STATE(951), 1, + STATE(2935), 1, sym_cell_path, - STATE(3580), 1, + STATE(3586), 1, sym_comment, - ACTIONS(6942), 4, + ACTIONS(6979), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108426] = 9, - ACTIONS(103), 1, + [108635] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1884), 1, - sym__table_head_separator, - ACTIONS(6947), 1, - anon_sym_DOT_DOT, - ACTIONS(6949), 1, + ACTIONS(1844), 1, anon_sym_DOT2, - STATE(3581), 1, - sym_comment, - STATE(3755), 1, + STATE(427), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, + STATE(451), 1, sym_path, - STATE(4368), 1, + STATE(916), 1, sym_cell_path, - ACTIONS(6944), 2, - anon_sym_RBRACK, - sym__entry_separator, - [108455] = 4, + STATE(3587), 1, + sym_comment, + ACTIONS(6983), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [108660] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6953), 1, - anon_sym_DASH2, - STATE(3582), 1, + ACTIONS(6858), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2923), 1, + sym_cell_path, + STATE(3588), 1, sym_comment, - ACTIONS(6951), 7, + STATE(3589), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(6985), 4, + anon_sym_in, sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_nu, + anon_sym_env, + [108685] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6858), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(3589), 1, + sym_comment, + STATE(3590), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1536), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, anon_sym_DASH_DASH, - [108474] = 4, - ACTIONS(103), 1, + [108708] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3583), 1, + ACTIONS(6987), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(3590), 2, sym_comment, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1728), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108493] = 4, - ACTIONS(103), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1540), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [108729] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3584), 1, + ACTIONS(6892), 1, + aux_sym__immediate_decimal_token5, + STATE(3591), 1, sym_comment, - ACTIONS(1870), 4, - anon_sym_LPAREN2, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1872), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108512] = 4, + sym_filesize_unit, + sym_duration_unit, + [108750] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3585), 1, + STATE(3592), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1728), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 6, + ACTIONS(1726), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108531] = 7, + [108769] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3593), 1, + sym_comment, + ACTIONS(1726), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1728), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [108788] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6957), 1, + ACTIONS(4934), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(451), 1, sym_path, - STATE(3586), 1, - sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4556), 1, + STATE(916), 1, sym_cell_path, - ACTIONS(6955), 4, + STATE(2293), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3594), 1, + sym_comment, + ACTIONS(6990), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108556] = 7, + [108813] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6961), 1, + ACTIONS(6994), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2492), 1, sym_path, - STATE(2556), 1, + STATE(2529), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3035), 1, + STATE(2923), 1, sym_cell_path, - STATE(3587), 1, + STATE(3595), 1, sym_comment, - ACTIONS(6959), 4, + ACTIONS(6992), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108581] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3588), 1, - sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108600] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6888), 1, - aux_sym__immediate_decimal_token5, - STATE(3589), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108621] = 5, + [108838] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6926), 1, - aux_sym__immediate_decimal_token5, - STATE(3590), 1, + STATE(3596), 1, sym_comment, - ACTIONS(1738), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 4, + ACTIONS(1810), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [108642] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3591), 1, - sym_comment, - STATE(4217), 1, - sym_cell_path, - ACTIONS(6963), 4, - anon_sym_if, + ACTIONS(1812), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [108667] = 6, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [108857] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(1844), 1, anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(3592), 1, - sym_comment, - STATE(3593), 1, + STATE(427), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108690] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6965), 1, - anon_sym_DOT2, - STATE(2511), 1, + STATE(451), 1, sym_path, - STATE(3593), 2, + STATE(916), 1, + sym_cell_path, + STATE(3597), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108711] = 7, + ACTIONS(6996), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [108882] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(7000), 1, anon_sym_DOT2, - STATE(423), 1, + STATE(2487), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(2637), 1, sym_path, - STATE(951), 1, + STATE(3175), 1, sym_cell_path, - STATE(3594), 1, + STATE(3598), 1, sym_comment, - ACTIONS(6968), 4, + ACTIONS(6998), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108736] = 5, + [108907] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6906), 1, + ACTIONS(6862), 1, aux_sym__immediate_decimal_token5, - STATE(3595), 1, + STATE(3599), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1762), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 5, + ACTIONS(1760), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108757] = 4, + [108928] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3596), 1, + STATE(3600), 1, sym_comment, - ACTIONS(1870), 4, - sym__space, + ACTIONS(1854), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 4, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1856), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108776] = 4, + sym__unquoted_pattern_in_list, + [108947] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3597), 1, + STATE(3601), 1, sym_comment, ACTIONS(1726), 4, - sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym__entry_separator, ACTIONS(1728), 4, - sym__newline, - anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108795] = 8, + sym__unquoted_pattern_in_list, + [108966] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(6970), 1, - anon_sym_DOT_DOT2, - STATE(3598), 1, + STATE(3602), 1, sym_comment, - ACTIONS(1976), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6972), 2, + ACTIONS(1810), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108822] = 10, + sym__entry_separator, + ACTIONS(1812), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [108985] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(6974), 1, - anon_sym_alias, - ACTIONS(6976), 1, - anon_sym_const, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - STATE(3599), 1, - sym_comment, - [108853] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(6986), 1, - anon_sym_DOT_DOT2, - STATE(3600), 1, + STATE(3603), 1, sym_comment, - ACTIONS(6988), 2, + ACTIONS(1726), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [108876] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6990), 1, - aux_sym__immediate_decimal_token5, - STATE(3601), 1, - sym_comment, - ACTIONS(771), 2, + sym__entry_separator, + ACTIONS(1728), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108897] = 7, + sym__unquoted_pattern_in_list, + [109004] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6994), 1, + ACTIONS(7004), 1, anon_sym_DOT2, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(363), 1, sym_path, - STATE(2183), 1, - sym_cell_path, - STATE(3602), 1, + STATE(3604), 1, sym_comment, - ACTIONS(6992), 4, + STATE(3779), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4558), 1, + sym_cell_path, + ACTIONS(7002), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108922] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(6996), 1, - anon_sym_DOT_DOT2, - STATE(3603), 1, - sym_comment, - ACTIONS(1966), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6998), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108949] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7000), 1, - aux_sym__immediate_decimal_token5, - STATE(3604), 1, - sym_comment, - ACTIONS(1804), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [108970] = 7, + [109029] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(2381), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(647), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(842), 1, sym_path, - STATE(951), 1, + STATE(1323), 1, sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(3605), 1, sym_comment, - ACTIONS(7002), 4, + ACTIONS(7006), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [108995] = 8, + [109054] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7004), 1, - anon_sym_DOT_DOT2, STATE(3606), 1, sym_comment, - ACTIONS(1976), 2, + ACTIONS(1810), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1812), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7006), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [109073] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3607), 1, + sym_comment, + ACTIONS(1854), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109022] = 7, + ACTIONS(1856), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [109092] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(1844), 1, anon_sym_DOT2, - STATE(423), 1, + STATE(427), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(451), 1, sym_path, - STATE(951), 1, + STATE(916), 1, sym_cell_path, - STATE(3607), 1, + STATE(3608), 1, sym_comment, ACTIONS(7008), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109047] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(7010), 1, - anon_sym_DOT_DOT2, - STATE(3608), 1, - sym_comment, - ACTIONS(1966), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7012), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109074] = 6, + [109117] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7014), 1, + ACTIONS(7010), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7016), 1, + ACTIONS(7012), 1, aux_sym__immediate_decimal_token5, STATE(3609), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + ACTIONS(741), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109097] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1448), 1, - sym__entry_separator, - ACTIONS(7018), 1, - anon_sym_QMARK2, - ACTIONS(7020), 1, - anon_sym_BANG, - STATE(3610), 1, - sym_comment, - STATE(3947), 1, - sym__path_suffix, - ACTIONS(1446), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [109122] = 6, + [109140] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7022), 1, - anon_sym_DOT, - ACTIONS(7024), 1, + ACTIONS(7014), 1, aux_sym__immediate_decimal_token5, - STATE(3611), 1, + STATE(3610), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 4, + sym__unquoted_pattern, + ACTIONS(773), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109145] = 7, + [109161] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7028), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(3030), 1, - sym_cell_path, + ACTIONS(1956), 1, + sym__unquoted_pattern, + ACTIONS(7016), 1, + anon_sym_DOT_DOT2, + STATE(3611), 1, + sym_comment, + ACTIONS(7018), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1946), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [109184] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6918), 1, + aux_sym__immediate_decimal_token5, STATE(3612), 1, sym_comment, - ACTIONS(7026), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [109170] = 7, + ACTIONS(1762), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1760), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [109205] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7020), 1, + aux_sym__immediate_decimal_token5, STATE(3613), 1, sym_comment, - STATE(4297), 1, - sym_cell_path, - ACTIONS(7030), 4, - anon_sym_if, + ACTIONS(1812), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1810), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109195] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109226] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3614), 1, sym_comment, - ACTIONS(1802), 4, - sym__space, + ACTIONS(1854), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 4, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1856), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [109245] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1606), 1, sym__unquoted_pattern, - [109214] = 7, + ACTIONS(1936), 1, + sym__space, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + ACTIONS(7022), 1, + anon_sym_DOT_DOT2, + STATE(3615), 1, + sym_comment, + ACTIONS(1938), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7024), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109272] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(5140), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(842), 1, sym_path, - STATE(1333), 1, + STATE(1323), 1, sym_cell_path, - STATE(2387), 1, + STATE(2386), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3615), 1, + STATE(3616), 1, sym_comment, - ACTIONS(7032), 4, + ACTIONS(7026), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109239] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3616), 1, - sym_comment, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1728), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109258] = 4, - ACTIONS(103), 1, + [109297] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4934), 1, + anon_sym_DOT2, + STATE(451), 1, + sym_path, + STATE(2293), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3617), 1, sym_comment, - ACTIONS(1802), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109277] = 4, + STATE(4219), 1, + sym_cell_path, + ACTIONS(7028), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [109322] = 7, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1478), 1, + sym__entry_separator, + ACTIONS(7030), 1, + anon_sym_QMARK2, + ACTIONS(7032), 1, + anon_sym_BANG, STATE(3618), 1, sym_comment, - ACTIONS(1870), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1872), 4, + STATE(3950), 1, + sym__path_suffix, + ACTIONS(1476), 4, anon_sym_RBRACK, + anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109296] = 7, + anon_sym_DOT2, + [109347] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_DOT2, - STATE(518), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, - sym_path, - STATE(1333), 1, - sym_cell_path, + ACTIONS(7036), 1, + anon_sym_DASH2, STATE(3619), 1, sym_comment, - ACTIONS(7034), 4, - anon_sym_in, + ACTIONS(7034), 7, sym_identifier, - anon_sym_nu, - anon_sym_env, - [109321] = 8, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [109366] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1884), 1, + ACTIONS(1842), 1, sym__table_head_separator, - ACTIONS(7036), 1, + ACTIONS(7038), 1, anon_sym_DOT2, STATE(3620), 1, sym_comment, STATE(4059), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, + STATE(4694), 1, sym_path, - STATE(4963), 1, + STATE(4953), 1, sym_cell_path, - ACTIONS(6947), 3, + ACTIONS(6957), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__entry_separator, - [109348] = 8, + [109393] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1434), 1, + ACTIONS(1462), 1, sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(7040), 1, anon_sym_DOT2, STATE(3621), 1, sym_comment, - STATE(3640), 1, + STATE(3662), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3884), 1, + STATE(3942), 1, sym_path, - STATE(4318), 1, + STATE(4313), 1, sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(1460), 3, anon_sym_RBRACK, anon_sym_GT2, anon_sym_DOT_DOT, - [109375] = 6, + [109420] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7040), 1, - anon_sym_DOT, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, STATE(3622), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1812), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 3, - anon_sym_LBRACE, + ACTIONS(1810), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109397] = 9, + [109439] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, + STATE(3623), 1, + sym_comment, + ACTIONS(1665), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1667), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [109457] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7042), 1, + anon_sym_LBRACK, ACTIONS(7044), 1, - sym_identifier, + anon_sym_LPAREN, ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3623), 1, + anon_sym_DASH_DASH, + STATE(1538), 1, + sym_parameter_parens, + STATE(1623), 1, + sym_parameter_bracks, + STATE(3624), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4250), 1, - sym__assignment_pattern, - [109425] = 6, + STATE(4041), 1, + aux_sym_decl_def_repeat1, + STATE(4548), 1, + sym_long_flag, + [109485] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1936), 1, sym__entry_separator, + ACTIONS(1938), 1, + anon_sym_RBRACK, + ACTIONS(1940), 1, + anon_sym_LPAREN2, ACTIONS(7048), 1, - anon_sym_DOT2, - STATE(3884), 1, - sym_path, - STATE(3624), 2, + anon_sym_DOT_DOT2, + STATE(3625), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [109447] = 5, + ACTIONS(7050), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109511] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7051), 1, + ACTIONS(7052), 1, anon_sym_DOT_DOT2, - STATE(3625), 1, + STATE(3626), 1, sym_comment, - ACTIONS(7053), 2, + ACTIONS(7054), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 4, + ACTIONS(2118), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109467] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3626), 1, - sym_comment, - ACTIONS(1804), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [109485] = 9, + [109531] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1513), 1, - sym_parameter_parens, - STATE(1514), 1, - sym_parameter_bracks, + ACTIONS(7058), 1, + anon_sym_DOT_DOT2, STATE(3627), 1, sym_comment, - STATE(3724), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109513] = 9, + ACTIONS(7060), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7056), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [109551] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(3882), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1542), 1, - sym_parameter_parens, - STATE(1543), 1, - sym_parameter_bracks, + ACTIONS(3934), 1, + sym__newline, + ACTIONS(7062), 1, + anon_sym_RBRACK, STATE(3628), 1, sym_comment, - STATE(3651), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109541] = 9, + STATE(4031), 1, + aux_sym__types_body_repeat1, + STATE(4582), 1, + sym_val_list, + STATE(4585), 1, + aux_sym__table_body_repeat1, + STATE(5169), 1, + sym__table_body, + [109579] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1544), 1, - sym_parameter_parens, - STATE(1545), 1, - sym_parameter_bracks, + ACTIONS(6994), 1, + anon_sym_DOT2, + STATE(2262), 1, + sym_cell_path, + STATE(2492), 1, + sym_path, + STATE(2529), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3629), 1, sym_comment, - STATE(3659), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109569] = 6, + ACTIONS(1462), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [109603] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7061), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7063), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7028), 1, + sym__entry_separator, + ACTIONS(7040), 1, + anon_sym_DOT2, STATE(3630), 1, sym_comment, - ACTIONS(1726), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [109591] = 6, - ACTIONS(3), 1, + STATE(3662), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3942), 1, + sym_path, + STATE(4516), 1, + sym_cell_path, + ACTIONS(7064), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [109629] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7065), 1, - anon_sym_DOT, - ACTIONS(7067), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1878), 1, + sym__entry_separator, + ACTIONS(7040), 1, + anon_sym_DOT2, STATE(3631), 1, sym_comment, - ACTIONS(1736), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109613] = 8, + STATE(3662), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3942), 1, + sym_path, + STATE(4096), 1, + sym_cell_path, + ACTIONS(1880), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [109655] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1886), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7040), 1, anon_sym_DOT2, - STATE(339), 1, - sym_path, STATE(3632), 1, sym_comment, - STATE(3778), 1, + STATE(3662), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4102), 1, + STATE(3942), 1, + sym_path, + STATE(4113), 1, sym_cell_path, - ACTIONS(1868), 2, + ACTIONS(1888), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [109639] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1523), 1, - sym_parameter_parens, - STATE(1524), 1, - sym_parameter_bracks, - STATE(3633), 1, - sym_comment, - STATE(3713), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [109667] = 5, + anon_sym_DOT_DOT, + [109681] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7071), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(7066), 1, anon_sym_DOT_DOT2, - STATE(3634), 1, + STATE(3633), 1, sym_comment, - ACTIONS(7073), 2, + ACTIONS(7068), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 4, - anon_sym_if, + ACTIONS(1936), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109687] = 5, + [109703] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6959), 1, + anon_sym_DOT2, + STATE(3634), 1, + sym_comment, + STATE(3756), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4114), 1, + sym_path, + STATE(4369), 1, + sym_cell_path, + ACTIONS(1842), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [109727] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7075), 1, + ACTIONS(7070), 1, anon_sym_DOT_DOT2, STATE(3635), 1, sym_comment, - ACTIONS(7077), 2, + ACTIONS(7072), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 4, + ACTIONS(2146), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109707] = 5, + [109747] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7079), 1, + ACTIONS(7074), 1, anon_sym_DOT_DOT2, STATE(3636), 1, sym_comment, - ACTIONS(7081), 2, + ACTIONS(7076), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 4, + ACTIONS(2166), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109727] = 6, - ACTIONS(103), 1, + [109767] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7083), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7085), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7078), 1, + anon_sym_DOT_DOT2, STATE(3637), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [109749] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3638), 1, - sym_comment, - ACTIONS(1874), 3, + ACTIONS(7080), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1876), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [109767] = 8, - ACTIONS(103), 1, + ACTIONS(2090), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [109787] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7087), 1, - anon_sym_DOT_DOT2, - STATE(3639), 1, + ACTIONS(7042), 1, + anon_sym_LBRACK, + ACTIONS(7044), 1, + anon_sym_LPAREN, + ACTIONS(7046), 1, + anon_sym_DASH_DASH, + STATE(1537), 1, + sym_parameter_parens, + STATE(1624), 1, + sym_parameter_bracks, + STATE(3638), 1, sym_comment, - ACTIONS(7089), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109793] = 7, - ACTIONS(103), 1, + STATE(4041), 1, + aux_sym_decl_def_repeat1, + STATE(4548), 1, + sym_long_flag, + [109815] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1460), 1, - sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3624), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3640), 1, + ACTIONS(7042), 1, + anon_sym_LBRACK, + ACTIONS(7044), 1, + anon_sym_LPAREN, + ACTIONS(7046), 1, + anon_sym_DASH_DASH, + STATE(1514), 1, + sym_parameter_parens, + STATE(1523), 1, + sym_parameter_bracks, + STATE(3639), 1, sym_comment, - STATE(3884), 1, - sym_path, - ACTIONS(1458), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [109817] = 9, + STATE(3655), 1, + aux_sym_decl_def_repeat1, + STATE(4548), 1, + sym_long_flag, + [109843] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7044), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - STATE(1531), 1, + STATE(1528), 1, sym_parameter_parens, STATE(1532), 1, sym_parameter_bracks, - STATE(3641), 1, + STATE(3640), 1, sym_comment, - STATE(4039), 1, + STATE(4041), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4548), 1, sym_long_flag, - [109845] = 9, + [109871] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7082), 1, + anon_sym_DOT, + ACTIONS(7084), 1, + aux_sym__immediate_decimal_token5, + STATE(3641), 1, + sym_comment, + ACTIONS(1762), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1760), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109893] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7044), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - STATE(1546), 1, + STATE(1512), 1, sym_parameter_parens, - STATE(1547), 1, + STATE(1513), 1, sym_parameter_bracks, STATE(3642), 1, sym_comment, - STATE(4039), 1, + STATE(3731), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4548), 1, sym_long_flag, - [109873] = 7, + [109921] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7091), 1, - anon_sym_DOT, - STATE(3643), 1, - sym_comment, - STATE(4179), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, + ACTIONS(7086), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [109897] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7093), 1, + ACTIONS(7088), 1, aux_sym__immediate_decimal_token5, - STATE(3644), 1, + STATE(3643), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(1728), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 4, + sym__unquoted_pattern, + ACTIONS(1726), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109917] = 4, - ACTIONS(3), 1, + [109943] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3645), 1, - sym_comment, - ACTIONS(1872), 2, + ACTIONS(1606), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1936), 1, + sym__entry_separator, + ACTIONS(1938), 1, + anon_sym_RBRACE, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + ACTIONS(7090), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + STATE(3644), 1, + sym_comment, + ACTIONS(7092), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109935] = 9, + [109969] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7095), 1, - anon_sym_RBRACK, - STATE(3646), 1, + ACTIONS(7044), 1, + anon_sym_LPAREN, + ACTIONS(7046), 1, + anon_sym_DASH_DASH, + STATE(1533), 1, + sym_parameter_parens, + STATE(1534), 1, + sym_parameter_bracks, + STATE(3645), 1, sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(5018), 1, - sym__table_body, - [109963] = 8, + STATE(3664), 1, + aux_sym_decl_def_repeat1, + STATE(4548), 1, + sym_long_flag, + [109997] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1434), 1, + ACTIONS(5233), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7094), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(363), 1, sym_path, - STATE(368), 1, - sym_cell_path, - STATE(3647), 1, + STATE(3646), 1, sym_comment, - STATE(3778), 1, + STATE(3779), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1432), 2, + STATE(4541), 1, + sym_cell_path, + ACTIONS(5231), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [109989] = 9, - ACTIONS(3), 1, + [110023] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1548), 1, - sym_parameter_parens, - STATE(1549), 1, - sym_parameter_bracks, + ACTIONS(7096), 1, + anon_sym_QMARK2, + ACTIONS(7098), 1, + anon_sym_BANG, + STATE(3647), 1, + sym_comment, + STATE(4256), 1, + sym__path_suffix, + ACTIONS(1476), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [110045] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1462), 1, + sym__entry_separator, + ACTIONS(7094), 1, + anon_sym_DOT2, + STATE(363), 1, + sym_path, + STATE(374), 1, + sym_cell_path, STATE(3648), 1, sym_comment, - STATE(3674), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [110017] = 4, + STATE(3779), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1460), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [110071] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3649), 1, sym_comment, - ACTIONS(1872), 3, + ACTIONS(1812), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1870), 4, + ACTIONS(1810), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [110035] = 9, + [110089] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7100), 1, + anon_sym_DOT, + ACTIONS(7102), 1, + aux_sym__immediate_decimal_token5, + STATE(3650), 1, + sym_comment, + ACTIONS(1760), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1762), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [110111] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3882), 1, anon_sym_LBRACK, ACTIONS(3934), 1, sym__newline, - ACTIONS(7097), 1, + ACTIONS(7104), 1, anon_sym_RBRACK, - STATE(3650), 1, + STATE(3651), 1, sym_comment, - STATE(4021), 1, + STATE(4031), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4582), 1, sym_val_list, - STATE(4577), 1, + STATE(4585), 1, aux_sym__table_body_repeat1, - STATE(4949), 1, + STATE(4951), 1, sym__table_body, - [110063] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1551), 1, - sym_parameter_parens, - STATE(1552), 1, - sym_parameter_bracks, - STATE(3651), 1, - sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [110091] = 4, - ACTIONS(3), 1, + [110139] = 9, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6954), 1, + anon_sym_RBRACK, + ACTIONS(6957), 1, + anon_sym_DOT_DOT, + ACTIONS(7094), 1, + anon_sym_DOT2, + ACTIONS(7106), 1, + sym__entry_separator, + STATE(363), 1, + sym_path, STATE(3652), 1, sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110109] = 7, - ACTIONS(3), 1, + STATE(3779), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4177), 1, + sym_cell_path, + [110167] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6961), 1, + ACTIONS(1870), 1, + sym__entry_separator, + ACTIONS(7094), 1, anon_sym_DOT2, - STATE(2258), 1, - sym_cell_path, - STATE(2511), 1, + STATE(363), 1, sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(3653), 1, sym_comment, - ACTIONS(1434), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [110133] = 9, + STATE(3779), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4218), 1, + sym_cell_path, + ACTIONS(1872), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [110193] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1840), 1, + sym__entry_separator, + ACTIONS(7094), 1, + anon_sym_DOT2, + STATE(363), 1, + sym_path, + STATE(3654), 1, + sym_comment, + STATE(3779), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4177), 1, + sym_cell_path, + ACTIONS(1842), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [110219] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7044), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7046), 1, anon_sym_DASH_DASH, STATE(1576), 1, sym_parameter_parens, - STATE(1604), 1, + STATE(1578), 1, sym_parameter_bracks, - STATE(3654), 1, + STATE(3655), 1, sym_comment, - STATE(3727), 1, + STATE(4041), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4548), 1, sym_long_flag, - [110161] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1858), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3655), 1, - sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4214), 1, - sym_cell_path, - ACTIONS(1860), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [110187] = 9, + [110247] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3882), 1, anon_sym_LBRACK, ACTIONS(3934), 1, sym__newline, - ACTIONS(7099), 1, + ACTIONS(7109), 1, anon_sym_RBRACK, STATE(3656), 1, sym_comment, - STATE(4021), 1, + STATE(4031), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4582), 1, sym_val_list, - STATE(4577), 1, + STATE(4585), 1, aux_sym__table_body_repeat1, - STATE(4955), 1, + STATE(5104), 1, sym__table_body, - [110215] = 9, + [110275] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7111), 1, + anon_sym_DOT, + ACTIONS(7113), 1, + aux_sym__immediate_decimal_token5, + STATE(3657), 1, + sym_comment, + ACTIONS(1760), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1762), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [110297] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7044), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - STATE(1528), 1, + STATE(1675), 1, sym_parameter_parens, - STATE(1529), 1, + STATE(1676), 1, sym_parameter_bracks, - STATE(3657), 1, - sym_comment, - STATE(3708), 1, + STATE(3640), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(3658), 1, + sym_comment, + STATE(4548), 1, sym_long_flag, - [110243] = 9, + [110325] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3882), 1, + anon_sym_LBRACK, + ACTIONS(3934), 1, + sym__newline, + ACTIONS(7115), 1, + anon_sym_RBRACK, + STATE(3659), 1, + sym_comment, + STATE(4031), 1, + aux_sym__types_body_repeat1, + STATE(4582), 1, + sym_val_list, + STATE(4585), 1, + aux_sym__table_body_repeat1, + STATE(5012), 1, + sym__table_body, + [110353] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7044), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - STATE(1553), 1, + STATE(1668), 1, sym_parameter_parens, - STATE(1554), 1, + STATE(1669), 1, sym_parameter_bracks, - STATE(3658), 1, + STATE(3660), 1, sym_comment, - STATE(3688), 1, + STATE(4041), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4548), 1, sym_long_flag, - [110271] = 9, + [110381] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7044), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - STATE(1509), 1, + STATE(1580), 1, sym_parameter_parens, - STATE(1662), 1, + STATE(1582), 1, sym_parameter_bracks, - STATE(3659), 1, + STATE(3661), 1, sym_comment, - STATE(4039), 1, + STATE(3680), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4548), 1, sym_long_flag, - [110299] = 7, + [110409] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6949), 1, + ACTIONS(1536), 1, + sym__entry_separator, + ACTIONS(7040), 1, anon_sym_DOT2, - STATE(3660), 1, + STATE(3662), 1, sym_comment, - STATE(3755), 1, + STATE(3670), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, + STATE(3942), 1, sym_path, - STATE(4421), 1, - sym_cell_path, - ACTIONS(1860), 3, + ACTIONS(1534), 3, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [110323] = 4, - ACTIONS(103), 1, + anon_sym_GT2, + anon_sym_DOT_DOT, + [110433] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3661), 1, + ACTIONS(6858), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2854), 1, + sym_cell_path, + STATE(3589), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3663), 1, sym_comment, - ACTIONS(1641), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1643), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [110341] = 9, - ACTIONS(103), 1, + ACTIONS(1846), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [110457] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, + ACTIONS(7042), 1, + anon_sym_LBRACK, ACTIONS(7044), 1, - sym_identifier, + anon_sym_LPAREN, ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3662), 1, + anon_sym_DASH_DASH, + STATE(1585), 1, + sym_parameter_parens, + STATE(1586), 1, + sym_parameter_bracks, + STATE(3664), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4251), 1, - sym__assignment_pattern, - [110369] = 4, - ACTIONS(103), 1, + STATE(4041), 1, + aux_sym_decl_def_repeat1, + STATE(4548), 1, + sym_long_flag, + [110485] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3663), 1, - sym_comment, - ACTIONS(1822), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1824), 4, + ACTIONS(3882), 1, + anon_sym_LBRACK, + ACTIONS(3934), 1, + sym__newline, + ACTIONS(7117), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [110387] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1878), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3664), 1, + STATE(3665), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4113), 1, - sym_cell_path, - ACTIONS(1880), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [110413] = 9, + STATE(4031), 1, + aux_sym__types_body_repeat1, + STATE(4582), 1, + sym_val_list, + STATE(4585), 1, + aux_sym__table_body_repeat1, + STATE(4972), 1, + sym__table_body, + [110513] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3882), 1, anon_sym_LBRACK, ACTIONS(3934), 1, sym__newline, - ACTIONS(7101), 1, + ACTIONS(7119), 1, anon_sym_RBRACK, - STATE(3665), 1, + STATE(3666), 1, sym_comment, - STATE(4021), 1, + STATE(4031), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4582), 1, sym_val_list, - STATE(4577), 1, + STATE(4585), 1, aux_sym__table_body_repeat1, - STATE(5044), 1, + STATE(5046), 1, sym__table_body, - [110441] = 9, + [110541] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7044), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - STATE(1663), 1, + STATE(1530), 1, sym_parameter_parens, - STATE(1664), 1, + STATE(1531), 1, sym_parameter_bracks, - STATE(3641), 1, + STATE(3624), 1, aux_sym_decl_def_repeat1, - STATE(3666), 1, + STATE(3667), 1, sym_comment, - STATE(4547), 1, + STATE(4548), 1, sym_long_flag, - [110469] = 8, - ACTIONS(103), 1, + [110569] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3667), 1, + ACTIONS(960), 1, + anon_sym_LBRACE, + ACTIONS(1744), 1, + sym__unquoted_pattern, + ACTIONS(7121), 1, + anon_sym_DOT_DOT2, + ACTIONS(7125), 1, + sym_filesize_unit, + ACTIONS(7127), 1, + sym_duration_unit, + STATE(3668), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4096), 1, - sym_cell_path, - ACTIONS(1864), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [110495] = 8, + ACTIONS(7123), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110595] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1878), 1, - sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(6959), 1, anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3668), 1, + STATE(3669), 1, sym_comment, - STATE(3884), 1, + STATE(3756), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4114), 1, sym_path, - STATE(4113), 1, + STATE(4420), 1, sym_cell_path, - ACTIONS(1880), 2, + ACTIONS(1872), 3, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [110521] = 8, + sym__entry_separator, + sym__table_head_separator, + [110619] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, + ACTIONS(1540), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7129), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(3942), 1, sym_path, - STATE(3669), 1, + STATE(3670), 2, sym_comment, - STATE(3778), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4096), 1, - sym_cell_path, - ACTIONS(1864), 2, + ACTIONS(1538), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [110547] = 9, + anon_sym_GT2, + anon_sym_DOT_DOT, + [110641] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3882), 1, anon_sym_LBRACK, ACTIONS(3934), 1, sym__newline, - ACTIONS(7103), 1, + ACTIONS(7132), 1, anon_sym_RBRACK, - STATE(3670), 1, + STATE(3671), 1, sym_comment, - STATE(4021), 1, + STATE(4031), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4582), 1, sym_val_list, - STATE(4577), 1, + STATE(4585), 1, aux_sym__table_body_repeat1, - STATE(5054), 1, + STATE(5056), 1, sym__table_body, - [110575] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7105), 1, - anon_sym_alias, - ACTIONS(7107), 1, - anon_sym_const, - ACTIONS(7109), 1, - anon_sym_def, - ACTIONS(7111), 1, - anon_sym_use, - ACTIONS(7113), 1, - anon_sym_extern, - ACTIONS(7115), 1, - anon_sym_module, - STATE(3671), 1, - sym_comment, - [110603] = 8, + [110669] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(1946), 1, sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6724), 1, + ACTIONS(1948), 1, + anon_sym_RBRACE, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7134), 1, anon_sym_DOT_DOT2, - ACTIONS(6728), 1, - sym_filesize_unit, - ACTIONS(6730), 1, - sym_duration_unit, STATE(3672), 1, sym_comment, - ACTIONS(6726), 2, + ACTIONS(7136), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110629] = 8, + [110695] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(5237), 1, sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACK, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7117), 1, - anon_sym_DOT_DOT2, + ACTIONS(7094), 1, + anon_sym_DOT2, + STATE(363), 1, + sym_path, STATE(3673), 1, sym_comment, - ACTIONS(7119), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110655] = 9, + STATE(3779), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4543), 1, + sym_cell_path, + ACTIONS(5235), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [110721] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7044), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - STATE(1555), 1, + STATE(1655), 1, sym_parameter_parens, - STATE(1556), 1, + STATE(1656), 1, sym_parameter_bracks, STATE(3674), 1, sym_comment, - STATE(4039), 1, + STATE(3695), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4548), 1, sym_long_flag, - [110683] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7121), 1, - anon_sym_RBRACK, - STATE(3675), 1, - sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(4993), 1, - sym__table_body, - [110711] = 8, + [110749] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, + ACTIONS(1886), 1, sym__entry_separator, - ACTIONS(7123), 1, - anon_sym_DOT_DOT2, - ACTIONS(7127), 1, - sym_filesize_unit, - ACTIONS(7129), 1, - sym_duration_unit, - STATE(3676), 1, - sym_comment, - ACTIONS(7125), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110737] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7131), 1, - anon_sym_QMARK2, - ACTIONS(7133), 1, - anon_sym_BANG, - STATE(3677), 1, + ACTIONS(7094), 1, + anon_sym_DOT2, + STATE(363), 1, + sym_path, + STATE(3675), 1, sym_comment, - STATE(4266), 1, - sym__path_suffix, - ACTIONS(1446), 4, + STATE(3779), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4113), 1, + sym_cell_path, + ACTIONS(1888), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [110759] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + [110775] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7135), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(7138), 1, anon_sym_DOT, - ACTIONS(7137), 1, - aux_sym__immediate_decimal_token5, - STATE(3678), 1, + STATE(3676), 1, sym_comment, - ACTIONS(1736), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [110781] = 6, + STATE(4198), 1, + sym__immediate_decimal, + ACTIONS(6266), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6268), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [110799] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_DOT, - ACTIONS(7141), 1, - aux_sym__immediate_decimal_token5, - STATE(3679), 1, - sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, + ACTIONS(5269), 1, sym__entry_separator, - ACTIONS(1738), 3, + ACTIONS(7094), 1, + anon_sym_DOT2, + STATE(363), 1, + sym_path, + STATE(3677), 1, + sym_comment, + STATE(3779), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4575), 1, + sym_cell_path, + ACTIONS(5267), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [110803] = 6, + anon_sym_RBRACE, + [110825] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7143), 1, - anon_sym_DOT_DOT2, - STATE(3680), 1, + ACTIONS(7042), 1, + anon_sym_LBRACK, + ACTIONS(7044), 1, + anon_sym_LPAREN, + ACTIONS(7046), 1, + anon_sym_DASH_DASH, + STATE(1536), 1, + sym_parameter_parens, + STATE(1565), 1, + sym_parameter_bracks, + STATE(3638), 1, + aux_sym_decl_def_repeat1, + STATE(3678), 1, sym_comment, - ACTIONS(7145), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110825] = 6, + STATE(4548), 1, + sym_long_flag, + [110853] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7147), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7149), 1, - aux_sym__immediate_decimal_token5, - STATE(3681), 1, + STATE(3679), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(878), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 3, + ACTIONS(880), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110847] = 8, + sym_filesize_unit, + sym_duration_unit, + [110871] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7042), 1, + anon_sym_LBRACK, + ACTIONS(7044), 1, + anon_sym_LPAREN, + ACTIONS(7046), 1, + anon_sym_DASH_DASH, + STATE(1657), 1, + sym_parameter_parens, + STATE(1658), 1, + sym_parameter_bracks, + STATE(3680), 1, + sym_comment, + STATE(4041), 1, + aux_sym_decl_def_repeat1, + STATE(4548), 1, + sym_long_flag, + [110899] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(1878), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7094), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(363), 1, sym_path, - STATE(3682), 1, + STATE(3681), 1, sym_comment, - STATE(3778), 1, + STATE(3779), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4176), 1, + STATE(4096), 1, sym_cell_path, - ACTIONS(1884), 2, + ACTIONS(1880), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [110873] = 4, - ACTIONS(3), 1, + [110925] = 9, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(6967), 1, + anon_sym_alias, + ACTIONS(6969), 1, + anon_sym_const, + ACTIONS(6971), 1, + anon_sym_def, + ACTIONS(6973), 1, + anon_sym_use, + ACTIONS(6975), 1, + anon_sym_extern, + ACTIONS(6977), 1, + anon_sym_module, + STATE(3682), 1, + sym_comment, + [110953] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2744), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2780), 1, + anon_sym_COLON2, + ACTIONS(7140), 1, + sym_identifier, + ACTIONS(7142), 1, + anon_sym_DOLLAR, STATE(3683), 1, sym_comment, - ACTIONS(1804), 2, + STATE(3904), 1, + sym__variable_name, + STATE(4068), 1, + sym_val_variable, + STATE(4254), 1, + sym__assignment_pattern, + [110981] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3684), 1, + sym_comment, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(741), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110999] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + sym__entry_separator, + ACTIONS(1948), 1, + anon_sym_RBRACK, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7144), 1, + anon_sym_DOT_DOT2, + STATE(3685), 1, + sym_comment, + ACTIONS(7146), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110891] = 8, + [111025] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5233), 1, + STATE(3686), 1, + sym_comment, + ACTIONS(1874), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1876), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [111043] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1858), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7094), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(363), 1, sym_path, - STATE(3684), 1, + STATE(3687), 1, sym_comment, - STATE(3778), 1, + STATE(3779), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4483), 1, + STATE(4103), 1, sym_cell_path, - ACTIONS(5231), 2, + ACTIONS(1860), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [110917] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7151), 1, - anon_sym_RBRACK, - STATE(3685), 1, - sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(4797), 1, - sym__table_body, - [110945] = 9, + [111069] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - ACTIONS(7153), 1, - anon_sym_alias, - ACTIONS(7155), 1, - anon_sym_const, - STATE(3686), 1, + STATE(3688), 1, sym_comment, - [110973] = 6, + ACTIONS(1866), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1868), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [111087] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7157), 1, - anon_sym_DOT_DOT2, - STATE(3687), 1, + ACTIONS(6932), 1, + aux_sym__immediate_decimal_token5, + STATE(3689), 1, sym_comment, - ACTIONS(7159), 2, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(749), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110995] = 9, + sym_filesize_unit, + sym_duration_unit, + [111107] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7044), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - STATE(1557), 1, + STATE(1569), 1, sym_parameter_parens, - STATE(1558), 1, + STATE(1571), 1, sym_parameter_bracks, - STATE(3688), 1, + STATE(3690), 1, sym_comment, - STATE(4039), 1, + STATE(4041), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4548), 1, sym_long_flag, - [111023] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3689), 1, - sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4252), 1, - sym__assignment_pattern, - [111051] = 7, + [111135] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(6858), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2492), 1, sym_path, - STATE(3032), 1, + STATE(2968), 1, sym_cell_path, - STATE(3592), 1, + STATE(3589), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3690), 1, + STATE(3691), 1, sym_comment, - ACTIONS(1878), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [111075] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(1886), 3, anon_sym_LBRACK, - ACTIONS(7057), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, anon_sym_DASH_DASH, - STATE(1559), 1, - sym_parameter_parens, - STATE(1560), 1, - sym_parameter_bracks, - STATE(3691), 1, - sym_comment, - STATE(3706), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [111103] = 8, + [111159] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5273), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, STATE(3692), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4514), 1, - sym_cell_path, - ACTIONS(5271), 2, - anon_sym_RBRACK, + ACTIONS(1728), 3, anon_sym_RBRACE, - [111129] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1615), 1, + anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - ACTIONS(1968), 1, + ACTIONS(1726), 4, anon_sym_LPAREN2, - ACTIONS(7161), 1, - anon_sym_DOT_DOT2, - STATE(3693), 1, - sym_comment, - ACTIONS(7163), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111155] = 4, - ACTIONS(103), 1, + sym__entry_separator, + [111177] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3694), 1, + ACTIONS(1728), 1, + sym__unquoted_pattern, + ACTIONS(7148), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7150), 1, + aux_sym__immediate_decimal_token5, + STATE(3693), 1, sym_comment, - ACTIONS(1728), 3, + ACTIONS(1726), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [111199] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(860), 1, anon_sym_RBRACE, + ACTIONS(960), 1, + sym__entry_separator, + ACTIONS(7152), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 4, - anon_sym_LPAREN2, + ACTIONS(7156), 1, + sym_filesize_unit, + ACTIONS(7158), 1, + sym_duration_unit, + STATE(3694), 1, + sym_comment, + ACTIONS(7154), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [111173] = 9, - ACTIONS(103), 1, + [111225] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6974), 1, - anon_sym_alias, - ACTIONS(6976), 1, - anon_sym_const, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, + ACTIONS(7042), 1, + anon_sym_LBRACK, + ACTIONS(7044), 1, + anon_sym_LPAREN, + ACTIONS(7046), 1, + anon_sym_DASH_DASH, + STATE(1660), 1, + sym_parameter_parens, + STATE(1661), 1, + sym_parameter_bracks, STATE(3695), 1, sym_comment, - [111201] = 8, + STATE(4041), 1, + aux_sym_decl_def_repeat1, + STATE(4548), 1, + sym_long_flag, + [111253] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7030), 1, + ACTIONS(960), 1, sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(6319), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6758), 1, + anon_sym_DOT_DOT2, + ACTIONS(6762), 1, + sym_filesize_unit, + ACTIONS(6764), 1, + sym_duration_unit, STATE(3696), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4478), 1, - sym_cell_path, - ACTIONS(7165), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [111227] = 9, + ACTIONS(6760), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111279] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(3882), 1, anon_sym_LBRACK, ACTIONS(3934), 1, sym__newline, - ACTIONS(7167), 1, + ACTIONS(7160), 1, anon_sym_RBRACK, STATE(3697), 1, sym_comment, - STATE(4021), 1, + STATE(4031), 1, aux_sym__types_body_repeat1, - STATE(4571), 1, + STATE(4582), 1, sym_val_list, - STATE(4577), 1, + STATE(4585), 1, aux_sym__table_body_repeat1, - STATE(5098), 1, + STATE(5033), 1, sym__table_body, - [111255] = 7, + [111307] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + STATE(3698), 1, + sym_comment, + ACTIONS(1728), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1726), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111325] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, sym__unquoted_pattern_in_record, - ACTIONS(7169), 1, + ACTIONS(7162), 1, anon_sym_DOT, - STATE(3698), 1, + STATE(3699), 1, sym_comment, - STATE(4088), 1, + STATE(4094), 1, sym__immediate_decimal, - ACTIONS(7171), 2, + ACTIONS(7164), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7173), 2, + ACTIONS(7166), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [111279] = 7, + [111349] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2826), 1, - sym_cell_path, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3699), 1, - sym_comment, - ACTIONS(1850), 3, + ACTIONS(7042), 1, anon_sym_LBRACK, + ACTIONS(7044), 1, anon_sym_LPAREN, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - [111303] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(7175), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7177), 1, - aux_sym__immediate_decimal_token5, - STATE(3700), 1, - sym_comment, - ACTIONS(1726), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111325] = 9, + STATE(1662), 1, + sym_parameter_parens, + STATE(1663), 1, + sym_parameter_bracks, + STATE(3700), 1, + sym_comment, + STATE(3707), 1, + aux_sym_decl_def_repeat1, + STATE(4548), 1, + sym_long_flag, + [111377] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7038), 1, - anon_sym_DOT2, - ACTIONS(7165), 1, - anon_sym_DOT_DOT, - ACTIONS(7179), 1, - anon_sym_RBRACK, - ACTIONS(7183), 1, + ACTIONS(6938), 1, sym__entry_separator, - STATE(3640), 1, + ACTIONS(7040), 1, + anon_sym_DOT2, + STATE(3662), 1, aux_sym__where_predicate_lhs_repeat1, STATE(3701), 1, sym_comment, - STATE(3884), 1, + STATE(3942), 1, sym_path, - STATE(4449), 1, + STATE(4484), 1, sym_cell_path, - [111353] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7187), 1, + ACTIONS(7168), 2, anon_sym_RBRACK, + anon_sym_DOT_DOT, + [111403] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2744), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2780), 1, + anon_sym_COLON2, + ACTIONS(7140), 1, + sym_identifier, + ACTIONS(7142), 1, + anon_sym_DOLLAR, STATE(3702), 1, sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(5180), 1, - sym__table_body, - [111381] = 7, - ACTIONS(3), 1, + STATE(3904), 1, + sym__variable_name, + STATE(4068), 1, + sym_val_variable, + STATE(4252), 1, + sym__assignment_pattern, + [111431] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2934), 1, - sym_cell_path, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(3703), 1, sym_comment, - ACTIONS(1862), 3, + ACTIONS(1856), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1854), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [111449] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7042), 1, anon_sym_LBRACK, + ACTIONS(7044), 1, anon_sym_LPAREN, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - [111405] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6949), 1, - anon_sym_DOT2, + STATE(1641), 1, + sym_parameter_parens, + STATE(1642), 1, + sym_parameter_bracks, STATE(3704), 1, sym_comment, - STATE(3755), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, - sym_path, - STATE(4368), 1, - sym_cell_path, - ACTIONS(1884), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [111429] = 4, + STATE(3728), 1, + aux_sym_decl_def_repeat1, + STATE(4548), 1, + sym_long_flag, + [111477] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7170), 1, + aux_sym__immediate_decimal_token5, STATE(3705), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_record, + ACTIONS(773), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111447] = 9, + sym_filesize_unit, + sym_duration_unit, + [111497] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7172), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7174), 1, + aux_sym__immediate_decimal_token5, + STATE(3706), 1, + sym_comment, + ACTIONS(1726), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1728), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [111519] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7044), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - STATE(1561), 1, + STATE(1664), 1, sym_parameter_parens, - STATE(1562), 1, + STATE(1665), 1, sym_parameter_bracks, - STATE(3706), 1, + STATE(3707), 1, sym_comment, - STATE(4039), 1, + STATE(4041), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4548), 1, sym_long_flag, - [111475] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6944), 1, - anon_sym_RBRACK, - ACTIONS(6947), 1, - anon_sym_DOT_DOT, - ACTIONS(7069), 1, - anon_sym_DOT2, - ACTIONS(7189), 1, - sym__entry_separator, - STATE(339), 1, - sym_path, - STATE(3707), 1, - sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4176), 1, - sym_cell_path, - [111503] = 9, + [111547] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7044), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - STATE(1516), 1, + STATE(1673), 1, sym_parameter_parens, - STATE(1517), 1, + STATE(1677), 1, sym_parameter_bracks, + STATE(3690), 1, + aux_sym_decl_def_repeat1, STATE(3708), 1, sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4548), 1, sym_long_flag, - [111531] = 9, + [111575] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7192), 1, - anon_sym_RBRACK, STATE(3709), 1, sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(5051), 1, - sym__table_body, - [111559] = 8, + ACTIONS(1812), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1810), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111593] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_LBRACE, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(7194), 1, - anon_sym_DOT_DOT2, - ACTIONS(7198), 1, - sym_filesize_unit, - ACTIONS(7200), 1, - sym_duration_unit, STATE(3710), 1, sym_comment, - ACTIONS(7196), 2, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111585] = 8, - ACTIONS(103), 1, + sym_filesize_unit, + sym_duration_unit, + [111611] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, + ACTIONS(3882), 1, + anon_sym_LBRACK, + ACTIONS(3934), 1, + sym__newline, + ACTIONS(7176), 1, + anon_sym_RBRACK, STATE(3711), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4554), 1, - sym_cell_path, - ACTIONS(5249), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [111611] = 8, - ACTIONS(103), 1, + STATE(4031), 1, + aux_sym__types_body_repeat1, + STATE(4582), 1, + sym_val_list, + STATE(4585), 1, + aux_sym__table_body_repeat1, + STATE(5024), 1, + sym__table_body, + [111639] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6963), 1, - sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(3882), 1, + anon_sym_LBRACK, + ACTIONS(3934), 1, + sym__newline, + ACTIONS(7178), 1, + anon_sym_RBRACK, STATE(3712), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4513), 1, - sym_cell_path, - ACTIONS(7202), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [111637] = 9, - ACTIONS(3), 1, + STATE(4031), 1, + aux_sym__types_body_repeat1, + STATE(4582), 1, + sym_val_list, + STATE(4585), 1, + aux_sym__table_body_repeat1, + STATE(4805), 1, + sym__table_body, + [111667] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1533), 1, - sym_parameter_parens, - STATE(1534), 1, - sym_parameter_bracks, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(6971), 1, + anon_sym_def, + ACTIONS(6973), 1, + anon_sym_use, + ACTIONS(6975), 1, + anon_sym_extern, + ACTIONS(6977), 1, + anon_sym_module, + ACTIONS(7180), 1, + anon_sym_alias, + ACTIONS(7182), 1, + anon_sym_const, STATE(3713), 1, sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [111665] = 5, + [111695] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7206), 1, - anon_sym_DOT_DOT2, STATE(3714), 1, sym_comment, - ACTIONS(7208), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7204), 4, - anon_sym_if, + ACTIONS(1856), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1854), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [111685] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7206), 1, - anon_sym_DOT_DOT2, - STATE(3715), 1, - sym_comment, - ACTIONS(7208), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7210), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111705] = 9, + [111713] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(6858), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2955), 1, + sym_cell_path, + STATE(3589), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3715), 1, + sym_comment, + ACTIONS(1878), 3, anon_sym_LBRACK, - ACTIONS(7057), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, anon_sym_DASH_DASH, - STATE(1538), 1, - sym_parameter_parens, - STATE(1539), 1, - sym_parameter_bracks, - STATE(3642), 1, - aux_sym_decl_def_repeat1, + [111737] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7184), 1, + anon_sym_alias, + ACTIONS(7186), 1, + anon_sym_const, + ACTIONS(7188), 1, + anon_sym_def, + ACTIONS(7190), 1, + anon_sym_use, + ACTIONS(7192), 1, + anon_sym_extern, + ACTIONS(7194), 1, + anon_sym_module, STATE(3716), 1, sym_comment, - STATE(4547), 1, - sym_long_flag, - [111733] = 4, + [111765] = 9, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3882), 1, + anon_sym_LBRACK, + ACTIONS(3934), 1, + sym__newline, + ACTIONS(7196), 1, + anon_sym_RBRACK, STATE(3717), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [111751] = 8, + STATE(4031), 1, + aux_sym__types_body_repeat1, + STATE(4582), 1, + sym_val_list, + STATE(4585), 1, + aux_sym__table_body_repeat1, + STATE(4799), 1, + sym__table_body, + [111793] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1850), 1, + ACTIONS(1846), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7094), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(363), 1, sym_path, STATE(3718), 1, sym_comment, - STATE(3778), 1, + STATE(3779), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4335), 1, + STATE(4336), 1, sym_cell_path, - ACTIONS(1853), 2, + ACTIONS(1849), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [111777] = 8, + [111819] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, + ACTIONS(7040), 1, + anon_sym_DOT2, + ACTIONS(7168), 1, + anon_sym_DOT_DOT, + ACTIONS(7198), 1, anon_sym_RBRACK, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(7212), 1, - anon_sym_DOT_DOT2, + ACTIONS(7202), 1, + sym__entry_separator, + STATE(3662), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3719), 1, sym_comment, - ACTIONS(7214), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111803] = 9, + STATE(3942), 1, + sym_path, + STATE(4453), 1, + sym_cell_path, + [111847] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1762), 1, + sym__unquoted_pattern, + ACTIONS(7206), 1, + anon_sym_DOT, + ACTIONS(7208), 1, + aux_sym__immediate_decimal_token5, + STATE(3720), 1, + sym_comment, + ACTIONS(1760), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [111869] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, + ACTIONS(6971), 1, anon_sym_def, - ACTIONS(6980), 1, + ACTIONS(6973), 1, anon_sym_use, - ACTIONS(6982), 1, + ACTIONS(6975), 1, anon_sym_extern, - ACTIONS(6984), 1, + ACTIONS(6977), 1, anon_sym_module, - ACTIONS(7216), 1, + ACTIONS(7210), 1, anon_sym_alias, - ACTIONS(7218), 1, + ACTIONS(7212), 1, anon_sym_const, - STATE(3720), 1, + STATE(3721), 1, sym_comment, - [111831] = 9, - ACTIONS(3), 1, + [111897] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1540), 1, - sym_parameter_parens, - STATE(1541), 1, - sym_parameter_bracks, - STATE(3721), 1, + ACTIONS(7214), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7216), 1, + aux_sym__immediate_decimal_token5, + STATE(3722), 1, sym_comment, - STATE(4039), 1, - aux_sym_decl_def_repeat1, - STATE(4547), 1, - sym_long_flag, - [111859] = 9, + ACTIONS(1726), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1728), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [111919] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, + ACTIONS(6971), 1, anon_sym_def, - ACTIONS(6980), 1, + ACTIONS(6973), 1, anon_sym_use, - ACTIONS(6982), 1, + ACTIONS(6975), 1, anon_sym_extern, - ACTIONS(6984), 1, + ACTIONS(6977), 1, anon_sym_module, - ACTIONS(7220), 1, + ACTIONS(7218), 1, anon_sym_alias, - ACTIONS(7222), 1, + ACTIONS(7220), 1, anon_sym_const, - STATE(3722), 1, + STATE(3723), 1, sym_comment, - [111887] = 5, + [111947] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7024), 1, - aux_sym__immediate_decimal_token5, - STATE(3723), 1, - sym_comment, - ACTIONS(739), 2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + ACTIONS(7222), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 4, + STATE(3724), 1, + sym_comment, + ACTIONS(7224), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [111907] = 9, + ACTIONS(1946), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [111969] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7044), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - STATE(1521), 1, + STATE(1573), 1, sym_parameter_parens, - STATE(1522), 1, + STATE(1575), 1, sym_parameter_bracks, - STATE(3724), 1, - sym_comment, - STATE(4039), 1, + STATE(3660), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(3725), 1, + sym_comment, + STATE(4548), 1, sym_long_flag, - [111935] = 9, + [111997] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, + ACTIONS(6971), 1, anon_sym_def, - ACTIONS(6980), 1, + ACTIONS(6973), 1, anon_sym_use, - ACTIONS(6982), 1, + ACTIONS(6975), 1, anon_sym_extern, - ACTIONS(6984), 1, + ACTIONS(6977), 1, anon_sym_module, - ACTIONS(7224), 1, - anon_sym_alias, ACTIONS(7226), 1, + anon_sym_alias, + ACTIONS(7228), 1, anon_sym_const, - STATE(3725), 1, + STATE(3726), 1, sym_comment, - [111963] = 4, - ACTIONS(103), 1, + [112025] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3726), 1, + ACTIONS(7058), 1, + anon_sym_DOT_DOT2, + STATE(3727), 1, sym_comment, - ACTIONS(1886), 3, + ACTIONS(7060), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1888), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [111981] = 9, + ACTIONS(7230), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [112045] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7044), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - STATE(1526), 1, + STATE(1525), 1, sym_parameter_parens, - STATE(1527), 1, + STATE(1529), 1, sym_parameter_bracks, - STATE(3727), 1, + STATE(3728), 1, sym_comment, - STATE(4039), 1, + STATE(4041), 1, aux_sym_decl_def_repeat1, - STATE(4547), 1, + STATE(4548), 1, sym_long_flag, - [112009] = 9, - ACTIONS(3), 1, + [112073] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7228), 1, + STATE(3729), 1, + sym_comment, + ACTIONS(1816), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1818), 4, anon_sym_RBRACK, - STATE(3728), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [112091] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2744), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2780), 1, + anon_sym_COLON2, + ACTIONS(7140), 1, + sym_identifier, + ACTIONS(7142), 1, + anon_sym_DOLLAR, + STATE(3730), 1, sym_comment, - STATE(4021), 1, - aux_sym__types_body_repeat1, - STATE(4571), 1, - sym_val_list, - STATE(4577), 1, - aux_sym__table_body_repeat1, - STATE(4975), 1, - sym__table_body, - [112037] = 9, + STATE(3904), 1, + sym__variable_name, + STATE(4068), 1, + sym_val_variable, + STATE(4253), 1, + sym__assignment_pattern, + [112119] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7042), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7044), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7046), 1, anon_sym_DASH_DASH, - STATE(1535), 1, + STATE(1671), 1, sym_parameter_parens, - STATE(1536), 1, + STATE(1674), 1, sym_parameter_bracks, - STATE(3721), 1, - aux_sym_decl_def_repeat1, - STATE(3729), 1, + STATE(3731), 1, sym_comment, - STATE(4547), 1, + STATE(4041), 1, + aux_sym_decl_def_repeat1, + STATE(4548), 1, sym_long_flag, - [112065] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3730), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [112083] = 8, + [112147] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2839), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, - STATE(3731), 1, + STATE(3732), 1, sym_comment, - STATE(3933), 1, + STATE(3937), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4383), 1, + STATE(4390), 1, sym__assignment_pattern, - [112108] = 7, + [112172] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7232), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(3340), 1, + STATE(3319), 1, sym__blosure, - STATE(3732), 1, + STATE(3733), 1, sym_comment, - STATE(3113), 2, + STATE(3119), 2, sym_block, sym_val_closure, - [112131] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(57), 1, - anon_sym_AT, - STATE(3733), 1, - sym_comment, - STATE(3803), 1, - aux_sym_attribute_list_repeat1, - STATE(4624), 1, - sym_attribute, - ACTIONS(7232), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [112152] = 7, + [112195] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7232), 1, anon_sym_LBRACE, - STATE(3340), 1, + STATE(3319), 1, sym__blosure, STATE(3734), 1, sym_comment, - STATE(3788), 1, + STATE(3786), 1, aux_sym__repeat_newline, - STATE(3113), 2, + STATE(3119), 2, sym_block, sym_val_closure, - [112175] = 7, + [112218] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7232), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(3341), 1, + STATE(3323), 1, sym__blosure, STATE(3735), 1, sym_comment, - STATE(3113), 2, + STATE(3119), 2, sym_block, sym_val_closure, - [112198] = 7, + [112241] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7232), 1, anon_sym_LBRACE, - STATE(3341), 1, + STATE(3323), 1, sym__blosure, STATE(3736), 1, sym_comment, - STATE(3790), 1, + STATE(3789), 1, aux_sym__repeat_newline, - STATE(3113), 2, + STATE(3119), 2, sym_block, sym_val_closure, - [112221] = 7, + [112264] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(57), 1, + anon_sym_AT, + STATE(3737), 1, + sym_comment, + STATE(3807), 1, + aux_sym_attribute_list_repeat1, + STATE(4707), 1, + sym_attribute, + ACTIONS(7234), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [112285] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5338), 1, sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, ACTIONS(7236), 1, + anon_sym_EQ2, + ACTIONS(7238), 1, sym_short_flag_identifier, - STATE(3073), 1, + STATE(2932), 1, sym__flag_equals_value, - STATE(3737), 1, + STATE(3738), 1, sym_comment, ACTIONS(5336), 2, sym__newline, anon_sym_SEMI, - [112244] = 6, + [112308] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5346), 1, + ACTIONS(5394), 1, sym__space, - ACTIONS(7238), 1, + ACTIONS(7240), 1, anon_sym_DOT_DOT2, - STATE(3738), 1, + STATE(3739), 1, sym_comment, - ACTIONS(5344), 2, + ACTIONS(5392), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7240), 2, + ACTIONS(7242), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112329] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7244), 1, + anon_sym_DOT, + ACTIONS(7246), 1, + aux_sym__immediate_decimal_token5, + STATE(3740), 1, + sym_comment, + ACTIONS(1760), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112265] = 4, + ACTIONS(1762), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [112350] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7242), 1, + ACTIONS(7248), 1, anon_sym_LT, - STATE(3739), 1, + STATE(3741), 1, sym_comment, - ACTIONS(5920), 5, + ACTIONS(5887), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [112282] = 4, + [112367] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7244), 1, + ACTIONS(7250), 1, anon_sym_LT, - STATE(3740), 1, + STATE(3742), 1, sym_comment, - ACTIONS(5920), 5, + ACTIONS(5887), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [112299] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7246), 1, - anon_sym_DOT, - ACTIONS(7248), 1, - aux_sym__immediate_decimal_token5, - STATE(3741), 1, - sym_comment, - ACTIONS(1736), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [112320] = 6, + [112384] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(1762), 1, sym__unquoted_pattern, - ACTIONS(7250), 1, - anon_sym_DOT, ACTIONS(7252), 1, + anon_sym_DOT, + ACTIONS(7254), 1, aux_sym__immediate_decimal_token5, - STATE(3742), 1, + STATE(3743), 1, sym_comment, - ACTIONS(1736), 3, + ACTIONS(1760), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [112341] = 8, + [112405] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, - STATE(3743), 1, + STATE(3744), 1, sym_comment, - STATE(3897), 1, + STATE(3904), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4250), 1, + STATE(4252), 1, sym__assignment_pattern, - [112366] = 8, + [112430] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, - STATE(3744), 1, + STATE(3745), 1, sym_comment, - STATE(3897), 1, + STATE(3904), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4251), 1, + STATE(4253), 1, sym__assignment_pattern, - [112391] = 8, + [112455] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, - STATE(3745), 1, + STATE(3746), 1, sym_comment, - STATE(3897), 1, + STATE(3904), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4252), 1, + STATE(4254), 1, sym__assignment_pattern, - [112416] = 6, + [112480] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7254), 1, - aux_sym__immediate_decimal_token1, ACTIONS(7256), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7258), 1, aux_sym__immediate_decimal_token5, - STATE(3746), 1, + STATE(3747), 1, sym_comment, ACTIONS(1726), 2, anon_sym_LPAREN2, @@ -231842,1424 +231924,1405 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1728), 2, anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [112437] = 7, + [112501] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7262), 1, + ACTIONS(7264), 1, anon_sym_DQUOTE2, - STATE(3747), 1, + STATE(3748), 1, sym_comment, STATE(3752), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [112460] = 7, + [112524] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6430), 1, + ACTIONS(6266), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6572), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7264), 1, + ACTIONS(7266), 1, aux_sym_unquoted_token2, - STATE(3748), 1, + STATE(3749), 1, sym_comment, - STATE(4133), 1, + STATE(4138), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6574), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [112483] = 7, + [112547] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(6470), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6788), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7264), 1, + ACTIONS(7266), 1, aux_sym_unquoted_token2, - STATE(3749), 1, + STATE(3750), 1, sym_comment, - STATE(4996), 1, + STATE(5021), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6790), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [112506] = 6, + [112570] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT2, - ACTIONS(7264), 1, + ACTIONS(7266), 1, sym__unquoted_pattern, - STATE(3750), 1, + STATE(3751), 1, sym_comment, - ACTIONS(4141), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7266), 2, + ACTIONS(7268), 2, sym_filesize_unit, sym_duration_unit, - [112527] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(3751), 1, - sym_comment, - STATE(4989), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112548] = 7, + [112591] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7268), 1, + ACTIONS(7270), 1, anon_sym_DQUOTE2, STATE(3752), 1, sym_comment, - STATE(3814), 1, + STATE(3884), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [112571] = 5, + [112614] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, + ACTIONS(1645), 1, + sym__unquoted_pattern, STATE(3753), 1, sym_comment, - STATE(4324), 1, + STATE(4999), 1, + sym__immediate_decimal, + ACTIONS(6470), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6472), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [112635] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(3754), 1, + sym_comment, + STATE(4320), 1, sym_block, - ACTIONS(7270), 4, + ACTIONS(7272), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [112590] = 5, + [112654] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(3754), 1, + STATE(3755), 1, sym_comment, - STATE(4330), 1, + STATE(4324), 1, sym_block, - ACTIONS(7270), 4, + ACTIONS(7272), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [112609] = 6, + [112673] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6949), 1, + ACTIONS(6959), 1, anon_sym_DOT2, - STATE(3755), 1, + STATE(3756), 1, sym_comment, - STATE(3758), 1, + STATE(3759), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4108), 1, + STATE(4114), 1, sym_path, - ACTIONS(1458), 3, + ACTIONS(1534), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [112630] = 6, + [112694] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7204), 1, + ACTIONS(7230), 1, sym__entry_separator, - ACTIONS(7274), 1, + ACTIONS(7276), 1, anon_sym_DOT_DOT2, - STATE(3756), 1, + STATE(3757), 1, sym_comment, - ACTIONS(7272), 2, + ACTIONS(7274), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7276), 2, + ACTIONS(7278), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112651] = 6, + [112715] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(7056), 1, sym__entry_separator, - ACTIONS(7274), 1, + ACTIONS(7276), 1, anon_sym_DOT_DOT2, - STATE(3757), 1, + STATE(3758), 1, sym_comment, - ACTIONS(7276), 2, + ACTIONS(7278), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7278), 2, + ACTIONS(7280), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [112672] = 5, + [112736] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7280), 1, + ACTIONS(7282), 1, anon_sym_DOT2, - STATE(4108), 1, + STATE(4114), 1, sym_path, - STATE(3758), 2, + STATE(3759), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + ACTIONS(1538), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [112691] = 5, + [112755] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7283), 1, + ACTIONS(7285), 1, aux_sym__immediate_decimal_token5, - STATE(3759), 1, + STATE(3760), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1812), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 3, + ACTIONS(1810), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112710] = 7, + [112774] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7285), 1, + ACTIONS(7287), 1, anon_sym_DQUOTE2, - STATE(3760), 1, + STATE(3761), 1, sym_comment, - STATE(3814), 1, + STATE(3884), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [112733] = 7, + [112797] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7232), 1, anon_sym_LBRACE, - STATE(3247), 1, + STATE(3320), 1, sym__blosure, - STATE(3732), 1, + STATE(3733), 1, aux_sym__repeat_newline, - STATE(3761), 1, + STATE(3762), 1, sym_comment, - STATE(3113), 2, + STATE(3119), 2, sym_block, sym_val_closure, - [112756] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7287), 1, - anon_sym_if, - ACTIONS(7289), 1, - sym__newline, - ACTIONS(7291), 1, - anon_sym_PIPE, - ACTIONS(7293), 1, - anon_sym_EQ_GT, - STATE(3762), 1, - sym_comment, - STATE(4182), 1, - aux_sym_match_pattern_repeat1, - STATE(4917), 1, - sym_match_guard, - [112781] = 7, + [112820] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7232), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(3272), 1, + STATE(3339), 1, sym__blosure, STATE(3763), 1, sym_comment, - STATE(3113), 2, + STATE(3119), 2, sym_block, sym_val_closure, - [112804] = 7, + [112843] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7232), 1, anon_sym_LBRACE, - STATE(3272), 1, + STATE(3339), 1, sym__blosure, STATE(3735), 1, aux_sym__repeat_newline, STATE(3764), 1, sym_comment, - STATE(3113), 2, + STATE(3119), 2, sym_block, sym_val_closure, - [112827] = 6, + [112866] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7295), 1, + ACTIONS(7289), 1, anon_sym_DOT, - ACTIONS(7297), 1, + ACTIONS(7291), 1, aux_sym__immediate_decimal_token5, STATE(3765), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1760), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1738), 2, + ACTIONS(1762), 2, anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [112848] = 6, + [112887] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1645), 1, sym__unquoted_pattern_in_record, STATE(3766), 1, sym_comment, - STATE(5192), 1, + STATE(4854), 1, sym__immediate_decimal, - ACTIONS(7299), 2, + ACTIONS(7293), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, + ACTIONS(7295), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [112869] = 8, + [112908] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7303), 1, + ACTIONS(7297), 1, + anon_sym_if, + ACTIONS(7299), 1, sym__newline, - ACTIONS(7305), 1, - anon_sym_SEMI, - ACTIONS(7307), 1, - anon_sym_RPAREN, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, + ACTIONS(7301), 1, + anon_sym_PIPE, + ACTIONS(7303), 1, + anon_sym_EQ_GT, STATE(3767), 1, sym_comment, - STATE(4139), 1, - aux_sym__block_body_repeat1, - STATE(4404), 1, - aux_sym__repeat_newline, - [112894] = 5, + STATE(4202), 1, + aux_sym_match_pattern_repeat1, + STATE(4956), 1, + sym_match_guard, + [112933] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, STATE(3768), 1, sym_comment, - STATE(4336), 1, + STATE(4322), 1, sym_block, - ACTIONS(7309), 4, + ACTIONS(7305), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [112913] = 5, + [112952] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, STATE(3769), 1, sym_comment, STATE(4340), 1, sym_block, - ACTIONS(7309), 4, + ACTIONS(7305), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [112932] = 8, + [112971] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3653), 1, + ACTIONS(3651), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7094), 1, anon_sym_DOT2, - ACTIONS(7311), 1, + ACTIONS(7307), 1, anon_sym_RBRACE, - STATE(339), 1, + STATE(363), 1, sym_path, STATE(3770), 1, sym_comment, - STATE(3778), 1, + STATE(3779), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4335), 1, + STATE(4336), 1, sym_cell_path, - [112957] = 7, + [112996] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2826), 1, - sym_cell_path, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7311), 1, + sym__newline, + ACTIONS(7313), 1, + anon_sym_SEMI, + ACTIONS(7315), 1, + anon_sym_RPAREN, + STATE(1375), 1, + aux_sym__parenthesized_body_repeat1, STATE(3771), 1, sym_comment, - ACTIONS(5600), 2, - anon_sym_EQ, - anon_sym_GT2, - [112980] = 8, + STATE(4049), 1, + aux_sym__block_body_repeat1, + STATE(4503), 1, + aux_sym__repeat_newline, + [113021] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5600), 1, + ACTIONS(5596), 1, sym__entry_separator, - ACTIONS(5602), 1, + ACTIONS(5598), 1, anon_sym_GT2, - ACTIONS(7038), 1, + ACTIONS(7040), 1, anon_sym_DOT2, - STATE(3640), 1, + STATE(3662), 1, aux_sym__where_predicate_lhs_repeat1, STATE(3772), 1, sym_comment, - STATE(3884), 1, + STATE(3942), 1, sym_path, - STATE(4335), 1, + STATE(4336), 1, + sym_cell_path, + [113046] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6858), 1, + anon_sym_DOT2, + STATE(2492), 1, + sym_path, + STATE(2854), 1, sym_cell_path, - [113005] = 8, + STATE(3589), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3773), 1, + sym_comment, + ACTIONS(5596), 2, + anon_sym_EQ, + anon_sym_GT2, + [113069] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5275), 1, anon_sym_RBRACK, - ACTIONS(5247), 1, + ACTIONS(5277), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7094), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(363), 1, sym_path, - STATE(3773), 1, + STATE(3774), 1, sym_comment, - STATE(3778), 1, + STATE(3779), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4730), 1, + STATE(4791), 1, sym_cell_path, - [113030] = 7, + [113094] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, + ACTIONS(6514), 1, anon_sym_LPAREN2, - ACTIONS(7317), 1, + ACTIONS(7319), 1, sym__entry_separator, - STATE(2234), 1, + STATE(2235), 1, aux_sym__types_body_repeat2, - STATE(3774), 1, + STATE(3775), 1, sym_comment, - STATE(4751), 1, + STATE(4726), 1, sym__expr_parenthesized_immediate, - ACTIONS(7315), 2, + ACTIONS(7317), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [113053] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3775), 1, - sym_comment, - STATE(3940), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4619), 1, - sym__assignment_pattern_parenthesized, - [113078] = 8, + [113117] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1858), 1, sym__entry_separator, - ACTIONS(1868), 1, + ACTIONS(1860), 1, anon_sym_GT2, - ACTIONS(7038), 1, + ACTIONS(7040), 1, anon_sym_DOT2, - STATE(3640), 1, + STATE(3662), 1, aux_sym__where_predicate_lhs_repeat1, STATE(3776), 1, sym_comment, - STATE(3884), 1, + STATE(3942), 1, sym_path, - STATE(4102), 1, + STATE(4103), 1, sym_cell_path, - [113103] = 8, + [113142] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(1840), 1, sym__entry_separator, - ACTIONS(1884), 1, + ACTIONS(1842), 1, anon_sym_GT2, - ACTIONS(7038), 1, + ACTIONS(7040), 1, anon_sym_DOT2, - STATE(3640), 1, + STATE(3662), 1, aux_sym__where_predicate_lhs_repeat1, STATE(3777), 1, sym_comment, - STATE(3884), 1, + STATE(3942), 1, sym_path, - STATE(4176), 1, + STATE(4177), 1, sym_cell_path, - [113128] = 7, + [113167] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1460), 1, + ACTIONS(1870), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(1872), 1, + anon_sym_GT2, + ACTIONS(7040), 1, anon_sym_DOT2, - STATE(339), 1, - sym_path, + STATE(3662), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3778), 1, sym_comment, - STATE(3797), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1458), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [113151] = 8, + STATE(3942), 1, + sym_path, + STATE(4218), 1, + sym_cell_path, + [113192] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, + ACTIONS(1536), 1, sym__entry_separator, - ACTIONS(1860), 1, - anon_sym_GT2, - ACTIONS(7038), 1, + ACTIONS(7094), 1, anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, + STATE(363), 1, + sym_path, STATE(3779), 1, sym_comment, - STATE(3884), 1, - sym_path, - STATE(4214), 1, - sym_cell_path, - [113176] = 6, + STATE(3798), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1534), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [113215] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2118), 1, sym__entry_separator, - ACTIONS(7320), 1, + ACTIONS(7322), 1, anon_sym_DOT_DOT2, STATE(3780), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(2120), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7322), 2, + ACTIONS(7324), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [113197] = 7, + [113236] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7324), 1, + ACTIONS(7326), 1, anon_sym_DQUOTE2, STATE(3781), 1, sym_comment, - STATE(3785), 1, + STATE(3784), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [113220] = 7, + [113259] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4147), 1, + ACTIONS(4131), 1, aux_sym_unquoted_token2, - ACTIONS(6430), 1, + ACTIONS(6266), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6572), 1, aux_sym__immediate_decimal_token2, STATE(3782), 1, sym_comment, - STATE(4133), 1, + STATE(4138), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6574), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [113243] = 7, + [113282] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4147), 1, + ACTIONS(4131), 1, aux_sym_unquoted_token2, - ACTIONS(6478), 1, + ACTIONS(6470), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6788), 1, aux_sym__immediate_decimal_token2, STATE(3783), 1, sym_comment, - STATE(4996), 1, + STATE(5021), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6790), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [113266] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3784), 1, - sym_comment, - STATE(3940), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4371), 1, - sym__assignment_pattern_parenthesized, - [113291] = 7, + [113305] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7326), 1, + ACTIONS(7328), 1, anon_sym_DQUOTE2, - STATE(3785), 1, + STATE(3784), 1, sym_comment, - STATE(3814), 1, + STATE(3884), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [113314] = 8, + [113328] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, - STATE(3786), 1, + STATE(3785), 1, sym_comment, - STATE(3940), 1, + STATE(3886), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4405), 1, + STATE(4522), 1, sym__assignment_pattern_parenthesized, - [113339] = 7, + [113353] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3218), 1, - sym__blosure, - STATE(3763), 1, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(7232), 1, + anon_sym_LBRACE, + STATE(656), 1, aux_sym__repeat_newline, - STATE(3787), 1, + STATE(3308), 1, + sym__blosure, + STATE(3786), 1, sym_comment, - STATE(3113), 2, + STATE(3119), 2, sym_block, sym_val_closure, - [113362] = 7, + [113376] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7232), 1, anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3224), 1, + STATE(3308), 1, sym__blosure, - STATE(3788), 1, + STATE(3787), 1, sym_comment, - STATE(3113), 2, + STATE(3825), 1, + aux_sym__repeat_newline, + STATE(3119), 2, sym_block, sym_val_closure, - [113385] = 7, + [113399] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7140), 1, + sym_identifier, + ACTIONS(7142), 1, + anon_sym_DOLLAR, + STATE(3788), 1, + sym_comment, + STATE(3886), 1, + sym__variable_name, + STATE(4068), 1, + sym_val_variable, + STATE(4500), 1, + sym__assignment_pattern_parenthesized, + [113424] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7232), 1, anon_sym_LBRACE, - STATE(3224), 1, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(3311), 1, sym__blosure, STATE(3789), 1, sym_comment, - STATE(3824), 1, - aux_sym__repeat_newline, - STATE(3113), 2, + STATE(3119), 2, sym_block, sym_val_closure, - [113408] = 7, + [113447] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7232), 1, anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3225), 1, + STATE(3252), 1, sym__blosure, + STATE(3763), 1, + aux_sym__repeat_newline, STATE(3790), 1, sym_comment, - STATE(3113), 2, + STATE(3119), 2, sym_block, sym_val_closure, - [113431] = 3, + [113470] = 3, ACTIONS(103), 1, anon_sym_POUND, STATE(3791), 1, sym_comment, - ACTIONS(1478), 6, + ACTIONS(1522), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113446] = 8, - ACTIONS(3), 1, + [113485] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(461), 1, - anon_sym_RPAREN, - ACTIONS(7303), 1, - sym__newline, - ACTIONS(7305), 1, - anon_sym_SEMI, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7140), 1, + sym_identifier, + ACTIONS(7142), 1, + anon_sym_DOLLAR, STATE(3792), 1, sym_comment, - STATE(4188), 1, - aux_sym__block_body_repeat1, - STATE(4404), 1, - aux_sym__repeat_newline, - [113471] = 5, + STATE(3886), 1, + sym__variable_name, + STATE(4068), 1, + sym_val_variable, + STATE(4550), 1, + sym__assignment_pattern_parenthesized, + [113510] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(1762), 1, sym__unquoted_pattern, - ACTIONS(7067), 1, + ACTIONS(7208), 1, aux_sym__immediate_decimal_token5, STATE(3793), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(1760), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [113490] = 8, + [113529] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7069), 1, - anon_sym_DOT2, - ACTIONS(7328), 1, - anon_sym_RBRACE, - ACTIONS(7330), 1, - sym__entry_separator, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(3794), 1, sym_comment, - STATE(4682), 1, - sym_cell_path, - [113515] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3795), 1, - sym_comment, - ACTIONS(1543), 6, + ACTIONS(1526), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113530] = 3, + [113544] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3796), 1, + STATE(3795), 1, sym_comment, - ACTIONS(1466), 6, + ACTIONS(1506), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113545] = 6, + [113559] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(449), 1, + anon_sym_RPAREN, + ACTIONS(7311), 1, + sym__newline, + ACTIONS(7313), 1, + anon_sym_SEMI, + STATE(1375), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3796), 1, + sym_comment, + STATE(4293), 1, + aux_sym__block_body_repeat1, + STATE(4503), 1, + aux_sym__repeat_newline, + [113584] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7094), 1, + anon_sym_DOT2, + ACTIONS(7330), 1, + anon_sym_RBRACE, + ACTIONS(7332), 1, + sym__entry_separator, + STATE(363), 1, + sym_path, + STATE(3779), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3797), 1, + sym_comment, + STATE(4631), 1, + sym_cell_path, + [113609] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(1540), 1, sym__entry_separator, - ACTIONS(7332), 1, + ACTIONS(7334), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(363), 1, sym_path, - ACTIONS(1524), 2, + ACTIONS(1538), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(3797), 2, + STATE(3798), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - [113566] = 3, + [113630] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3798), 1, + STATE(3799), 1, sym_comment, - ACTIONS(1470), 6, + ACTIONS(1510), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113581] = 3, + [113645] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3799), 1, + STATE(3800), 1, sym_comment, - ACTIONS(1474), 6, + ACTIONS(1514), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113596] = 3, + [113660] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3800), 1, + STATE(3801), 1, sym_comment, - ACTIONS(1514), 6, + ACTIONS(1518), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113611] = 5, + [113675] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(1812), 1, sym__unquoted_pattern, - ACTIONS(7335), 1, + ACTIONS(7337), 1, aux_sym__immediate_decimal_token5, - STATE(3801), 1, + STATE(3802), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1810), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [113630] = 8, + [113694] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2146), 1, + sym__entry_separator, + ACTIONS(7339), 1, + anon_sym_DOT_DOT2, + STATE(3803), 1, + sym_comment, + ACTIONS(2148), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7341), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113715] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2166), 1, + sym__entry_separator, + ACTIONS(7343), 1, + anon_sym_DOT_DOT2, + STATE(3804), 1, + sym_comment, + ACTIONS(2168), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7345), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113736] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2090), 1, + sym__entry_separator, + ACTIONS(7347), 1, + anon_sym_DOT_DOT2, + STATE(3805), 1, + sym_comment, + ACTIONS(2092), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7349), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113757] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, - STATE(3802), 1, + STATE(3806), 1, sym_comment, - STATE(3933), 1, + STATE(3937), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4389), 1, + STATE(4397), 1, sym__assignment_pattern, - [113655] = 5, + [113782] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7339), 1, + ACTIONS(7353), 1, anon_sym_AT, - STATE(4624), 1, + STATE(4707), 1, sym_attribute, - STATE(3803), 2, + STATE(3807), 2, sym_comment, aux_sym_attribute_list_repeat1, - ACTIONS(7337), 3, + ACTIONS(7351), 3, anon_sym_export, anon_sym_def, anon_sym_extern, - [113674] = 8, + [113801] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7113), 1, + aux_sym__immediate_decimal_token5, + STATE(3808), 1, + sym_comment, + ACTIONS(1760), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1762), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [113820] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2839), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, - STATE(3804), 1, + STATE(3809), 1, sym_comment, - STATE(3933), 1, + STATE(3937), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4390), 1, + STATE(4399), 1, sym__assignment_pattern, - [113699] = 7, + [113845] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6430), 1, + ACTIONS(6266), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6572), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7342), 1, + ACTIONS(7356), 1, aux_sym_unquoted_token2, - STATE(3805), 1, + STATE(3810), 1, sym_comment, - STATE(4133), 1, + STATE(4138), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6574), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [113722] = 7, + [113868] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(6470), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6788), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7342), 1, + ACTIONS(7356), 1, aux_sym_unquoted_token2, - STATE(3806), 1, + STATE(3811), 1, sym_comment, - STATE(4996), 1, + STATE(5021), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6790), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [113745] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2100), 1, - sym__entry_separator, - ACTIONS(7344), 1, - anon_sym_DOT_DOT2, - STATE(3807), 1, - sym_comment, - ACTIONS(2102), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7346), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113766] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2076), 1, - sym__entry_separator, - ACTIONS(7348), 1, - anon_sym_DOT_DOT2, - STATE(3808), 1, - sym_comment, - ACTIONS(2078), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7350), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113787] = 6, + [113891] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(1468), 1, sym__entry_separator, - ACTIONS(7352), 1, - anon_sym_DOT_DOT2, - STATE(3809), 1, + ACTIONS(7358), 1, + anon_sym_QMARK2, + STATE(3812), 1, sym_comment, - ACTIONS(2122), 2, + ACTIONS(1466), 4, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7354), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113808] = 5, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [113910] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7137), 1, + ACTIONS(7360), 1, aux_sym__immediate_decimal_token5, - STATE(3810), 1, + STATE(3813), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1810), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1738), 3, + ACTIONS(1812), 3, sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [113827] = 6, + [113929] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(4123), 1, anon_sym_DOT_DOT2, - ACTIONS(7342), 1, + ACTIONS(7356), 1, sym__unquoted_pattern, - STATE(3811), 1, + STATE(3814), 1, sym_comment, - ACTIONS(4141), 2, + ACTIONS(4125), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7266), 2, + ACTIONS(7268), 2, sym_filesize_unit, sym_duration_unit, - [113848] = 5, + [113950] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(1468), 1, sym__entry_separator, - ACTIONS(7356), 1, - anon_sym_QMARK2, - STATE(3812), 1, + ACTIONS(7358), 1, + anon_sym_BANG, + STATE(3815), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1466), 4, anon_sym_RBRACK, anon_sym_GT2, anon_sym_DOT_DOT, anon_sym_DOT2, - [113867] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7358), 1, - aux_sym__immediate_decimal_token5, - STATE(3813), 1, - sym_comment, - ACTIONS(1802), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [113886] = 6, + [113969] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7360), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7366), 1, + ACTIONS(7362), 1, anon_sym_DQUOTE2, - STATE(4205), 1, + STATE(3761), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3816), 1, + sym_comment, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7363), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - STATE(3814), 2, - sym_comment, - aux_sym__inter_double_quotes_repeat1, - [113907] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3815), 1, - sym_comment, - STATE(4014), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4405), 1, - sym__assignment_pattern_parenthesized, - [113932] = 8, + [113992] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, + ACTIONS(2744), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2780), 1, anon_sym_COLON2, - ACTIONS(5164), 1, + ACTIONS(5187), 1, anon_sym_DOLLAR, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - STATE(3816), 1, + STATE(3817), 1, sym_comment, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(5164), 1, + STATE(5166), 1, sym__variable_name, - [113957] = 7, + [114017] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4303), 1, + ACTIONS(4328), 1, sym__space, - ACTIONS(7234), 1, + ACTIONS(7236), 1, anon_sym_EQ2, - ACTIONS(7368), 1, + ACTIONS(7364), 1, sym_long_flag_identifier, - STATE(2933), 1, + STATE(3059), 1, sym__flag_equals_value, - STATE(3817), 1, + STATE(3818), 1, sym_comment, - ACTIONS(4301), 2, + ACTIONS(4326), 2, sym__newline, anon_sym_SEMI, - [113980] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(3818), 1, - sym_comment, - STATE(4872), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114001] = 7, + [114040] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7370), 1, + ACTIONS(7366), 1, anon_sym_DQUOTE2, STATE(3819), 1, sym_comment, - STATE(3823), 1, + STATE(3822), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114024] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7303), 1, - sym__newline, - ACTIONS(7305), 1, - anon_sym_SEMI, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3820), 1, - sym_comment, - STATE(4154), 1, - aux_sym__block_body_repeat1, - STATE(4404), 1, - aux_sym__repeat_newline, - [114049] = 7, + [114063] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6430), 1, + ACTIONS(6266), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6572), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6902), 1, + ACTIONS(6924), 1, aux_sym_unquoted_token2, - STATE(3821), 1, + STATE(3820), 1, sym_comment, - STATE(4133), 1, + STATE(4138), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6574), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114072] = 7, + [114086] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(6470), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6788), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6902), 1, + ACTIONS(6924), 1, aux_sym_unquoted_token2, - STATE(3822), 1, + STATE(3821), 1, sym_comment, - STATE(4996), 1, + STATE(5021), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6790), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114095] = 7, + [114109] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7374), 1, + ACTIONS(7368), 1, anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3823), 1, + STATE(3822), 1, sym_comment, - STATE(4205), 1, + STATE(3884), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114118] = 7, + [114132] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(7311), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7313), 1, + anon_sym_SEMI, + ACTIONS(7370), 1, + anon_sym_RPAREN, + STATE(1375), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3823), 1, + sym_comment, + STATE(4160), 1, + aux_sym__block_body_repeat1, + STATE(4503), 1, + aux_sym__repeat_newline, + [114157] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + sym__unquoted_pattern, + STATE(3824), 1, + sym_comment, + STATE(4957), 1, + sym__immediate_decimal, + ACTIONS(6470), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6472), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [114178] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(7232), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(3263), 1, + STATE(3239), 1, sym__blosure, - STATE(3824), 1, + STATE(3825), 1, sym_comment, - STATE(3113), 2, + STATE(3119), 2, sym_block, sym_val_closure, - [114141] = 7, + [114201] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7376), 1, + ACTIONS(7372), 1, anon_sym_DQUOTE2, - STATE(3825), 1, + STATE(3826), 1, sym_comment, - STATE(3828), 1, + STATE(3829), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114164] = 7, + [114224] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5036), 1, aux_sym_unquoted_token2, - ACTIONS(6430), 1, + ACTIONS(6266), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6572), 1, aux_sym__immediate_decimal_token2, - STATE(3826), 1, + STATE(3827), 1, sym_comment, - STATE(4133), 1, + STATE(4138), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6574), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114187] = 7, + [114247] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5048), 1, + ACTIONS(5036), 1, aux_sym_unquoted_token2, - ACTIONS(6478), 1, + ACTIONS(6470), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6788), 1, aux_sym__immediate_decimal_token2, - STATE(3827), 1, + STATE(3828), 1, sym_comment, - STATE(4996), 1, + STATE(5021), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6790), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114210] = 7, + [114270] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7378), 1, + ACTIONS(7374), 1, anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3828), 1, + STATE(3829), 1, sym_comment, - STATE(4205), 1, + STATE(3884), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114233] = 7, + [114293] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7380), 1, + ACTIONS(7376), 1, anon_sym_DQUOTE2, - STATE(3829), 1, + STATE(3830), 1, sym_comment, - STATE(3832), 1, + STATE(3833), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114256] = 7, + [114316] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4969), 1, + ACTIONS(5009), 1, aux_sym_unquoted_token2, - ACTIONS(6430), 1, + ACTIONS(6266), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6572), 1, aux_sym__immediate_decimal_token2, - STATE(3830), 1, + STATE(3831), 1, sym_comment, - STATE(4133), 1, + STATE(4138), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6574), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114279] = 7, + [114339] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4969), 1, + ACTIONS(5009), 1, aux_sym_unquoted_token2, - ACTIONS(6478), 1, + ACTIONS(6470), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6788), 1, aux_sym__immediate_decimal_token2, - STATE(3831), 1, + STATE(3832), 1, sym_comment, - STATE(4996), 1, + STATE(5021), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6790), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114302] = 7, + [114362] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, + ACTIONS(7378), 1, anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3832), 1, + STATE(3833), 1, sym_comment, - STATE(4205), 1, + STATE(3884), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114325] = 7, + [114385] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7384), 1, + ACTIONS(7380), 1, anon_sym_DQUOTE2, - STATE(3833), 1, - sym_comment, STATE(3834), 1, + sym_comment, + STATE(3835), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114348] = 7, + [114408] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7386), 1, + ACTIONS(7382), 1, anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3834), 1, + STATE(3835), 1, sym_comment, - STATE(4205), 1, + STATE(3884), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114371] = 7, + [114431] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7388), 1, + ACTIONS(7384), 1, anon_sym_DQUOTE2, - STATE(3835), 1, + STATE(3836), 1, sym_comment, STATE(3837), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114394] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7069), 1, - anon_sym_DOT2, - ACTIONS(7390), 1, - anon_sym_RBRACE, - ACTIONS(7392), 1, - sym__entry_separator, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3836), 1, - sym_comment, - STATE(4654), 1, - sym_cell_path, - [114419] = 7, + [114454] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7394), 1, + ACTIONS(7386), 1, anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, STATE(3837), 1, sym_comment, - STATE(4205), 1, + STATE(3884), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114442] = 6, + [114477] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7396), 1, + ACTIONS(7388), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7398), 1, + ACTIONS(7390), 1, aux_sym__immediate_decimal_token5, STATE(3838), 1, sym_comment, @@ -233269,250 +233332,267 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1728), 2, anon_sym_RBRACE, sym__unquoted_pattern_in_record, - [114463] = 7, + [114498] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7400), 1, + ACTIONS(7392), 1, anon_sym_DQUOTE2, STATE(3839), 1, sym_comment, STATE(3840), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4205), 1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114486] = 7, + [114521] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7402), 1, + ACTIONS(7394), 1, anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, STATE(3840), 1, sym_comment, - STATE(4205), 1, + STATE(3884), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4276), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7262), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114509] = 7, + [114544] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6616), 1, + ACTIONS(7094), 1, + anon_sym_DOT2, + ACTIONS(7396), 1, + anon_sym_RBRACE, + ACTIONS(7398), 1, + sym__entry_separator, + STATE(363), 1, + sym_path, + STATE(3779), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3841), 1, + sym_comment, + STATE(4727), 1, + sym_cell_path, + [114569] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6808), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(7171), 1, + ACTIONS(7164), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7404), 1, + ACTIONS(7400), 1, aux_sym__immediate_decimal_token2, - STATE(3841), 1, + STATE(3842), 1, sym_comment, - STATE(4323), 1, + STATE(4325), 1, sym__immediate_decimal, - ACTIONS(7406), 2, + ACTIONS(7402), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114532] = 7, + [114592] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6616), 1, + ACTIONS(6808), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(7299), 1, + ACTIONS(7293), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7408), 1, + ACTIONS(7404), 1, aux_sym__immediate_decimal_token2, - STATE(3842), 1, + STATE(3843), 1, sym_comment, - STATE(5077), 1, + STATE(5083), 1, sym__immediate_decimal, - ACTIONS(7410), 2, + ACTIONS(7406), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114555] = 6, + [114615] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6616), 1, + ACTIONS(6808), 1, sym__unquoted_pattern_in_record, - ACTIONS(7412), 1, + ACTIONS(7408), 1, anon_sym_DOT_DOT2, - STATE(3843), 1, + STATE(3844), 1, sym_comment, - ACTIONS(7414), 2, + ACTIONS(7410), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7416), 2, + ACTIONS(7412), 2, sym_filesize_unit, sym_duration_unit, - [114576] = 6, + [114636] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7418), 1, + ACTIONS(7414), 1, sym_long_flag_identifier, - ACTIONS(7420), 1, + ACTIONS(7416), 1, anon_sym_EQ2, - STATE(3844), 1, + STATE(3845), 1, sym_comment, - STATE(4599), 1, + STATE(4600), 1, sym__flag_equals_value, - ACTIONS(4303), 3, + ACTIONS(4328), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [114597] = 5, + [114657] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(3845), 1, + STATE(3846), 1, sym_comment, - STATE(4337), 1, + STATE(4341), 1, sym_block, - ACTIONS(7422), 4, + ACTIONS(7418), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [114616] = 6, + [114676] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1706), 1, sym__entry_separator, - ACTIONS(7424), 1, + ACTIONS(7420), 1, anon_sym_DOT_DOT2, - STATE(3846), 1, + STATE(3847), 1, sym_comment, - ACTIONS(1619), 2, + ACTIONS(1613), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(7426), 2, + ACTIONS(7422), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114637] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5265), 1, - anon_sym_RBRACK, - ACTIONS(5267), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3847), 1, - sym_comment, - STATE(4678), 1, - sym_cell_path, - [114662] = 6, + [114697] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1706), 1, sym__space, - ACTIONS(7238), 1, + ACTIONS(7240), 1, anon_sym_DOT_DOT2, STATE(3848), 1, sym_comment, - ACTIONS(1619), 2, + ACTIONS(1613), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7240), 2, + ACTIONS(7242), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114683] = 5, + [114718] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(7102), 1, aux_sym__immediate_decimal_token5, STATE(3849), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1760), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1738), 3, + ACTIONS(1762), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [114702] = 5, + [114737] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7428), 1, + ACTIONS(7424), 1, aux_sym__immediate_decimal_token5, STATE(3850), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1810), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1804), 3, + ACTIONS(1812), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [114721] = 6, + [114756] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7430), 1, + ACTIONS(5243), 1, + anon_sym_RBRACK, + ACTIONS(5245), 1, + sym__entry_separator, + ACTIONS(7094), 1, + anon_sym_DOT2, + STATE(363), 1, + sym_path, + STATE(3779), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3851), 1, + sym_comment, + STATE(4664), 1, + sym_cell_path, + [114781] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7426), 1, anon_sym_DOT, - ACTIONS(7432), 1, + ACTIONS(7428), 1, aux_sym__immediate_decimal_token5, - STATE(3851), 1, + STATE(3852), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1760), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1738), 2, + ACTIONS(1762), 2, anon_sym_RBRACE, sym__unquoted_pattern_in_record, - [114742] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, - STATE(3852), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114761] = 6, + [114802] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2118), 1, sym__space, - ACTIONS(7434), 1, + ACTIONS(7430), 1, anon_sym_DOT_DOT2, STATE(3853), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(2120), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7436), 2, + ACTIONS(7432), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114782] = 4, + [114823] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7084), 1, + aux_sym__immediate_decimal_token5, STATE(3854), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(1762), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1760), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114842] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3855), 1, + sym_comment, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + ACTIONS(741), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [114799] = 4, + [114859] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3855), 1, + STATE(3856), 1, sym_comment, ACTIONS(771), 2, anon_sym_DOT_DOT2, @@ -233522,200 +233602,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [114816] = 4, + [114876] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3856), 1, + STATE(3857), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(878), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(851), 4, + ACTIONS(880), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [114833] = 7, + [114893] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7272), 1, - anon_sym_DOT_DOT, ACTIONS(7274), 1, + anon_sym_DOT_DOT, + ACTIONS(7276), 1, anon_sym_DOT_DOT2, - ACTIONS(7438), 1, + ACTIONS(7434), 1, anon_sym_RBRACK, - ACTIONS(7440), 1, + ACTIONS(7436), 1, sym__entry_separator, - STATE(3857), 1, + STATE(3858), 1, sym_comment, - ACTIONS(7276), 2, + ACTIONS(7278), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114856] = 7, + [114916] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7274), 1, + ACTIONS(7276), 1, anon_sym_DOT_DOT2, - ACTIONS(7278), 1, + ACTIONS(7280), 1, anon_sym_DOT_DOT, - ACTIONS(7442), 1, + ACTIONS(7438), 1, anon_sym_RBRACK, - ACTIONS(7445), 1, + ACTIONS(7441), 1, sym__entry_separator, - STATE(3858), 1, + STATE(3859), 1, sym_comment, - ACTIONS(7276), 2, + ACTIONS(7278), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114879] = 7, + [114939] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, + ACTIONS(6514), 1, anon_sym_LPAREN2, - ACTIONS(7317), 1, + ACTIONS(7319), 1, sym__entry_separator, - STATE(2232), 1, + STATE(2245), 1, aux_sym__types_body_repeat2, - STATE(3859), 1, + STATE(3860), 1, sym_comment, - STATE(4751), 1, + STATE(4726), 1, sym__expr_parenthesized_immediate, - ACTIONS(7448), 2, + ACTIONS(7444), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [114902] = 6, + [114962] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2118), 1, sym__entry_separator, - ACTIONS(7450), 1, + ACTIONS(7446), 1, anon_sym_DOT_DOT2, - STATE(3860), 1, + STATE(3861), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(2120), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7452), 2, + ACTIONS(7448), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114923] = 6, + [114983] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, + ACTIONS(2146), 1, sym__entry_separator, - ACTIONS(7454), 1, + ACTIONS(7450), 1, anon_sym_DOT_DOT2, - STATE(3861), 1, + STATE(3862), 1, sym_comment, - ACTIONS(2102), 2, + ACTIONS(2148), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7456), 2, + ACTIONS(7452), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114944] = 6, + [115004] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(2166), 1, sym__entry_separator, - ACTIONS(7458), 1, + ACTIONS(7454), 1, anon_sym_DOT_DOT2, - STATE(3862), 1, + STATE(3863), 1, sym_comment, - ACTIONS(2078), 2, + ACTIONS(2168), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7460), 2, + ACTIONS(7456), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114965] = 6, + [115025] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2090), 1, sym__entry_separator, - ACTIONS(7462), 1, + ACTIONS(7458), 1, anon_sym_DOT_DOT2, - STATE(3863), 1, + STATE(3864), 1, sym_comment, - ACTIONS(2122), 2, + ACTIONS(2092), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7464), 2, + ACTIONS(7460), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114986] = 7, + [115046] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7466), 1, - anon_sym_DQUOTE2, - STATE(3760), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3864), 1, - sym_comment, - STATE(4205), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [115009] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, STATE(3865), 1, sym_comment, STATE(3915), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4250), 1, + STATE(4252), 1, sym__assignment_pattern, - [115034] = 8, + [115071] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, STATE(3866), 1, sym_comment, STATE(3915), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4251), 1, + STATE(4253), 1, sym__assignment_pattern, - [115059] = 8, + [115096] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, STATE(3867), 1, sym_comment, STATE(3915), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4252), 1, + STATE(4254), 1, sym__assignment_pattern, - [115084] = 6, + [115121] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7468), 1, + ACTIONS(7462), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7470), 1, + ACTIONS(7464), 1, aux_sym__immediate_decimal_token5, STATE(3868), 1, sym_comment, @@ -233725,181 +233789,181 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1728), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [115105] = 6, + [115142] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, + ACTIONS(2146), 1, sym__space, - ACTIONS(7472), 1, + ACTIONS(7466), 1, anon_sym_DOT_DOT2, STATE(3869), 1, sym_comment, - ACTIONS(2102), 2, + ACTIONS(2148), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7474), 2, + ACTIONS(7468), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115126] = 6, + [115163] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(2166), 1, sym__space, - ACTIONS(7476), 1, + ACTIONS(7470), 1, anon_sym_DOT_DOT2, STATE(3870), 1, sym_comment, - ACTIONS(2078), 2, + ACTIONS(2168), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7478), 2, + ACTIONS(7472), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115147] = 5, + [115184] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, STATE(3871), 1, sym_comment, - STATE(4289), 1, + STATE(4309), 1, sym_block, - ACTIONS(7480), 4, + ACTIONS(7474), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [115166] = 6, + [115203] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2090), 1, sym__space, - ACTIONS(7482), 1, + ACTIONS(7476), 1, anon_sym_DOT_DOT2, STATE(3872), 1, sym_comment, - ACTIONS(2122), 2, + ACTIONS(2092), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7484), 2, + ACTIONS(7478), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115187] = 5, + [115224] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6808), 1, + ACTIONS(6768), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7486), 1, + ACTIONS(7480), 1, anon_sym_DOT, STATE(3873), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(1760), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [115206] = 6, + [115243] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1606), 1, sym__unquoted_pattern_in_record, STATE(3874), 1, sym_comment, - STATE(5199), 1, + STATE(5005), 1, sym__immediate_decimal, - ACTIONS(7299), 2, + ACTIONS(7293), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, + ACTIONS(7295), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [115227] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3875), 1, - sym_comment, - STATE(4095), 1, - sym_block, - ACTIONS(7488), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [115246] = 8, + [115264] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, - STATE(3876), 1, + STATE(3875), 1, sym_comment, - STATE(3957), 1, + STATE(3959), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4250), 1, + STATE(4252), 1, sym__assignment_pattern, - [115271] = 8, + [115289] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, - STATE(3877), 1, + STATE(3876), 1, sym_comment, - STATE(3957), 1, + STATE(3959), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4251), 1, + STATE(4253), 1, sym__assignment_pattern, - [115296] = 8, + [115314] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, - STATE(3878), 1, + STATE(3877), 1, sym_comment, - STATE(3957), 1, + STATE(3959), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4252), 1, + STATE(4254), 1, sym__assignment_pattern, - [115321] = 5, + [115339] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(3878), 1, + sym_comment, + STATE(4110), 1, + sym_block, + ACTIONS(7482), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [115358] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, STATE(3879), 1, sym_comment, - STATE(4099), 1, + STATE(4134), 1, sym_block, - ACTIONS(7488), 4, + ACTIONS(7482), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [115340] = 6, + [115377] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1728), 1, sym__unquoted_pattern, - ACTIONS(7490), 1, + ACTIONS(7484), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7492), 1, + ACTIONS(7486), 1, aux_sym__immediate_decimal_token5, STATE(3880), 1, sym_comment, @@ -233907,888 +233971,920 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [115361] = 8, + [115398] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, STATE(3881), 1, sym_comment, - STATE(4014), 1, + STATE(4017), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4619), 1, + STATE(4522), 1, sym__assignment_pattern_parenthesized, - [115386] = 8, + [115423] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7140), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7142), 1, anon_sym_DOLLAR, STATE(3882), 1, sym_comment, - STATE(4014), 1, + STATE(4017), 1, sym__variable_name, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4371), 1, + STATE(4500), 1, sym__assignment_pattern_parenthesized, - [115411] = 5, + [115448] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1440), 1, - sym__entry_separator, - ACTIONS(7356), 1, - anon_sym_BANG, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7140), 1, + sym_identifier, + ACTIONS(7142), 1, + anon_sym_DOLLAR, STATE(3883), 1, sym_comment, - ACTIONS(1438), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [115430] = 4, + STATE(4017), 1, + sym__variable_name, + STATE(4068), 1, + sym_val_variable, + STATE(4550), 1, + sym__assignment_pattern_parenthesized, + [115473] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1464), 1, - sym__entry_separator, - STATE(3884), 1, + ACTIONS(7488), 1, + anon_sym_LPAREN, + ACTIONS(7494), 1, + anon_sym_DQUOTE2, + STATE(4276), 1, + sym_expr_interpolated, + ACTIONS(7491), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(3884), 2, sym_comment, - ACTIONS(1462), 4, + aux_sym__inter_double_quotes_repeat1, + [115494] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6507), 2, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - anon_sym_DOT2, - [115446] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(994), 1, - sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3885), 1, - sym_comment, - ACTIONS(996), 2, - sym__newline, - anon_sym_SEMI, - [115466] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1018), 1, - sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3886), 1, - sym_comment, - ACTIONS(1016), 2, + ACTIONS(7496), 2, sym__newline, - anon_sym_SEMI, - [115486] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7496), 1, - anon_sym_SQUOTE2, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - STATE(3887), 1, + anon_sym_COMMA, + STATE(3885), 2, sym_comment, - STATE(3910), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [115508] = 3, + aux_sym_parameter_repeat2, + [115510] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3888), 1, - sym_comment, - ACTIONS(5920), 5, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(7499), 1, anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115522] = 4, + ACTIONS(7501), 1, + anon_sym_COLON, + STATE(3886), 1, + sym_comment, + STATE(4450), 1, + aux_sym__repeat_newline, + STATE(5170), 1, + sym_param_type, + [115532] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7500), 1, + ACTIONS(7503), 1, anon_sym_BANG, - STATE(3889), 1, + STATE(3887), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1466), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [115538] = 4, + [115548] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3890), 1, + STATE(3888), 1, sym_comment, - ACTIONS(1872), 2, + ACTIONS(1856), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1870), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115554] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3891), 1, - sym_comment, - ACTIONS(6121), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115568] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(1854), 3, anon_sym_LBRACE, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7502), 1, - anon_sym_DOT_DOT2, - STATE(3892), 1, - sym_comment, - ACTIONS(7504), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115588] = 7, - ACTIONS(3), 1, + [115564] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(3893), 1, + ACTIONS(7505), 1, + anon_sym_DQUOTE, + STATE(3889), 1, sym_comment, - STATE(3897), 1, - sym__variable_name, - STATE(4060), 1, - sym_val_variable, - STATE(4307), 1, - sym__assignment_pattern, - [115610] = 3, + STATE(4135), 1, + aux_sym_string_content_repeat1, + STATE(4912), 1, + sym_string_content, + ACTIONS(7507), 2, + sym__escaped_str_content, + sym_escape_sequence, + [115584] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3894), 1, + STATE(3890), 1, sym_comment, - ACTIONS(6125), 5, + ACTIONS(6118), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [115624] = 3, + [115598] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3895), 1, + STATE(3891), 1, sym_comment, - ACTIONS(6129), 5, + ACTIONS(6122), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [115638] = 7, + [115612] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(1840), 1, sym__table_head_separator, - ACTIONS(7510), 1, + ACTIONS(7509), 1, anon_sym_DOT2, - STATE(3896), 1, + STATE(3892), 1, sym_comment, STATE(4059), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, + STATE(4694), 1, sym_path, - STATE(4963), 1, + STATE(4953), 1, sym_cell_path, - [115660] = 7, + [115634] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7511), 1, + anon_sym_LPAREN, + ACTIONS(7513), 1, + anon_sym_SQUOTE2, + ACTIONS(7515), 1, + sym_unescaped_interpolated_content, + STATE(3893), 1, + sym_comment, + STATE(3916), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4574), 1, + sym_expr_interpolated, + [115656] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7512), 1, + STATE(3894), 1, + sym_comment, + ACTIONS(6126), 5, anon_sym_EQ, - ACTIONS(7514), 1, - anon_sym_COLON, - STATE(3897), 1, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [115670] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1744), 1, + sym__unquoted_pattern, + STATE(3895), 1, sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(5002), 1, - sym_param_type, - [115682] = 3, + ACTIONS(960), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [115686] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3898), 1, + STATE(3896), 1, sym_comment, - ACTIONS(6133), 5, + ACTIONS(6130), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [115696] = 7, + [115700] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, + ACTIONS(1870), 1, sym__table_head_separator, - ACTIONS(7510), 1, + ACTIONS(7509), 1, anon_sym_DOT2, - STATE(3899), 1, + STATE(3897), 1, sym_comment, STATE(4059), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, + STATE(4694), 1, sym_path, - STATE(5045), 1, + STATE(5184), 1, sym_cell_path, - [115718] = 4, + [115722] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(7517), 1, + sym_identifier, + ACTIONS(7519), 1, + anon_sym_DOLLAR, + STATE(3898), 1, + sym_comment, + STATE(3904), 1, + sym__variable_name, + STATE(4068), 1, + sym_val_variable, + STATE(4311), 1, + sym__assignment_pattern, + [115744] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + anon_sym_LBRACE, + ACTIONS(1956), 1, sym__unquoted_pattern, - STATE(3900), 1, + ACTIONS(7521), 1, + anon_sym_DOT_DOT2, + STATE(3899), 1, sym_comment, - ACTIONS(968), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115734] = 6, + ACTIONS(7523), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115764] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, + ACTIONS(1760), 1, sym__entry_separator, - ACTIONS(6664), 1, + ACTIONS(6778), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7516), 1, + ACTIONS(7525), 1, anon_sym_DOT, - STATE(3901), 1, + STATE(3900), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1762), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [115754] = 5, + [115784] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3902), 1, + ACTIONS(7517), 1, + sym_identifier, + ACTIONS(7519), 1, + anon_sym_DOLLAR, + STATE(3901), 1, sym_comment, - STATE(4394), 1, - sym_block, - ACTIONS(7270), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [115772] = 5, + STATE(3937), 1, + sym__variable_name, + STATE(4068), 1, + sym_val_variable, + STATE(4413), 1, + sym__assignment_pattern, + [115806] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2128), 1, + ACTIONS(2068), 1, sym__entry_separator, - ACTIONS(7518), 1, + ACTIONS(7527), 1, anon_sym_LBRACK2, - STATE(3903), 1, + STATE(3902), 1, sym_comment, - ACTIONS(2130), 3, + ACTIONS(2070), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [115790] = 4, + [115824] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3904), 1, + STATE(3903), 1, sym_comment, - ACTIONS(2501), 2, + ACTIONS(2491), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2503), 3, + ACTIONS(2493), 3, anon_sym_RBRACK, anon_sym_RBRACE, sym__unquoted_pattern_in_list, - [115806] = 7, + [115840] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(7501), 1, + anon_sym_COLON, + ACTIONS(7529), 1, + anon_sym_EQ, + STATE(3904), 1, + sym_comment, + STATE(4450), 1, + aux_sym__repeat_newline, + STATE(4842), 1, + sym_param_type, + [115862] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(3905), 1, + sym_comment, + STATE(4419), 1, + sym_block, + ACTIONS(7272), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [115880] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7030), 1, + ACTIONS(6938), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7094), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(363), 1, sym_path, - STATE(3778), 1, + STATE(3779), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3905), 1, + STATE(3906), 1, sym_comment, - STATE(4478), 1, + STATE(4484), 1, sym_cell_path, - [115828] = 7, + [115902] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6963), 1, + ACTIONS(7028), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7094), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(363), 1, sym_path, - STATE(3778), 1, + STATE(3779), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3906), 1, + STATE(3907), 1, sym_comment, - STATE(4513), 1, + STATE(4516), 1, sym_cell_path, - [115850] = 7, + [115924] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5600), 1, + ACTIONS(5596), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7094), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(363), 1, sym_path, - STATE(3778), 1, + STATE(3779), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3907), 1, + STATE(3908), 1, sym_comment, - STATE(4335), 1, + STATE(4336), 1, sym_cell_path, - [115872] = 4, + [115946] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(3908), 1, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(3909), 1, sym_comment, - ACTIONS(2575), 4, - anon_sym_if, + STATE(4421), 1, + sym_block, + ACTIONS(7272), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115888] = 4, + anon_sym_SEMI, + [115964] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(1956), 1, sym__unquoted_pattern, - STATE(3909), 1, + STATE(3910), 1, sym_comment, - ACTIONS(1974), 4, + ACTIONS(2568), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [115904] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7520), 1, - anon_sym_SQUOTE2, - STATE(3910), 1, - sym_comment, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, - sym_expr_interpolated, - [115926] = 6, + [115980] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1964), 1, + ACTIONS(1936), 1, sym__entry_separator, - ACTIONS(1966), 1, + ACTIONS(1938), 1, anon_sym_RBRACE, - ACTIONS(7522), 1, + ACTIONS(7531), 1, anon_sym_DOT_DOT2, STATE(3911), 1, sym_comment, - ACTIONS(7524), 2, + ACTIONS(7533), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115946] = 6, + [116000] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7526), 1, + ACTIONS(7535), 1, anon_sym_DQUOTE, STATE(3912), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(5076), 1, + STATE(5082), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [115966] = 7, + [116020] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7511), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7515), 1, sym_unescaped_interpolated_content, - ACTIONS(7530), 1, + ACTIONS(7537), 1, anon_sym_SQUOTE2, STATE(3913), 1, sym_comment, - STATE(3917), 1, + STATE(3918), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4574), 1, sym_expr_interpolated, - [115988] = 4, + [116042] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1956), 1, sym__unquoted_pattern, STATE(3914), 1, sym_comment, - ACTIONS(1964), 4, + ACTIONS(1946), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116004] = 7, + [116058] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(7514), 1, + ACTIONS(7501), 1, anon_sym_COLON, - ACTIONS(7532), 1, + ACTIONS(7539), 1, anon_sym_EQ, STATE(3915), 1, sym_comment, - STATE(4423), 1, + STATE(4450), 1, aux_sym__repeat_newline, - STATE(5088), 1, + STATE(5092), 1, sym_param_type, - [116026] = 5, + [116080] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7534), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7511), 1, + anon_sym_LPAREN, + ACTIONS(7515), 1, + sym_unescaped_interpolated_content, + ACTIONS(7541), 1, + anon_sym_SQUOTE2, STATE(3916), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [116044] = 7, + STATE(3954), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4574), 1, + sym_expr_interpolated, + [116102] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3917), 1, + sym_comment, + ACTIONS(5887), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [116116] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7511), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7515), 1, sym_unescaped_interpolated_content, - ACTIONS(7536), 1, + ACTIONS(7543), 1, anon_sym_SQUOTE2, - STATE(3917), 1, + STATE(3918), 1, sym_comment, - STATE(3945), 1, + STATE(3954), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4574), 1, sym_expr_interpolated, - [116066] = 5, + [116138] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7545), 1, + aux_sym__immediate_decimal_token5, + STATE(3919), 1, + sym_comment, + ACTIONS(1810), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1812), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [116156] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1354), 1, + ACTIONS(7517), 1, + sym_identifier, + ACTIONS(7519), 1, + anon_sym_DOLLAR, + STATE(3886), 1, + sym__variable_name, + STATE(3920), 1, + sym_comment, + STATE(4068), 1, + sym_val_variable, + STATE(4607), 1, + sym__assignment_pattern_parenthesized, + [116178] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1352), 1, aux_sym__block_body_repeat1, - STATE(3918), 1, + STATE(3921), 1, sym_comment, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3046), 2, + ACTIONS(3066), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [116084] = 4, + [116196] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1645), 1, sym__unquoted_pattern, - STATE(3919), 1, + STATE(3922), 1, sym_comment, - ACTIONS(2523), 4, + ACTIONS(2584), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116100] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(2966), 1, - sym_block, - STATE(3920), 1, - sym_comment, - STATE(4312), 1, - aux_sym__repeat_newline, - [116122] = 4, + [116212] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3921), 1, + STATE(3923), 1, sym_comment, - ACTIONS(2501), 2, + ACTIONS(2491), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2503), 3, + ACTIONS(2493), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [116138] = 6, + [116228] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + sym__unquoted_pattern, + STATE(3924), 1, + sym_comment, + ACTIONS(1936), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116244] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(3036), 1, + sym_block, + STATE(3925), 1, + sym_comment, + STATE(4146), 1, + aux_sym__repeat_newline, + [116266] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1606), 1, sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, + ACTIONS(1936), 1, sym__entry_separator, - ACTIONS(1968), 1, + ACTIONS(1940), 1, anon_sym_LPAREN2, - STATE(3922), 1, + STATE(3926), 1, sym_comment, - ACTIONS(1966), 2, + ACTIONS(1938), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [116158] = 4, + [116286] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1728), 1, sym__unquoted_pattern, - STATE(3923), 1, + STATE(3927), 1, sym_comment, ACTIONS(1726), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116174] = 5, + [116302] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7538), 1, + ACTIONS(7547), 1, anon_sym_LT, - STATE(3924), 1, + STATE(3928), 1, sym_comment, - ACTIONS(5920), 2, + ACTIONS(5887), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(5924), 2, + ACTIONS(5891), 2, anon_sym_RBRACK, anon_sym_GT2, - [116192] = 5, + [116320] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7540), 1, + ACTIONS(7549), 1, anon_sym_LT, - STATE(3925), 1, + STATE(3929), 1, sym_comment, - ACTIONS(5920), 2, + ACTIONS(5887), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(5924), 2, + ACTIONS(5891), 2, anon_sym_RBRACK, anon_sym_GT2, - [116210] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(3926), 1, - sym_comment, - ACTIONS(2567), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116226] = 6, + [116338] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1950), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1956), 1, sym__unquoted_pattern_in_list, - ACTIONS(2575), 1, + ACTIONS(2568), 1, sym__entry_separator, - STATE(3927), 1, + STATE(3930), 1, sym_comment, - ACTIONS(2577), 2, + ACTIONS(2570), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [116246] = 6, + [116358] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(1946), 1, sym__entry_separator, - ACTIONS(1978), 1, + ACTIONS(1950), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1956), 1, sym__unquoted_pattern_in_list, - STATE(3928), 1, + STATE(3931), 1, sym_comment, - ACTIONS(1976), 2, + ACTIONS(1948), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [116266] = 4, + [116378] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(2624), 1, sym__unquoted_pattern, - STATE(3929), 1, + STATE(3932), 1, + sym_comment, + ACTIONS(2604), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116394] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1812), 1, + sym__unquoted_pattern, + STATE(3933), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1810), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116282] = 6, + [116410] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1645), 1, sym__unquoted_pattern_in_list, - ACTIONS(2523), 1, + ACTIONS(2584), 1, sym__entry_separator, - ACTIONS(2629), 1, + ACTIONS(2620), 1, anon_sym_LPAREN2, - STATE(3930), 1, + STATE(3934), 1, sym_comment, - ACTIONS(2525), 2, + ACTIONS(2586), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [116302] = 4, + [116430] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(1856), 1, sym__unquoted_pattern, - STATE(3931), 1, + STATE(3935), 1, sym_comment, - ACTIONS(1870), 4, + ACTIONS(1854), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116318] = 6, + [116446] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2604), 1, sym__entry_separator, - ACTIONS(2631), 1, + ACTIONS(2622), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2624), 1, sym__unquoted_pattern_in_list, - STATE(3932), 1, + STATE(3936), 1, sym_comment, - ACTIONS(2569), 2, + ACTIONS(2606), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [116338] = 7, + [116466] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(7514), 1, + ACTIONS(7501), 1, anon_sym_COLON, - ACTIONS(7542), 1, + ACTIONS(7551), 1, anon_sym_EQ, - STATE(3933), 1, + STATE(3937), 1, sym_comment, - STATE(4423), 1, + STATE(4450), 1, aux_sym__repeat_newline, - STATE(5093), 1, + STATE(4959), 1, sym_param_type, - [116360] = 6, + [116488] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7544), 1, + ACTIONS(7553), 1, anon_sym_QMARK2, - ACTIONS(7546), 1, + ACTIONS(7555), 1, anon_sym_BANG, - STATE(3934), 1, + STATE(3938), 1, sym_comment, - STATE(4733), 1, + STATE(4712), 1, sym__path_suffix, - ACTIONS(1448), 2, + ACTIONS(1478), 2, sym__table_head_separator, anon_sym_DOT2, - [116380] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(3935), 1, - sym_comment, - ACTIONS(2501), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116396] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(3936), 1, - sym_comment, - ACTIONS(2635), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116412] = 6, + [116508] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(1946), 1, sym__entry_separator, - ACTIONS(1976), 1, + ACTIONS(1948), 1, anon_sym_RBRACE, - ACTIONS(7548), 1, + ACTIONS(7557), 1, anon_sym_DOT_DOT2, - STATE(3937), 1, + STATE(3939), 1, sym_comment, - ACTIONS(7550), 2, + ACTIONS(7559), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116432] = 6, + [116528] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, + ACTIONS(2640), 1, sym__entry_separator, - ACTIONS(2639), 1, + ACTIONS(2644), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2646), 1, sym__unquoted_pattern_in_list, - STATE(3938), 1, + STATE(3940), 1, sym_comment, - ACTIONS(2637), 2, + ACTIONS(2642), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [116452] = 7, + [116548] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2493), 1, + sym__unquoted_pattern, + STATE(3941), 1, + sym_comment, + ACTIONS(2491), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116564] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(7044), 1, - sym_identifier, - STATE(3939), 1, + ACTIONS(1551), 1, + sym__entry_separator, + STATE(3942), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4924), 1, - sym__variable_name, - [116474] = 7, + ACTIONS(1549), 4, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [116580] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7514), 1, - anon_sym_COLON, - ACTIONS(7552), 1, - anon_sym_EQ, - STATE(3940), 1, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(3943), 1, sym_comment, - STATE(4423), 1, - aux_sym__repeat_newline, - STATE(5092), 1, - sym_param_type, - [116496] = 6, + ACTIONS(2640), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116596] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1706), 1, sym__space, - ACTIONS(2595), 1, + ACTIONS(2557), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2559), 1, sym__unquoted_pattern, - STATE(3941), 1, - sym_comment, - ACTIONS(1619), 2, - sym__newline, - anon_sym_SEMI, - [116516] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3942), 1, + STATE(3944), 1, sym_comment, - STATE(4399), 1, - sym_block, - ACTIONS(7480), 3, - ts_builtin_sym_end, + ACTIONS(1613), 2, sym__newline, anon_sym_SEMI, - [116534] = 6, + [116616] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(1010), 1, sym__entry_separator, - ACTIONS(2583), 1, + ACTIONS(2658), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2660), 1, sym__unquoted_pattern_in_list, - STATE(3943), 1, + STATE(3945), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [116554] = 6, + [116636] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1018), 1, sym__entry_separator, - ACTIONS(2583), 1, + ACTIONS(2658), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2660), 1, sym__unquoted_pattern_in_list, - STATE(3944), 1, + STATE(3946), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(994), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [116574] = 6, + [116656] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_LPAREN, - ACTIONS(7557), 1, - anon_sym_SQUOTE2, - ACTIONS(7559), 1, - sym_unescaped_interpolated_content, - STATE(4544), 1, - sym_expr_interpolated, - STATE(3945), 2, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5187), 1, + anon_sym_DOLLAR, + ACTIONS(7140), 1, + sym_identifier, + STATE(3947), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [116594] = 4, + STATE(4068), 1, + sym_val_variable, + STATE(4988), 1, + sym__variable_name, + [116678] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3946), 1, + STATE(3948), 1, sym_comment, ACTIONS(1726), 2, sym__space, @@ -234797,932 +234893,949 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [116610] = 4, + [116694] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(3949), 1, + sym_comment, + STATE(4518), 1, + sym_block, + ACTIONS(7474), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [116712] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1522), 1, + ACTIONS(1547), 1, sym__entry_separator, - STATE(3947), 1, + STATE(3950), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(1545), 4, anon_sym_RBRACK, anon_sym_GT2, anon_sym_DOT_DOT, anon_sym_DOT2, - [116626] = 4, + [116728] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3948), 1, + STATE(3951), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1810), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1804), 3, + ACTIONS(1812), 3, sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [116642] = 4, + [116744] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1537), 1, + ACTIONS(1532), 1, sym__entry_separator, - STATE(3949), 1, + STATE(3952), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(1530), 4, anon_sym_RBRACK, anon_sym_GT2, anon_sym_DOT_DOT, anon_sym_DOT2, - [116658] = 4, + [116760] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3950), 1, + STATE(3953), 1, sym_comment, - ACTIONS(1870), 2, + ACTIONS(1854), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1872), 3, + ACTIONS(1856), 3, sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [116674] = 5, - ACTIONS(3), 1, + [116776] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3951), 1, + ACTIONS(7561), 1, + anon_sym_LPAREN, + ACTIONS(7564), 1, + anon_sym_SQUOTE2, + ACTIONS(7566), 1, + sym_unescaped_interpolated_content, + STATE(4574), 1, + sym_expr_interpolated, + STATE(3954), 2, sym_comment, - STATE(4481), 1, - sym_block, - ACTIONS(7422), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [116692] = 3, + aux_sym__inter_single_quotes_repeat1, + [116796] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3952), 1, + STATE(3955), 1, sym_comment, - ACTIONS(6137), 5, + ACTIONS(6134), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [116706] = 5, + [116810] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3953), 1, - sym_comment, - STATE(5038), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [116724] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, - STATE(3954), 1, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(3956), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116744] = 6, + STATE(4501), 1, + sym_block, + ACTIONS(7418), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [116828] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7562), 1, + ACTIONS(7569), 1, anon_sym_DQUOTE, - STATE(3955), 1, + STATE(3957), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(5181), 1, + STATE(5197), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [116764] = 7, + [116848] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7511), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7515), 1, sym_unescaped_interpolated_content, - ACTIONS(7564), 1, + ACTIONS(7571), 1, anon_sym_SQUOTE2, - STATE(3956), 1, + STATE(3958), 1, sym_comment, STATE(3960), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4574), 1, sym_expr_interpolated, - [116786] = 7, + [116870] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(7514), 1, + ACTIONS(7501), 1, anon_sym_COLON, - ACTIONS(7566), 1, + ACTIONS(7573), 1, anon_sym_EQ, - STATE(3957), 1, + STATE(3959), 1, sym_comment, - STATE(4423), 1, + STATE(4450), 1, aux_sym__repeat_newline, - STATE(5200), 1, + STATE(4802), 1, sym_param_type, - [116808] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3958), 1, - sym_comment, - STATE(3972), 1, - aux_sym_parameter_repeat2, - ACTIONS(1388), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7568), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [116826] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3959), 1, - sym_comment, - STATE(4546), 1, - sym_block, - ACTIONS(7488), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [116844] = 7, + [116892] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7511), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7515), 1, sym_unescaped_interpolated_content, - ACTIONS(7570), 1, + ACTIONS(7575), 1, anon_sym_SQUOTE2, - STATE(3945), 1, + STATE(3954), 1, aux_sym__inter_single_quotes_repeat1, STATE(3960), 1, sym_comment, - STATE(4544), 1, + STATE(4574), 1, sym_expr_interpolated, - [116866] = 6, + [116914] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, + ACTIONS(1018), 1, sym__space, - ACTIONS(1968), 1, + ACTIONS(2658), 1, anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, STATE(3961), 1, sym_comment, - ACTIONS(1966), 2, + ACTIONS(994), 2, sym__newline, anon_sym_SEMI, - [116886] = 4, + [116934] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3962), 1, - sym_comment, - ACTIONS(6151), 2, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1936), 1, + sym__space, + ACTIONS(1940), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6153), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [116902] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3963), 1, + STATE(3962), 1, sym_comment, - STATE(4548), 1, - sym_block, - ACTIONS(7488), 3, - ts_builtin_sym_end, + ACTIONS(1938), 2, sym__newline, anon_sym_SEMI, - [116920] = 4, + [116954] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3964), 1, + STATE(3963), 1, sym_comment, - ACTIONS(6111), 2, + ACTIONS(6062), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6113), 3, + ACTIONS(6064), 3, anon_sym_COLON, anon_sym_GT2, anon_sym_RBRACE, - [116936] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7572), 1, - anon_sym_RBRACE, - ACTIONS(7574), 1, - sym__entry_separator, - STATE(3965), 1, - sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116956] = 6, + [116970] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7576), 1, + ACTIONS(7577), 1, anon_sym_DQUOTE, - STATE(3966), 1, + STATE(3964), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(5202), 1, + STATE(4960), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [116976] = 7, + [116990] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7511), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7515), 1, sym_unescaped_interpolated_content, - ACTIONS(7578), 1, + ACTIONS(7579), 1, anon_sym_SQUOTE2, - STATE(3967), 1, + STATE(3965), 1, sym_comment, - STATE(4047), 1, + STATE(4048), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4574), 1, sym_expr_interpolated, - [116998] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4367), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - STATE(3070), 1, - sym__flag_equals_value, - STATE(3968), 1, - sym_comment, - ACTIONS(4365), 2, - sym__newline, - anon_sym_SEMI, - [117018] = 6, - ACTIONS(103), 1, + [117012] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7580), 1, - anon_sym_DQUOTE, - STATE(3969), 1, + STATE(3966), 1, sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4800), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117038] = 5, + STATE(4793), 1, + sym__immediate_decimal, + ACTIONS(6470), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6472), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [117030] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3970), 1, + STATE(3967), 1, sym_comment, - STATE(4997), 1, + STATE(5182), 1, sym__immediate_decimal, - ACTIONS(7299), 2, + ACTIONS(7293), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, + ACTIONS(7295), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [117056] = 4, + [117048] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3971), 1, + STATE(3885), 1, + aux_sym_parameter_repeat2, + STATE(3968), 1, sym_comment, - ACTIONS(994), 4, - anon_sym_if, + ACTIONS(1384), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117072] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6506), 2, + anon_sym_COMMA, + ACTIONS(7581), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7582), 2, + [117066] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4464), 1, + sym__space, + ACTIONS(7236), 1, + anon_sym_EQ2, + STATE(2998), 1, + sym__flag_equals_value, + STATE(3969), 1, + sym_comment, + ACTIONS(4462), 2, sym__newline, - anon_sym_COMMA, - STATE(3972), 2, + anon_sym_SEMI, + [117086] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(3970), 1, sym_comment, - aux_sym_parameter_repeat2, - [117088] = 4, + STATE(4553), 1, + sym_block, + ACTIONS(7482), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [117104] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3971), 1, + sym_comment, + ACTIONS(6160), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6162), 3, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_RBRACE, + [117120] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7420), 1, + anon_sym_DOT_DOT2, + ACTIONS(7583), 1, + anon_sym_RBRACE, + ACTIONS(7585), 1, + sym__entry_separator, + STATE(3972), 1, + sym_comment, + ACTIONS(7422), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117140] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, + ACTIONS(7517), 1, + sym_identifier, + ACTIONS(7519), 1, + anon_sym_DOLLAR, STATE(3973), 1, sym_comment, - ACTIONS(1018), 4, + STATE(4017), 1, + sym__variable_name, + STATE(4068), 1, + sym_val_variable, + STATE(4607), 1, + sym__assignment_pattern_parenthesized, + [117162] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(3974), 1, + sym_comment, + ACTIONS(1010), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [117104] = 6, + [117178] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7585), 1, + ACTIONS(7587), 1, anon_sym_DQUOTE, - STATE(3974), 1, + STATE(3975), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(4939), 1, + STATE(5023), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [117124] = 7, + [117198] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7511), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7515), 1, sym_unescaped_interpolated_content, - ACTIONS(7587), 1, + ACTIONS(7589), 1, anon_sym_SQUOTE2, - STATE(3975), 1, + STATE(3976), 1, sym_comment, - STATE(3978), 1, + STATE(3979), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4574), 1, sym_expr_interpolated, - [117146] = 6, - ACTIONS(103), 1, + [117220] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7589), 1, - anon_sym_RBRACE, - ACTIONS(7591), 1, - sym__entry_separator, - STATE(3976), 1, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(3977), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117166] = 6, + ACTIONS(1018), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117236] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - ACTIONS(7593), 1, - anon_sym_DOT_DOT2, - STATE(3977), 1, + STATE(3978), 1, sym_comment, - ACTIONS(7595), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117186] = 7, + STATE(4568), 1, + sym_block, + ACTIONS(7482), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [117254] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7511), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7515), 1, sym_unescaped_interpolated_content, - ACTIONS(7597), 1, + ACTIONS(7591), 1, anon_sym_SQUOTE2, - STATE(3945), 1, + STATE(3954), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3978), 1, + STATE(3979), 1, sym_comment, - STATE(4544), 1, + STATE(4574), 1, sym_expr_interpolated, - [117208] = 6, + [117276] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7420), 1, + anon_sym_DOT_DOT2, + ACTIONS(7593), 1, + anon_sym_RBRACE, + ACTIONS(7595), 1, + sym__entry_separator, + STATE(3980), 1, + sym_comment, + ACTIONS(7422), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117296] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7597), 1, + anon_sym_DQUOTE, + STATE(3981), 1, + sym_comment, + STATE(4135), 1, + aux_sym_string_content_repeat1, + STATE(4803), 1, + sym_string_content, + ACTIONS(7507), 2, + sym__escaped_str_content, + sym_escape_sequence, + [117316] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7599), 1, anon_sym_DQUOTE, - STATE(3979), 1, + STATE(3982), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(5022), 1, + STATE(5107), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [117228] = 7, + [117336] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7511), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7515), 1, sym_unescaped_interpolated_content, ACTIONS(7601), 1, anon_sym_SQUOTE2, - STATE(3980), 1, + STATE(3983), 1, sym_comment, - STATE(3982), 1, + STATE(3985), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4574), 1, sym_expr_interpolated, - [117250] = 7, - ACTIONS(103), 1, + [117358] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1936), 1, + anon_sym_LBRACE, ACTIONS(7603), 1, - anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3981), 1, + anon_sym_DOT_DOT2, + STATE(3984), 1, sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117272] = 7, + ACTIONS(7605), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117378] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7511), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7515), 1, sym_unescaped_interpolated_content, - ACTIONS(7605), 1, + ACTIONS(7607), 1, anon_sym_SQUOTE2, - STATE(3945), 1, + STATE(3954), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3982), 1, - sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117294] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3983), 1, - sym_comment, - STATE(4415), 1, - sym_block, - ACTIONS(7309), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [117312] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3984), 1, - sym_comment, - STATE(4417), 1, - sym_block, - ACTIONS(7309), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [117330] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7432), 1, - aux_sym__immediate_decimal_token5, STATE(3985), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [117348] = 6, + STATE(4574), 1, + sym_expr_interpolated, + [117400] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7607), 1, + ACTIONS(7609), 1, anon_sym_DQUOTE, STATE(3986), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(4792), 1, + STATE(4794), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [117368] = 7, + [117420] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7511), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7515), 1, sym_unescaped_interpolated_content, - ACTIONS(7609), 1, + ACTIONS(7611), 1, anon_sym_SQUOTE2, STATE(3987), 1, sym_comment, - STATE(3988), 1, + STATE(3991), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4574), 1, sym_expr_interpolated, - [117390] = 7, + [117442] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7611), 1, - anon_sym_SQUOTE2, - STATE(3945), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(7428), 1, + aux_sym__immediate_decimal_token5, STATE(3988), 1, sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117412] = 5, + ACTIONS(1760), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1762), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [117460] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, STATE(3989), 1, sym_comment, - STATE(4395), 1, + STATE(4422), 1, sym_block, - ACTIONS(7270), 3, + ACTIONS(7305), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [117430] = 4, + [117478] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3777), 1, + anon_sym_LBRACE, STATE(3990), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117446] = 6, + STATE(4423), 1, + sym_block, + ACTIONS(7305), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [117496] = 7, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7511), 1, + anon_sym_LPAREN, + ACTIONS(7515), 1, + sym_unescaped_interpolated_content, ACTIONS(7613), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE2, + STATE(3954), 1, + aux_sym__inter_single_quotes_repeat1, STATE(3991), 1, sym_comment, - STATE(4258), 1, + STATE(4574), 1, + sym_expr_interpolated, + [117518] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7503), 1, + anon_sym_QMARK2, + STATE(3992), 1, + sym_comment, + ACTIONS(1466), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [117534] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7291), 1, + aux_sym__immediate_decimal_token5, + STATE(3993), 1, + sym_comment, + ACTIONS(1760), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1762), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [117552] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7615), 1, + anon_sym_DQUOTE, + STATE(3994), 1, + sym_comment, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(4812), 1, + STATE(4814), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [117466] = 7, + [117572] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7511), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7515), 1, sym_unescaped_interpolated_content, - ACTIONS(7615), 1, + ACTIONS(7617), 1, anon_sym_SQUOTE2, - STATE(3992), 1, + STATE(3995), 1, sym_comment, - STATE(3994), 1, + STATE(3997), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4544), 1, + STATE(4574), 1, sym_expr_interpolated, - [117488] = 4, - ACTIONS(103), 1, + [117594] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_QMARK2, - STATE(3993), 1, + STATE(3996), 1, sym_comment, - ACTIONS(1438), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [117504] = 7, + ACTIONS(1812), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1810), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117610] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7511), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7515), 1, sym_unescaped_interpolated_content, - ACTIONS(7617), 1, + ACTIONS(7619), 1, anon_sym_SQUOTE2, - STATE(3945), 1, + STATE(3954), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3994), 1, + STATE(3997), 1, sym_comment, - STATE(4544), 1, + STATE(4574), 1, sym_expr_interpolated, - [117526] = 5, + [117632] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7619), 1, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + ACTIONS(2568), 1, + sym__space, + STATE(3998), 1, + sym_comment, + ACTIONS(2570), 2, + sym__newline, + anon_sym_SEMI, + [117652] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7621), 1, aux_sym__immediate_decimal_token5, - STATE(3995), 1, + STATE(3999), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1810), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1804), 2, + ACTIONS(1812), 2, anon_sym_RBRACE, sym__unquoted_pattern_in_record, - [117544] = 6, + [117670] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7621), 1, + ACTIONS(7623), 1, anon_sym_DQUOTE, - STATE(3996), 1, + STATE(4000), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(4829), 1, + STATE(4831), 1, + sym_string_content, + ACTIONS(7507), 2, + sym__escaped_str_content, + sym_escape_sequence, + [117690] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1946), 1, + sym__space, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + STATE(4001), 1, + sym_comment, + ACTIONS(1948), 2, + sym__newline, + anon_sym_SEMI, + [117710] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7625), 1, + anon_sym_DQUOTE, + STATE(4002), 1, + sym_comment, + STATE(4135), 1, + aux_sym_string_content_repeat1, + STATE(4845), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [117564] = 5, + [117730] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1356), 1, + STATE(1355), 1, aux_sym__block_body_repeat1, - STATE(3997), 1, + STATE(4003), 1, sym_comment, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(459), 2, + ACTIONS(447), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [117582] = 6, + [117748] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7623), 1, + ACTIONS(7627), 1, anon_sym_DQUOTE, - STATE(3998), 1, + STATE(4004), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(4843), 1, + STATE(4857), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [117602] = 6, + [117768] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7625), 1, + ACTIONS(7629), 1, anon_sym_DQUOTE, - STATE(3999), 1, + STATE(4005), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(4855), 1, + STATE(4866), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [117622] = 6, + [117788] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7627), 1, + ACTIONS(7631), 1, anon_sym_DQUOTE, - STATE(4000), 1, + STATE(4006), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(4864), 1, + STATE(4875), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [117642] = 3, + [117808] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4001), 1, + STATE(4007), 1, sym_comment, - ACTIONS(6093), 5, + ACTIONS(6110), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [117656] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7297), 1, - aux_sym__immediate_decimal_token5, - STATE(4002), 1, - sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [117674] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7629), 1, - anon_sym_DQUOTE, - STATE(4003), 1, - sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4873), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117694] = 6, + [117822] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7631), 1, + ACTIONS(7633), 1, anon_sym_DQUOTE, - STATE(4004), 1, + STATE(4008), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(4880), 1, + STATE(4882), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [117714] = 6, + [117842] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7633), 1, - anon_sym_RBRACE, + ACTIONS(7511), 1, + anon_sym_LPAREN, + ACTIONS(7515), 1, + sym_unescaped_interpolated_content, ACTIONS(7635), 1, - sym__entry_separator, - STATE(4005), 1, + anon_sym_SQUOTE2, + STATE(3954), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4009), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117734] = 6, + STATE(4574), 1, + sym_expr_interpolated, + [117864] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7637), 1, anon_sym_DQUOTE, - STATE(4006), 1, + STATE(4010), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(4887), 1, + STATE(4888), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [117754] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4007), 1, - sym_comment, - ACTIONS(6107), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [117768] = 6, + [117884] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7639), 1, anon_sym_DQUOTE, - STATE(4008), 1, + STATE(4011), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(4894), 1, + STATE(4895), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [117788] = 6, + [117904] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7641), 1, anon_sym_DQUOTE, - STATE(4009), 1, + STATE(4012), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(4901), 1, + STATE(4902), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [117808] = 6, + [117924] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7643), 1, anon_sym_DQUOTE, - STATE(4010), 1, + STATE(4013), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(4908), 1, + STATE(4909), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [117828] = 6, + [117944] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4014), 1, + sym_comment, + ACTIONS(6114), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [117958] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7645), 1, anon_sym_DQUOTE, - STATE(4011), 1, + STATE(4015), 1, sym_comment, - STATE(4258), 1, + STATE(4135), 1, aux_sym_string_content_repeat1, - STATE(4913), 1, + STATE(4914), 1, sym_string_content, - ACTIONS(7528), 2, + ACTIONS(7507), 2, sym__escaped_str_content, sym_escape_sequence, - [117848] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, - sym__space, - STATE(4012), 1, - sym_comment, - ACTIONS(2577), 2, - sym__newline, - anon_sym_SEMI, - [117868] = 6, + [117978] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(4013), 1, + ACTIONS(7420), 1, + anon_sym_DOT_DOT2, + ACTIONS(7647), 1, + anon_sym_RBRACE, + ACTIONS(7649), 1, + sym__entry_separator, + STATE(4016), 1, sym_comment, - ACTIONS(1976), 2, - sym__newline, - anon_sym_SEMI, - [117888] = 7, + ACTIONS(7422), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117998] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(7514), 1, + ACTIONS(7501), 1, anon_sym_COLON, - ACTIONS(7647), 1, + ACTIONS(7651), 1, anon_sym_EQ, - STATE(4014), 1, + STATE(4017), 1, sym_comment, - STATE(4423), 1, + STATE(4450), 1, aux_sym__repeat_newline, - STATE(4960), 1, + STATE(4962), 1, sym_param_type, - [117910] = 4, + [118020] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4015), 1, + STATE(4018), 1, sym_comment, ACTIONS(1726), 2, anon_sym_LPAREN2, @@ -235731,1152 +235844,1109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [117926] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(4016), 1, - sym_comment, - ACTIONS(7210), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117942] = 4, + [118036] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4017), 1, + STATE(4019), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1810), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1804), 3, + ACTIONS(1812), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [117958] = 4, + [118052] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4018), 1, + STATE(4020), 1, sym_comment, - ACTIONS(1870), 2, + ACTIONS(1854), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1872), 3, + ACTIONS(1856), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [117974] = 7, - ACTIONS(103), 1, + [118068] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7494), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - sym_unescaped_interpolated_content, - ACTIONS(7649), 1, - anon_sym_SQUOTE2, - STATE(3981), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4019), 1, + STATE(4021), 1, sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [117996] = 6, + ACTIONS(1728), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1726), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118084] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1645), 1, sym__unquoted_pattern, - ACTIONS(2523), 1, + ACTIONS(2584), 1, sym__space, - ACTIONS(2629), 1, + ACTIONS(2620), 1, anon_sym_LPAREN2, - STATE(4020), 1, + STATE(4022), 1, sym_comment, - ACTIONS(2525), 2, + ACTIONS(2586), 2, sym__newline, anon_sym_SEMI, - [118016] = 7, - ACTIONS(3), 1, + [118104] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - STATE(1934), 1, - aux_sym__types_body_repeat1, - STATE(4021), 1, + ACTIONS(7511), 1, + anon_sym_LPAREN, + ACTIONS(7515), 1, + sym_unescaped_interpolated_content, + ACTIONS(7653), 1, + anon_sym_SQUOTE2, + STATE(4009), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4023), 1, sym_comment, - STATE(4569), 1, - sym_val_list, - STATE(4579), 1, - aux_sym__table_body_repeat1, - [118038] = 7, + STATE(4574), 1, + sym_expr_interpolated, + [118126] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(2557), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2559), 1, sym__unquoted_pattern_in_list, - ACTIONS(7278), 1, + ACTIONS(7280), 1, anon_sym_DOT_DOT, - ACTIONS(7442), 1, + ACTIONS(7438), 1, anon_sym_RBRACK, - ACTIONS(7445), 1, + ACTIONS(7441), 1, sym__entry_separator, - STATE(4022), 1, + STATE(4024), 1, sym_comment, - [118060] = 7, + [118148] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(7044), 1, - sym_identifier, - STATE(4023), 1, + ACTIONS(2604), 1, + sym__space, + ACTIONS(2622), 1, + anon_sym_LPAREN2, + ACTIONS(2624), 1, + sym__unquoted_pattern, + STATE(4025), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(5164), 1, - sym__variable_name, - [118082] = 4, + ACTIONS(2606), 2, + sym__newline, + anon_sym_SEMI, + [118168] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4024), 1, - sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, + ACTIONS(2559), 1, sym__unquoted_pattern, - ACTIONS(1726), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118098] = 6, + STATE(4026), 1, + sym_comment, + ACTIONS(7056), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118184] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7568), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT, - ACTIONS(7651), 1, + ACTIONS(7655), 1, anon_sym_RBRACK, - STATE(3972), 1, + STATE(3885), 1, aux_sym_parameter_repeat2, - STATE(4025), 1, + STATE(4027), 1, sym_comment, - ACTIONS(1388), 2, + ACTIONS(1384), 2, sym__newline, anon_sym_COMMA, - [118118] = 6, + [118204] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(5619), 1, sym__space, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(4026), 1, + ACTIONS(7236), 1, + anon_sym_EQ2, + STATE(2940), 1, + sym__flag_equals_value, + STATE(4028), 1, sym_comment, - ACTIONS(2569), 2, + ACTIONS(5617), 2, sym__newline, anon_sym_SEMI, - [118138] = 6, + [118224] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5622), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - STATE(2955), 1, - sym__flag_equals_value, - STATE(4027), 1, + STATE(4029), 1, sym_comment, - ACTIONS(5620), 2, + ACTIONS(2491), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2493), 3, sym__newline, anon_sym_SEMI, - [118158] = 7, + sym__unquoted_pattern, + [118240] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1434), 1, + ACTIONS(1462), 1, anon_sym_COLON2, - ACTIONS(4928), 1, + ACTIONS(4934), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(451), 1, sym_path, - STATE(492), 1, + STATE(476), 1, sym_cell_path, - STATE(2290), 1, + STATE(2293), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4028), 1, + STATE(4030), 1, sym_comment, - [118180] = 5, + [118262] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, + ACTIONS(3882), 1, + anon_sym_LBRACK, + ACTIONS(3934), 1, + sym__newline, + STATE(1949), 1, + aux_sym__types_body_repeat1, + STATE(4031), 1, + sym_comment, + STATE(4595), 1, + sym_val_list, + STATE(4597), 1, + aux_sym__table_body_repeat1, + [118284] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1351), 1, aux_sym__block_body_repeat1, - STATE(4029), 1, + STATE(4032), 1, sym_comment, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3073), 2, + ACTIONS(3077), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [118198] = 4, + [118302] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4030), 1, - sym_comment, - ACTIONS(2501), 2, + ACTIONS(2640), 1, sym__space, + ACTIONS(2644), 1, anon_sym_LPAREN2, - ACTIONS(2503), 3, + ACTIONS(2646), 1, + sym__unquoted_pattern, + STATE(4033), 1, + sym_comment, + ACTIONS(2642), 2, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [118214] = 6, + [118322] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__space, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(4031), 1, + ACTIONS(7420), 1, + anon_sym_DOT_DOT2, + ACTIONS(7434), 1, + anon_sym_RBRACK, + ACTIONS(7436), 1, + sym__entry_separator, + STATE(4034), 1, sym_comment, - ACTIONS(2637), 2, - sym__newline, - anon_sym_SEMI, - [118234] = 5, + ACTIONS(7422), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118342] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7248), 1, + ACTIONS(7246), 1, aux_sym__immediate_decimal_token5, - STATE(4032), 1, + STATE(4035), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1760), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 2, + ACTIONS(1762), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [118252] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7654), 1, - anon_sym_RBRACE, - ACTIONS(7656), 1, - sym__entry_separator, - STATE(4033), 1, - sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118272] = 7, + [118360] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7517), 1, sym_identifier, - ACTIONS(7508), 1, + ACTIONS(7519), 1, anon_sym_DOLLAR, STATE(3915), 1, sym__variable_name, - STATE(4034), 1, + STATE(4036), 1, sym_comment, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4307), 1, + STATE(4311), 1, sym__assignment_pattern, - [118294] = 5, + [118382] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5187), 1, + anon_sym_DOLLAR, + ACTIONS(7140), 1, + sym_identifier, + STATE(4037), 1, + sym_comment, + STATE(4068), 1, + sym_val_variable, + STATE(5166), 1, + sym__variable_name, + [118404] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7658), 1, aux_sym__immediate_decimal_token5, - STATE(4035), 1, + STATE(4038), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1810), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 2, + ACTIONS(1812), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [118312] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7660), 1, - anon_sym_DQUOTE, - STATE(4036), 1, - sym_comment, - STATE(4258), 1, - aux_sym_string_content_repeat1, - STATE(4824), 1, - sym_string_content, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [118332] = 6, + [118422] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7420), 1, anon_sym_DOT_DOT2, - ACTIONS(7662), 1, + ACTIONS(7660), 1, anon_sym_RBRACE, - ACTIONS(7664), 1, + ACTIONS(7662), 1, sym__entry_separator, - STATE(4037), 1, + STATE(4039), 1, sym_comment, - ACTIONS(7426), 2, + ACTIONS(7422), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118352] = 5, + [118442] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7420), 1, + ACTIONS(7416), 1, anon_sym_EQ2, - STATE(4038), 1, + STATE(4040), 1, sym_comment, - STATE(4462), 1, + STATE(4469), 1, sym__flag_equals_value, - ACTIONS(4367), 3, + ACTIONS(4464), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [118370] = 5, + [118460] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7666), 1, + ACTIONS(7664), 1, anon_sym_DASH_DASH, - STATE(4547), 1, + STATE(4548), 1, sym_long_flag, - ACTIONS(4453), 2, + ACTIONS(4468), 2, anon_sym_LBRACK, anon_sym_LPAREN, - STATE(4039), 2, + STATE(4041), 2, sym_comment, aux_sym_decl_def_repeat1, - [118388] = 7, + [118478] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7506), 1, + ACTIONS(7517), 1, sym_identifier, - ACTIONS(7508), 1, + ACTIONS(7519), 1, anon_sym_DOLLAR, - STATE(3957), 1, + STATE(3959), 1, sym__variable_name, - STATE(4040), 1, + STATE(4042), 1, sym_comment, - STATE(4060), 1, + STATE(4068), 1, sym_val_variable, - STATE(4307), 1, + STATE(4311), 1, sym__assignment_pattern, - [118410] = 7, - ACTIONS(3), 1, + [118500] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(3933), 1, - sym__variable_name, - STATE(4041), 1, + ACTIONS(7420), 1, + anon_sym_DOT_DOT2, + ACTIONS(7667), 1, + anon_sym_RBRACE, + ACTIONS(7669), 1, + sym__entry_separator, + STATE(4043), 1, sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4403), 1, - sym__assignment_pattern, - [118432] = 6, + ACTIONS(7422), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118520] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, + ACTIONS(1760), 1, sym__space, - ACTIONS(6776), 1, + ACTIONS(6826), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7669), 1, + ACTIONS(7671), 1, anon_sym_DOT, - STATE(4042), 1, + STATE(4044), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1762), 2, sym__newline, anon_sym_SEMI, - [118452] = 5, + [118540] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(1762), 1, sym__unquoted_pattern, - ACTIONS(7252), 1, + ACTIONS(7254), 1, aux_sym__immediate_decimal_token5, - STATE(4043), 1, + STATE(4045), 1, sym_comment, - ACTIONS(1736), 3, + ACTIONS(1760), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118470] = 5, + [118558] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1010), 1, + sym__space, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern, + STATE(4046), 1, + sym_comment, + ACTIONS(1002), 2, + sym__newline, + anon_sym_SEMI, + [118578] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(1812), 1, sym__unquoted_pattern, - ACTIONS(7671), 1, + ACTIONS(7673), 1, aux_sym__immediate_decimal_token5, - STATE(4044), 1, + STATE(4047), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(1810), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118488] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(4014), 1, - sym__variable_name, - STATE(4045), 1, - sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4597), 1, - sym__assignment_pattern_parenthesized, - [118510] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7506), 1, - sym_identifier, - ACTIONS(7508), 1, - anon_sym_DOLLAR, - STATE(3940), 1, - sym__variable_name, - STATE(4046), 1, - sym_comment, - STATE(4060), 1, - sym_val_variable, - STATE(4597), 1, - sym__assignment_pattern_parenthesized, - [118532] = 7, + [118596] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7494), 1, + ACTIONS(7511), 1, anon_sym_LPAREN, - ACTIONS(7498), 1, + ACTIONS(7515), 1, sym_unescaped_interpolated_content, - ACTIONS(7673), 1, + ACTIONS(7675), 1, anon_sym_SQUOTE2, - STATE(3945), 1, + STATE(3954), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4047), 1, - sym_comment, - STATE(4544), 1, - sym_expr_interpolated, - [118554] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1621), 1, - anon_sym_RBRACE, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - STATE(1475), 1, - aux_sym__types_body_repeat2, STATE(4048), 1, sym_comment, - [118573] = 3, + STATE(4574), 1, + sym_expr_interpolated, + [118618] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7370), 1, + anon_sym_RPAREN, STATE(4049), 1, sym_comment, - ACTIONS(7675), 4, + STATE(4281), 1, + aux_sym__block_body_repeat1, + ACTIONS(7677), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118586] = 3, + [118635] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4050), 1, sym_comment, - ACTIONS(7677), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [118599] = 6, + ACTIONS(7679), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [118648] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1726), 1, - anon_sym_LBRACE, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(7679), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7681), 1, - aux_sym__immediate_decimal_token5, STATE(4051), 1, sym_comment, - [118618] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4052), 1, - sym_comment, - ACTIONS(7675), 4, + ACTIONS(7681), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [118631] = 3, + [118661] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4053), 1, + STATE(4052), 1, sym_comment, - ACTIONS(7683), 4, + ACTIONS(7681), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [118644] = 3, + [118674] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1726), 1, + anon_sym_LBRACE, + ACTIONS(1728), 1, + sym__unquoted_pattern, + ACTIONS(7683), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7685), 1, + aux_sym__immediate_decimal_token5, + STATE(4053), 1, + sym_comment, + [118693] = 4, + ACTIONS(103), 1, + anon_sym_POUND, STATE(4054), 1, sym_comment, - ACTIONS(7683), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118657] = 4, + ACTIONS(6118), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6120), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [118708] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4055), 1, sym_comment, - ACTIONS(6121), 2, + ACTIONS(6122), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(6123), 2, + ACTIONS(6124), 2, anon_sym_RBRACK, anon_sym_GT2, - [118672] = 4, + [118723] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, + ACTIONS(2646), 1, sym__unquoted_pattern, STATE(4056), 1, sym_comment, - ACTIONS(2635), 3, + ACTIONS(2640), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [118687] = 4, + [118738] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(1744), 1, sym__unquoted_pattern, STATE(4057), 1, sym_comment, - ACTIONS(968), 3, + ACTIONS(960), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118702] = 4, + [118753] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2194), 1, - sym__entry_separator, + ACTIONS(7687), 1, + anon_sym_COLON2, STATE(4058), 1, sym_comment, - ACTIONS(2196), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [118717] = 6, + STATE(4183), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5370), 2, + sym__newline, + sym__space, + [118770] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1460), 1, + ACTIONS(1536), 1, sym__table_head_separator, - ACTIONS(7510), 1, + ACTIONS(7509), 1, anon_sym_DOT2, STATE(4059), 1, sym_comment, - STATE(4065), 1, + STATE(4067), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4641), 1, + STATE(4694), 1, sym_path, - [118736] = 3, - ACTIONS(3), 1, + [118789] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2363), 1, + sym__entry_separator, STATE(4060), 1, sym_comment, - ACTIONS(7685), 4, + ACTIONS(2365), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [118804] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4061), 1, + sym_comment, + ACTIONS(7689), 4, anon_sym_EQ, anon_sym_in, sym__newline, anon_sym_COLON, - [118749] = 4, + [118817] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4062), 1, + sym_comment, + ACTIONS(7691), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [118830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(2660), 1, sym__unquoted_pattern, - STATE(4061), 1, + STATE(4063), 1, sym_comment, - ACTIONS(994), 3, + ACTIONS(1010), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [118764] = 4, + [118845] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(2660), 1, sym__unquoted_pattern, - STATE(4062), 1, + STATE(4064), 1, sym_comment, ACTIONS(1018), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [118779] = 3, - ACTIONS(3), 1, + [118860] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4063), 1, + STATE(4065), 1, sym_comment, - ACTIONS(4102), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [118792] = 4, + ACTIONS(6126), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6128), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [118875] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4064), 1, + STATE(4066), 1, sym_comment, - ACTIONS(6125), 2, + ACTIONS(6130), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(6127), 2, + ACTIONS(6132), 2, anon_sym_RBRACK, anon_sym_GT2, - [118807] = 5, + [118890] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(1540), 1, sym__table_head_separator, - ACTIONS(7687), 1, + ACTIONS(7693), 1, anon_sym_DOT2, - STATE(4641), 1, + STATE(4694), 1, sym_path, - STATE(4065), 2, + STATE(4067), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - [118824] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3073), 1, - ts_builtin_sym_end, - STATE(1371), 1, - aux_sym__block_body_repeat1, - STATE(4066), 1, - sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - [118841] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4067), 1, - sym_comment, - ACTIONS(4104), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [118854] = 3, + [118907] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4068), 1, sym_comment, - ACTIONS(7690), 4, + ACTIONS(7696), 4, + anon_sym_EQ, + anon_sym_in, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118867] = 3, - ACTIONS(3), 1, + anon_sym_COLON, + [118920] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2456), 1, + sym__entry_separator, STATE(4069), 1, sym_comment, - ACTIONS(7690), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2458), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [118880] = 3, + anon_sym_DOT_DOT, + [118935] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4070), 1, sym_comment, - ACTIONS(7692), 4, + ACTIONS(4066), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118893] = 4, - ACTIONS(103), 1, + anon_sym_LBRACE, + [118948] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2198), 1, - sym__entry_separator, STATE(4071), 1, sym_comment, - ACTIONS(2200), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [118908] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4072), 1, - sym_comment, - ACTIONS(6129), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6131), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [118923] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4073), 1, - sym_comment, - ACTIONS(6133), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6135), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [118938] = 4, + ACTIONS(4068), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [118961] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, + ACTIONS(2146), 1, sym__entry_separator, - STATE(4074), 1, + STATE(4072), 1, sym_comment, - ACTIONS(2102), 3, + ACTIONS(2148), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [118953] = 4, + [118976] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(2166), 1, sym__entry_separator, - STATE(4075), 1, + STATE(4073), 1, sym_comment, - ACTIONS(2078), 3, + ACTIONS(2168), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [118968] = 3, + [118991] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4076), 1, + STATE(4074), 1, sym_comment, - ACTIONS(5221), 4, + ACTIONS(5279), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [118981] = 5, - ACTIONS(103), 1, + [119004] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(4077), 1, + STATE(4075), 1, sym_comment, - ACTIONS(868), 2, + ACTIONS(7698), 4, sym__newline, anon_sym_SEMI, - [118998] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [119017] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4078), 1, + STATE(4076), 1, sym_comment, - ACTIONS(7694), 4, + ACTIONS(7230), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119011] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119030] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2090), 1, sym__entry_separator, - STATE(4079), 1, + STATE(4077), 1, sym_comment, - ACTIONS(2122), 3, + ACTIONS(2092), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119026] = 3, + [119045] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4080), 1, + STATE(4078), 1, sym_comment, - ACTIONS(5237), 4, + ACTIONS(5223), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [119039] = 3, + [119058] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4081), 1, + ACTIONS(3077), 1, + ts_builtin_sym_end, + STATE(1367), 1, + aux_sym__block_body_repeat1, + STATE(4079), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [119075] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4080), 1, + sym_comment, + ACTIONS(7700), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119052] = 3, + [119088] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4082), 1, + STATE(4081), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(7700), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119065] = 3, + [119101] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4082), 1, + sym_comment, + ACTIONS(7702), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119114] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4083), 1, sym_comment, - ACTIONS(7675), 4, + ACTIONS(7698), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119078] = 6, + [119127] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7698), 1, - anon_sym_LBRACK, - ACTIONS(7700), 1, - anon_sym_LPAREN, - STATE(3902), 1, - sym_parameter_parens, - STATE(3989), 1, - sym_parameter_bracks, STATE(4084), 1, sym_comment, - [119097] = 3, - ACTIONS(3), 1, + ACTIONS(7704), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [119140] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(960), 1, + sym__space, + ACTIONS(5009), 1, + sym__unquoted_pattern, STATE(4085), 1, sym_comment, - ACTIONS(7675), 4, + ACTIONS(860), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119110] = 3, + [119157] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4086), 1, sym_comment, - ACTIONS(7683), 4, + ACTIONS(7679), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119123] = 4, + [119170] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, + ACTIONS(2559), 1, sym__unquoted_pattern, STATE(4087), 1, sym_comment, - ACTIONS(7210), 3, + ACTIONS(7056), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119138] = 5, + [119185] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7702), 1, - anon_sym_DOT_DOT2, STATE(4088), 1, sym_comment, - ACTIONS(7704), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119155] = 4, - ACTIONS(103), 1, + ACTIONS(7706), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [119198] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7706), 1, - anon_sym_DQUOTE, - ACTIONS(7708), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(4089), 2, + STATE(4089), 1, sym_comment, - aux_sym_string_content_repeat1, - [119170] = 3, + ACTIONS(7679), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [119211] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4090), 1, sym_comment, - ACTIONS(7683), 4, + ACTIONS(7681), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119183] = 3, + [119224] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4091), 1, sym_comment, - ACTIONS(7711), 4, + ACTIONS(7681), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119196] = 6, + [119237] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7698), 1, + ACTIONS(7708), 1, anon_sym_LBRACK, - ACTIONS(7700), 1, + ACTIONS(7710), 1, anon_sym_LPAREN, - STATE(3959), 1, + STATE(3905), 1, sym_parameter_parens, - STATE(3963), 1, + STATE(3909), 1, sym_parameter_bracks, STATE(4092), 1, sym_comment, - [119215] = 3, + [119256] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4093), 1, sym_comment, - ACTIONS(7711), 4, + ACTIONS(7712), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119228] = 3, + [119269] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1956), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7714), 1, + anon_sym_DOT_DOT2, STATE(4094), 1, sym_comment, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119241] = 3, + ACTIONS(7716), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119286] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4095), 1, sym_comment, - ACTIONS(7715), 4, + ACTIONS(7712), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119254] = 4, + [119299] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2202), 1, + ACTIONS(2182), 1, sym__entry_separator, STATE(4096), 1, sym_comment, - ACTIONS(2204), 3, + ACTIONS(2184), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119269] = 6, + [119314] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7718), 1, + anon_sym_DQUOTE, + ACTIONS(7720), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(4097), 2, + sym_comment, + aux_sym_string_content_repeat1, + [119329] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(5107), 1, anon_sym_LPAREN2, - ACTIONS(5822), 1, + ACTIONS(5844), 1, sym__entry_separator, - ACTIONS(5824), 1, + ACTIONS(5846), 1, anon_sym_RBRACE, - STATE(4097), 1, - sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [119288] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(4098), 1, sym_comment, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119301] = 3, + STATE(4901), 1, + sym__expr_parenthesized_immediate, + [119348] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4099), 1, sym_comment, - ACTIONS(7715), 4, + ACTIONS(7723), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119314] = 4, - ACTIONS(103), 1, + [119361] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4100), 1, sym_comment, - ACTIONS(6137), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6139), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [119329] = 3, + ACTIONS(7725), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119374] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4101), 1, sym_comment, - ACTIONS(7713), 4, + ACTIONS(7723), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119342] = 4, + [119387] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2519), 1, - sym__entry_separator, STATE(4102), 1, sym_comment, - ACTIONS(2521), 3, + ACTIONS(6134), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6136), 2, anon_sym_RBRACK, anon_sym_GT2, - anon_sym_RBRACE, - [119357] = 6, + [119402] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5833), 1, + ACTIONS(2535), 1, sym__entry_separator, - ACTIONS(5835), 1, - anon_sym_RBRACE, STATE(4103), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [119376] = 4, + ACTIONS(2537), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [119417] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4104), 1, sym_comment, - ACTIONS(2501), 2, + ACTIONS(2491), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2503), 2, + ACTIONS(2493), 2, anon_sym_RBRACE, sym__unquoted_pattern_in_record, - [119391] = 4, + [119432] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2206), 1, + ACTIONS(2198), 1, sym__entry_separator, STATE(4105), 1, sym_comment, - ACTIONS(2208), 3, + ACTIONS(2200), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119406] = 4, + [119447] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(2202), 1, sym__entry_separator, STATE(4106), 1, sym_comment, - ACTIONS(2212), 3, + ACTIONS(2204), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119421] = 4, + [119462] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2214), 1, + ACTIONS(2206), 1, sym__entry_separator, STATE(4107), 1, sym_comment, - ACTIONS(2216), 3, + ACTIONS(2208), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119436] = 3, + [119477] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5107), 1, + anon_sym_LPAREN2, + ACTIONS(5848), 1, + sym__entry_separator, + ACTIONS(5850), 1, + anon_sym_RBRACE, STATE(4108), 1, sym_comment, - ACTIONS(1462), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [119449] = 4, + STATE(4901), 1, + sym__expr_parenthesized_immediate, + [119496] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2218), 1, + ACTIONS(2210), 1, sym__entry_separator, STATE(4109), 1, sym_comment, - ACTIONS(2220), 3, + ACTIONS(2212), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119464] = 3, + [119511] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4110), 1, sym_comment, - ACTIONS(7713), 4, + ACTIONS(7727), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119477] = 3, + [119524] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1606), 1, + sym__unquoted_pattern, STATE(4111), 1, sym_comment, - ACTIONS(5257), 4, - ts_builtin_sym_end, + ACTIONS(1936), 3, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [119490] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119539] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, STATE(4112), 1, sym_comment, - ACTIONS(1964), 3, + ACTIONS(5271), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119505] = 4, + anon_sym_SEMI, + anon_sym_LBRACE, + [119552] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2222), 1, @@ -236887,20 +236957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119520] = 6, - ACTIONS(3), 1, + [119567] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7717), 1, - anon_sym_LBRACK, - STATE(540), 1, - aux_sym__repeat_newline, STATE(4114), 1, sym_comment, - STATE(4957), 1, - sym_val_list, - [119539] = 4, + ACTIONS(1549), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [119580] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2226), 1, @@ -236911,7 +236978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119554] = 4, + [119595] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2230), 1, @@ -236922,51 +236989,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119569] = 4, + [119610] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1956), 1, + sym__unquoted_pattern, + STATE(4117), 1, + sym_comment, + ACTIONS(2568), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119625] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2234), 1, sym__entry_separator, - STATE(4117), 1, + STATE(4118), 1, sym_comment, ACTIONS(2236), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119584] = 4, + [119640] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(1956), 1, sym__unquoted_pattern, - STATE(4118), 1, + STATE(4119), 1, sym_comment, - ACTIONS(2575), 3, + ACTIONS(1946), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119599] = 4, + [119655] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2238), 1, sym__entry_separator, - STATE(4119), 1, + STATE(4120), 1, sym_comment, ACTIONS(2240), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119614] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(4120), 1, - sym_comment, - ACTIONS(1974), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119629] = 4, + [119670] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2242), 1, @@ -236977,7 +237044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119644] = 4, + [119685] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2246), 1, @@ -236988,449 +237055,452 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119659] = 4, + [119700] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1645), 1, + sym__unquoted_pattern, + STATE(4123), 1, + sym_comment, + ACTIONS(2584), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119715] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2250), 1, + ACTIONS(2359), 1, sym__entry_separator, - STATE(4123), 1, + STATE(4124), 1, sym_comment, - ACTIONS(2252), 3, + ACTIONS(2361), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119674] = 4, + [119730] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(2624), 1, sym__unquoted_pattern, - STATE(4124), 1, + STATE(4125), 1, sym_comment, - ACTIONS(2523), 3, + ACTIONS(2604), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119689] = 4, + [119745] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, + ACTIONS(2493), 1, sym__unquoted_pattern, - STATE(4125), 1, + STATE(4126), 1, sym_comment, - ACTIONS(2567), 3, + ACTIONS(2491), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119704] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4126), 1, - sym_comment, - STATE(4257), 1, - sym_block, - [119723] = 4, + [119760] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, STATE(4127), 1, sym_comment, - ACTIONS(2501), 3, + ACTIONS(7723), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119738] = 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [119773] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7719), 1, + ACTIONS(7729), 1, anon_sym_GT2, - ACTIONS(7721), 1, + ACTIONS(7731), 1, anon_sym_AT2, - ACTIONS(7723), 1, + ACTIONS(7733), 1, sym__entry_separator, STATE(4128), 1, sym_comment, - STATE(4652), 1, + STATE(4622), 1, sym_param_completer, - [119757] = 3, + [119792] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7735), 1, + sym__space, + ACTIONS(5751), 2, + sym__newline, + anon_sym_SEMI, + STATE(4129), 2, + sym_comment, + aux_sym_attribute_repeat1, + [119807] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4129), 1, + STATE(4130), 1, sym_comment, - ACTIONS(7725), 4, + ACTIONS(7723), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119770] = 6, + [119820] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7708), 1, + anon_sym_LBRACK, + ACTIONS(7710), 1, + anon_sym_LPAREN, + STATE(3970), 1, + sym_parameter_parens, + STATE(3978), 1, + sym_parameter_bracks, + STATE(4131), 1, + sym_comment, + [119839] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2118), 1, + anon_sym_LBRACE, + ACTIONS(7738), 1, + anon_sym_DOT_DOT2, + STATE(4132), 1, + sym_comment, + ACTIONS(7740), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119856] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1619), 1, + ACTIONS(2744), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2780), 1, + anon_sym_COLON2, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4133), 1, + sym_comment, + STATE(4258), 1, + sym_block, + [119875] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4134), 1, + sym_comment, + ACTIONS(7727), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1706), 1, - sym__entry_separator, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_record, - STATE(4130), 1, + [119888] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7742), 1, + anon_sym_DQUOTE, + STATE(4097), 1, + aux_sym_string_content_repeat1, + STATE(4135), 1, sym_comment, - [119789] = 6, + ACTIONS(7507), 2, + sym__escaped_str_content, + sym_escape_sequence, + [119905] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, + ACTIONS(2744), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2780), 1, anon_sym_COLON2, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(4131), 1, + STATE(4136), 1, sym_comment, - STATE(4259), 1, + STATE(4260), 1, sym_block, - [119808] = 6, + [119924] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, + ACTIONS(2744), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2780), 1, anon_sym_COLON2, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(2986), 1, + STATE(3003), 1, sym_block, - STATE(4132), 1, + STATE(4137), 1, sym_comment, - [119827] = 5, + [119943] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1606), 1, sym__unquoted_pattern, - ACTIONS(7727), 1, + ACTIONS(7744), 1, anon_sym_DOT_DOT2, - STATE(4133), 1, + STATE(4138), 1, sym_comment, - ACTIONS(7729), 2, + ACTIONS(7746), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119844] = 5, + [119960] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7210), 1, + ACTIONS(1613), 1, + anon_sym_RBRACE, + ACTIONS(1706), 1, sym__entry_separator, - STATE(4134), 1, - sym_comment, - ACTIONS(7278), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [119861] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2152), 1, - anon_sym_LBRACE, - ACTIONS(7731), 1, - anon_sym_DOT_DOT2, - STATE(4135), 1, - sym_comment, - ACTIONS(7733), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119878] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4136), 1, + ACTIONS(2557), 1, + anon_sym_LPAREN2, + ACTIONS(2559), 1, + sym__unquoted_pattern_in_record, + STATE(4139), 1, sym_comment, - ACTIONS(7725), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119891] = 3, + [119979] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4137), 1, + STATE(4140), 1, sym_comment, - ACTIONS(7735), 4, + ACTIONS(7748), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119904] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7698), 1, - anon_sym_LBRACK, - ACTIONS(7700), 1, - anon_sym_LPAREN, - STATE(3983), 1, - sym_parameter_parens, - STATE(3984), 1, - sym_parameter_bracks, - STATE(4138), 1, - sym_comment, - [119923] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(4139), 1, - sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, - sym__newline, - anon_sym_SEMI, - [119940] = 3, - ACTIONS(3), 1, + [119992] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4140), 1, + ACTIONS(4727), 1, + sym__entry_separator, + STATE(2245), 1, + aux_sym__types_body_repeat2, + STATE(4141), 1, sym_comment, - ACTIONS(1480), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [119953] = 3, + ACTIONS(7444), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [120009] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4141), 1, + STATE(4142), 1, sym_comment, - ACTIONS(7739), 4, + ACTIONS(7750), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [119966] = 3, + [120022] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4142), 1, + STATE(4143), 1, sym_comment, - ACTIONS(7735), 4, + ACTIONS(7748), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119979] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2575), 1, - sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACK, - STATE(4143), 1, - sym_comment, - [119998] = 3, + [120035] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4144), 1, sym_comment, - ACTIONS(7741), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120011] = 6, + ACTIONS(1524), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120048] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACK, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2559), 1, sym__unquoted_pattern_in_list, + ACTIONS(7056), 1, + sym__entry_separator, STATE(4145), 1, sym_comment, - [120030] = 4, + ACTIONS(7280), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [120065] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2980), 1, + sym_block, STATE(4146), 1, sym_comment, - ACTIONS(2635), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120045] = 6, + [120084] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3196), 1, - anon_sym_SEMI, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, + ACTIONS(2646), 1, + sym__unquoted_pattern, STATE(4147), 1, sym_comment, - STATE(4404), 1, - aux_sym__repeat_newline, - [120064] = 6, + ACTIONS(2640), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120099] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1736), 1, + ACTIONS(1760), 1, anon_sym_LBRACE, - ACTIONS(1738), 1, + ACTIONS(1762), 1, sym__unquoted_pattern, - ACTIONS(7743), 1, + ACTIONS(7752), 1, anon_sym_DOT, - ACTIONS(7745), 1, + ACTIONS(7754), 1, aux_sym__immediate_decimal_token5, STATE(4148), 1, sym_comment, - [120083] = 3, + [120118] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4149), 1, sym_comment, - ACTIONS(7747), 4, + ACTIONS(7756), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120096] = 3, + [120131] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4150), 1, sym_comment, - ACTIONS(1545), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120109] = 3, + ACTIONS(6100), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT2, + anon_sym_LBRACE, + [120144] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4151), 1, sym_comment, - ACTIONS(7747), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120122] = 5, + ACTIONS(1528), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120157] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3046), 1, - ts_builtin_sym_end, - STATE(1367), 1, - aux_sym__block_body_repeat1, STATE(4152), 1, sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - [120139] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4153), 1, - sym_comment, - ACTIONS(1468), 4, + ACTIONS(1508), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [120152] = 5, + [120170] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7749), 1, - anon_sym_RPAREN, + ACTIONS(7758), 1, + anon_sym_RBRACK, + STATE(3389), 1, + aux_sym_parameter_repeat2, + STATE(4153), 1, + sym_comment, + ACTIONS(1444), 2, + sym__newline, + anon_sym_COMMA, + [120187] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2568), 1, + sym__entry_separator, + ACTIONS(2570), 1, + anon_sym_RBRACK, STATE(4154), 1, sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, - sym__newline, - anon_sym_SEMI, - [120169] = 3, - ACTIONS(3), 1, + [120206] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1946), 1, + sym__entry_separator, + ACTIONS(1948), 1, + anon_sym_RBRACK, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern_in_list, STATE(4155), 1, sym_comment, - ACTIONS(5287), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [120182] = 3, + [120225] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2660), 1, + sym__unquoted_pattern, STATE(4156), 1, sym_comment, - ACTIONS(7741), 4, + ACTIONS(1010), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120195] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120240] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(2660), 1, sym__unquoted_pattern, STATE(4157), 1, sym_comment, - ACTIONS(994), 3, + ACTIONS(1018), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [120210] = 4, + [120255] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, STATE(4158), 1, sym_comment, - ACTIONS(1018), 3, + ACTIONS(7756), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120225] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1968), 1, - anon_sym_LPAREN2, + [120268] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(3331), 1, + anon_sym_SEMI, + STATE(1375), 1, + aux_sym__parenthesized_body_repeat1, STATE(4159), 1, sym_comment, - [120244] = 3, + STATE(4503), 1, + aux_sym__repeat_newline, + [120287] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7760), 1, + anon_sym_RPAREN, STATE(4160), 1, sym_comment, - ACTIONS(1472), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120257] = 3, + STATE(4281), 1, + aux_sym__block_body_repeat1, + ACTIONS(7677), 2, + sym__newline, + anon_sym_SEMI, + [120304] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4161), 1, sym_comment, - ACTIONS(1476), 4, + ACTIONS(1512), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [120270] = 3, + [120317] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4162), 1, @@ -237440,1456 +237510,1396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [120283] = 4, - ACTIONS(103), 1, + [120330] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, STATE(4163), 1, sym_comment, - ACTIONS(868), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120298] = 3, + ACTIONS(1520), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120343] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4164), 1, sym_comment, - ACTIONS(7751), 4, + ACTIONS(7762), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120311] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2112), 1, - sym__entry_separator, - STATE(4165), 1, - sym_comment, - ACTIONS(2114), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120326] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7753), 1, - anon_sym_RBRACK, - ACTIONS(7755), 1, - sym__entry_separator, - STATE(4166), 1, - sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [120345] = 5, + [120356] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(459), 1, - ts_builtin_sym_end, - STATE(1368), 1, - aux_sym__block_body_repeat1, - STATE(4167), 1, + STATE(4165), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(7762), 4, sym__newline, anon_sym_SEMI, - [120362] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120369] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4168), 1, + STATE(4166), 1, sym_comment, - ACTIONS(5253), 4, + ACTIONS(5227), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [120375] = 3, + [120382] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1645), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2584), 1, + sym__entry_separator, + ACTIONS(2586), 1, + anon_sym_RBRACK, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + STATE(4167), 1, + sym_comment, + [120401] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4169), 1, + STATE(4168), 1, sym_comment, - ACTIONS(6928), 4, + ACTIONS(6998), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [120388] = 3, - ACTIONS(3), 1, + [120414] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1936), 1, + sym__entry_separator, + ACTIONS(1938), 1, + anon_sym_RBRACE, + ACTIONS(1940), 1, + anon_sym_LPAREN2, + STATE(4169), 1, + sym_comment, + [120433] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(960), 1, + sym__entry_separator, STATE(4170), 1, sym_comment, - ACTIONS(7751), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(860), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [120401] = 6, + anon_sym_DOT_DOT, + [120448] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - STATE(3875), 1, - sym_parameter_parens, - STATE(3879), 1, - sym_parameter_bracks, STATE(4171), 1, sym_comment, - [120420] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4172), 1, - sym_comment, - ACTIONS(7757), 4, - anon_sym_if, + ACTIONS(7764), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120433] = 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120461] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(7572), 1, - anon_sym_RBRACE, - ACTIONS(7574), 1, + ACTIONS(2086), 1, sym__entry_separator, + STATE(4172), 1, + sym_comment, + ACTIONS(2088), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [120476] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4173), 1, sym_comment, - STATE(4631), 1, - sym__expr_parenthesized_immediate, - [120452] = 6, - ACTIONS(103), 1, + ACTIONS(5310), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [120489] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2575), 1, - sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACE, STATE(4174), 1, sym_comment, - [120471] = 3, + ACTIONS(7764), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120502] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4175), 1, sym_comment, - ACTIONS(7757), 4, - anon_sym_if, + ACTIONS(7766), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120484] = 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120515] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2568), 1, sym__entry_separator, + ACTIONS(2570), 1, + anon_sym_RBRACE, STATE(4176), 1, sym_comment, - ACTIONS(1860), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [120499] = 6, + [120534] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(1870), 1, sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, STATE(4177), 1, sym_comment, - [120518] = 5, + ACTIONS(1872), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + [120549] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4178), 1, + sym_comment, + ACTIONS(7766), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120562] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, + ACTIONS(2146), 1, anon_sym_LBRACE, - ACTIONS(7759), 1, + ACTIONS(7768), 1, anon_sym_DOT_DOT2, - STATE(4178), 1, + STATE(4179), 1, sym_comment, - ACTIONS(7761), 2, + ACTIONS(7770), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120535] = 5, + [120579] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7763), 1, + ACTIONS(2166), 1, + anon_sym_LBRACE, + ACTIONS(7772), 1, anon_sym_DOT_DOT2, - STATE(4179), 1, + STATE(4180), 1, sym_comment, - ACTIONS(7765), 2, + ACTIONS(7774), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120552] = 3, + [120596] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4180), 1, + STATE(4181), 1, sym_comment, - ACTIONS(6942), 4, + ACTIONS(7008), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [120565] = 4, + [120609] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(1615), 1, + anon_sym_RBRACE, + ACTIONS(1621), 1, + sym__entry_separator, + ACTIONS(1623), 1, anon_sym_COLON2, - ACTIONS(7767), 2, - sym__newline, - sym__space, - STATE(4181), 2, + STATE(1476), 1, + aux_sym__types_body_repeat2, + STATE(4182), 1, sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - [120580] = 6, - ACTIONS(3), 1, + [120628] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7289), 1, + ACTIONS(3456), 1, + anon_sym_COLON2, + ACTIONS(7776), 2, sym__newline, - ACTIONS(7291), 1, - anon_sym_PIPE, - ACTIONS(7770), 1, - anon_sym_EQ_GT, - STATE(4182), 1, + sym__space, + STATE(4183), 2, sym_comment, - STATE(4344), 1, - aux_sym_match_pattern_repeat1, - [120599] = 5, + aux_sym_pipe_element_parenthesized_repeat1, + [120643] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(2090), 1, anon_sym_LBRACE, - ACTIONS(7772), 1, + ACTIONS(7779), 1, anon_sym_DOT_DOT2, - STATE(4183), 1, + STATE(4184), 1, sym_comment, - ACTIONS(7774), 2, + ACTIONS(7781), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120616] = 6, + [120660] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(5107), 1, anon_sym_LPAREN2, - ACTIONS(7589), 1, + ACTIONS(7583), 1, anon_sym_RBRACE, - ACTIONS(7591), 1, + ACTIONS(7585), 1, sym__entry_separator, - STATE(4184), 1, - sym_comment, - STATE(4631), 1, - sym__expr_parenthesized_immediate, - [120635] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7776), 1, - anon_sym_LBRACE, - STATE(3282), 1, - sym__blosure, STATE(4185), 1, sym_comment, - STATE(3281), 2, - sym_block, - sym_val_closure, - [120652] = 5, - ACTIONS(3), 1, + STATE(4684), 1, + sym__expr_parenthesized_immediate, + [120679] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, - anon_sym_LBRACE, - ACTIONS(7778), 1, - anon_sym_DOT_DOT2, + ACTIONS(1946), 1, + sym__entry_separator, + ACTIONS(1948), 1, + anon_sym_RBRACE, + ACTIONS(1950), 1, + anon_sym_LPAREN2, + ACTIONS(1956), 1, + sym__unquoted_pattern_in_record, STATE(4186), 1, sym_comment, - ACTIONS(7780), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120669] = 3, + [120698] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7783), 1, + anon_sym_RBRACK, + STATE(3389), 1, + aux_sym_parameter_repeat2, STATE(4187), 1, sym_comment, - ACTIONS(7337), 4, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - anon_sym_AT, - [120682] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7307), 1, - anon_sym_RPAREN, - STATE(4188), 1, - sym_comment, - STATE(4282), 1, - aux_sym__block_body_repeat1, - ACTIONS(7737), 2, - sym__newline, - anon_sym_SEMI, - [120699] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5690), 1, + ACTIONS(1444), 2, sym__newline, - ACTIONS(7782), 1, - anon_sym_EQ, - ACTIONS(7784), 1, - anon_sym_COLON, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(4189), 1, - sym_comment, - [120718] = 5, + anon_sym_COMMA, + [120715] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(7230), 1, sym__entry_separator, - STATE(2238), 1, - aux_sym__types_body_repeat2, - STATE(4190), 1, + ACTIONS(7420), 1, + anon_sym_DOT_DOT2, + STATE(4188), 1, sym_comment, - ACTIONS(7786), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [120735] = 5, + ACTIONS(7422), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120732] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7204), 1, + ACTIONS(5107), 1, + anon_sym_LPAREN2, + ACTIONS(7593), 1, + anon_sym_RBRACE, + ACTIONS(7595), 1, sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - STATE(4191), 1, + STATE(4189), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120752] = 5, + STATE(4684), 1, + sym__expr_parenthesized_immediate, + [120751] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(7056), 1, sym__entry_separator, - ACTIONS(7424), 1, + ACTIONS(7420), 1, anon_sym_DOT_DOT2, - STATE(4192), 1, + STATE(4190), 1, sym_comment, - ACTIONS(7426), 2, + ACTIONS(7422), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120769] = 3, + [120768] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4193), 1, + STATE(4191), 1, sym_comment, - ACTIONS(6955), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120782] = 5, + ACTIONS(7785), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120781] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4727), 1, sym__entry_separator, - STATE(2231), 1, + STATE(2241), 1, aux_sym__types_body_repeat2, - STATE(4194), 1, + STATE(4192), 1, sym_comment, - ACTIONS(7786), 2, + ACTIONS(7787), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [120799] = 4, + [120798] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7788), 1, - anon_sym_LPAREN, + STATE(4193), 1, + sym_comment, + ACTIONS(7789), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7791), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [120813] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4194), 1, + sym_comment, + ACTIONS(7002), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [120826] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7793), 1, + anon_sym_LBRACE, + STATE(3307), 1, + sym__blosure, STATE(4195), 1, sym_comment, - ACTIONS(7790), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [120814] = 6, + STATE(3253), 2, + sym_block, + sym_val_closure, + [120843] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4727), 1, sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7794), 1, - anon_sym_RBRACK, - STATE(1876), 1, + STATE(2242), 1, aux_sym__types_body_repeat2, STATE(4196), 1, sym_comment, - [120833] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2505), 1, - sym__entry_separator, - STATE(4197), 1, - sym_comment, - ACTIONS(2507), 3, + ACTIONS(7787), 2, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, - [120848] = 5, - ACTIONS(103), 1, + [120860] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7798), 1, - sym__space, - STATE(4198), 1, + STATE(4197), 1, sym_comment, - STATE(4215), 1, - aux_sym_attribute_repeat1, - ACTIONS(7796), 2, + ACTIONS(7795), 4, sym__newline, anon_sym_SEMI, - [120865] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4199), 1, - sym_comment, - ACTIONS(7800), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [120880] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2523), 1, - sym__entry_separator, - ACTIONS(2525), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(4200), 1, - sym_comment, - [120899] = 3, + [120873] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4201), 1, + ACTIONS(1956), 1, + sym__unquoted_pattern, + ACTIONS(7797), 1, + anon_sym_DOT_DOT2, + STATE(4198), 1, sym_comment, - ACTIONS(7804), 4, + ACTIONS(7799), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120890] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5680), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120912] = 3, + ACTIONS(7801), 1, + anon_sym_EQ, + ACTIONS(7803), 1, + anon_sym_COLON, + STATE(3255), 1, + aux_sym__repeat_newline, + STATE(4199), 1, + sym_comment, + [120909] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4202), 1, + STATE(4200), 1, sym_comment, - ACTIONS(7804), 4, + ACTIONS(7795), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120925] = 6, + [120922] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, + STATE(4201), 1, + sym_comment, + ACTIONS(6110), 2, + anon_sym_AT2, sym__entry_separator, - STATE(4203), 1, + ACTIONS(6112), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [120937] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7299), 1, + sym__newline, + ACTIONS(7301), 1, + anon_sym_PIPE, + ACTIONS(7805), 1, + anon_sym_EQ_GT, + STATE(4202), 1, sym_comment, - STATE(4751), 1, - sym__expr_parenthesized_immediate, - [120944] = 3, + STATE(4359), 1, + aux_sym_match_pattern_repeat1, + [120956] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4204), 1, + STATE(4203), 1, sym_comment, - ACTIONS(7806), 4, + ACTIONS(7807), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [120957] = 4, + [120969] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7808), 1, - anon_sym_LPAREN, + ACTIONS(1645), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2584), 1, + sym__entry_separator, + ACTIONS(2586), 1, + anon_sym_RBRACE, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + STATE(4204), 1, + sym_comment, + [120988] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2495), 1, + sym__entry_separator, STATE(4205), 1, sym_comment, - ACTIONS(7810), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [120972] = 4, + ACTIONS(2497), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121003] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6514), 1, + anon_sym_LPAREN2, + ACTIONS(7809), 1, + anon_sym_RBRACK, + ACTIONS(7811), 1, + sym__entry_separator, STATE(4206), 1, sym_comment, - ACTIONS(6093), 2, + STATE(5020), 1, + sym__expr_parenthesized_immediate, + [121022] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4207), 1, + sym_comment, + ACTIONS(6114), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(6095), 2, + ACTIONS(6116), 2, anon_sym_RBRACK, anon_sym_GT2, - [120987] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1706), 1, - anon_sym_LBRACE, - ACTIONS(7812), 1, - anon_sym_DOT_DOT2, - STATE(4207), 1, - sym_comment, - ACTIONS(7814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121004] = 6, + [121037] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(2604), 1, sym__entry_separator, - ACTIONS(2569), 1, + ACTIONS(2606), 1, anon_sym_RBRACE, - ACTIONS(2631), 1, + ACTIONS(2622), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2624), 1, sym__unquoted_pattern_in_record, STATE(4208), 1, sym_comment, - [121023] = 4, - ACTIONS(103), 1, + [121056] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3066), 1, + ts_builtin_sym_end, + STATE(1359), 1, + aux_sym__block_body_repeat1, STATE(4209), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121038] = 4, - ACTIONS(103), 1, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [121073] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7042), 1, + anon_sym_LBRACK, + ACTIONS(7044), 1, + anon_sym_LPAREN, + STATE(3878), 1, + sym_parameter_parens, + STATE(3879), 1, + sym_parameter_bracks, STATE(4210), 1, sym_comment, - ACTIONS(6107), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6109), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [121053] = 3, + [121092] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1706), 1, + anon_sym_LBRACE, + ACTIONS(7813), 1, + anon_sym_DOT_DOT2, STATE(4211), 1, sym_comment, - ACTIONS(4060), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [121066] = 3, + ACTIONS(7815), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121109] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2493), 1, + sym__unquoted_pattern, STATE(4212), 1, sym_comment, - ACTIONS(7816), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121079] = 3, + ACTIONS(2491), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [121124] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4213), 1, sym_comment, - ACTIONS(7026), 4, + ACTIONS(6979), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [121092] = 4, + [121137] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2591), 1, - sym__entry_separator, STATE(4214), 1, sym_comment, - ACTIONS(2593), 3, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(1726), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1728), 2, anon_sym_RBRACE, - [121107] = 4, + sym__unquoted_pattern_in_record, + [121152] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7818), 1, + ACTIONS(7819), 1, sym__space, - ACTIONS(5708), 2, + STATE(4129), 1, + aux_sym_attribute_repeat1, + STATE(4215), 1, + sym_comment, + ACTIONS(7817), 2, sym__newline, anon_sym_SEMI, - STATE(4215), 2, - sym_comment, - aux_sym_attribute_repeat1, - [121122] = 6, + [121169] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7821), 1, - anon_sym_RBRACK, - ACTIONS(7823), 1, + ACTIONS(2640), 1, sym__entry_separator, + ACTIONS(2642), 1, + anon_sym_RBRACE, + ACTIONS(2644), 1, + anon_sym_LPAREN2, + ACTIONS(2646), 1, + sym__unquoted_pattern_in_record, STATE(4216), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [121141] = 3, + [121188] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6924), 1, + sym__unquoted_pattern, STATE(4217), 1, sym_comment, - ACTIONS(7825), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121154] = 4, + ACTIONS(960), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [121203] = 4, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2580), 1, + sym__entry_separator, STATE(4218), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, + ACTIONS(2582), 3, + anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121169] = 4, + [121218] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, STATE(4219), 1, sym_comment, - ACTIONS(2501), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [121184] = 3, + ACTIONS(7821), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121231] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4220), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(7823), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121197] = 4, - ACTIONS(103), 1, + [121244] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4221), 1, sym_comment, - ACTIONS(1870), 2, + ACTIONS(7825), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121257] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4222), 1, + sym_comment, + ACTIONS(1810), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1872), 2, + ACTIONS(1812), 2, anon_sym_RBRACE, sym__unquoted_pattern_in_record, - [121212] = 6, + [121272] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, + STATE(4223), 1, + sym_comment, + ACTIONS(1854), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2637), 1, + ACTIONS(1856), 2, anon_sym_RBRACE, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, sym__unquoted_pattern_in_record, - STATE(4222), 1, - sym_comment, - [121231] = 4, + [121287] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6902), 1, - sym__unquoted_pattern, - STATE(4223), 1, + STATE(4224), 1, sym_comment, - ACTIONS(968), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [121246] = 3, + ACTIONS(4095), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [121300] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2118), 1, + sym__entry_separator, + STATE(4225), 1, + sym_comment, + ACTIONS(2120), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121315] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4224), 1, + STATE(4226), 1, sym_comment, - ACTIONS(7829), 4, + ACTIONS(7827), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [121259] = 3, + [121328] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1621), 1, + sym__entry_separator, + ACTIONS(1623), 1, + anon_sym_COLON2, + ACTIONS(7829), 1, + anon_sym_RBRACE, + STATE(1483), 1, + aux_sym__types_body_repeat2, + STATE(4227), 1, + sym_comment, + [121347] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4225), 1, + STATE(4228), 1, sym_comment, ACTIONS(7831), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121272] = 3, + [121360] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4226), 1, + STATE(4229), 1, sym_comment, ACTIONS(7833), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121285] = 3, + [121373] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4227), 1, + STATE(4230), 1, + sym_comment, + ACTIONS(4097), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [121386] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4231), 1, + sym_comment, + ACTIONS(6992), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [121399] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4232), 1, sym_comment, ACTIONS(7835), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121298] = 3, + [121412] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4228), 1, + STATE(4233), 1, sym_comment, ACTIONS(7837), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121311] = 6, - ACTIONS(103), 1, + [121425] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2523), 1, - sym__entry_separator, - ACTIONS(2525), 1, - anon_sym_RBRACK, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(4229), 1, + STATE(4234), 1, sym_comment, - [121330] = 3, + ACTIONS(7839), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121438] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4230), 1, + STATE(4235), 1, sym_comment, - ACTIONS(6959), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121343] = 3, + ACTIONS(7841), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121451] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4231), 1, + STATE(4236), 1, sym_comment, ACTIONS(7839), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121356] = 5, + [121464] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4237), 1, + sym_comment, + ACTIONS(7843), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7845), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [121479] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7812), 1, - anon_sym_DOT_DOT2, - ACTIONS(7841), 1, - anon_sym_LBRACE, - STATE(4232), 1, + STATE(4238), 1, sym_comment, - ACTIONS(7814), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121373] = 3, + ACTIONS(7006), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [121492] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4233), 1, + STATE(4239), 1, sym_comment, - ACTIONS(4062), 4, - ts_builtin_sym_end, + ACTIONS(7764), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [121386] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2152), 1, - sym__entry_separator, - STATE(4234), 1, - sym_comment, - ACTIONS(2154), 3, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121401] = 6, + [121505] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(6514), 1, + anon_sym_LPAREN2, + ACTIONS(7847), 1, + anon_sym_RBRACK, + ACTIONS(7849), 1, sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7843), 1, - anon_sym_RBRACE, - STATE(1468), 1, - aux_sym__types_body_repeat2, - STATE(4235), 1, + STATE(4240), 1, sym_comment, - [121420] = 6, - ACTIONS(103), 1, + STATE(5020), 1, + sym__expr_parenthesized_immediate, + [121524] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7845), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(4236), 1, + STATE(4241), 1, sym_comment, - [121439] = 3, + ACTIONS(7764), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121537] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4237), 1, + STATE(4242), 1, sym_comment, - ACTIONS(7847), 4, + ACTIONS(7766), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121452] = 6, + [121550] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1002), 1, + anon_sym_RBRACE, + ACTIONS(1010), 1, + sym__entry_separator, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern_in_record, + STATE(4243), 1, + sym_comment, + [121569] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4268), 1, sym__entry_separator, - ACTIONS(7792), 1, + ACTIONS(7851), 1, anon_sym_LBRACK, - ACTIONS(7849), 1, + ACTIONS(7853), 1, anon_sym_RBRACK, - STATE(1876), 1, + STATE(1868), 1, aux_sym__types_body_repeat2, - STATE(4238), 1, + STATE(4244), 1, sym_comment, - [121471] = 6, + [121588] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7851), 1, + ACTIONS(7855), 1, anon_sym_COLON, - ACTIONS(7853), 1, + ACTIONS(7857), 1, anon_sym_GT2, - ACTIONS(7855), 1, + ACTIONS(7859), 1, sym__entry_separator, - STATE(4239), 1, + STATE(4245), 1, sym_comment, - STATE(4709), 1, + STATE(4720), 1, sym__collection_annotation, - [121490] = 3, - ACTIONS(3), 1, + [121607] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4240), 1, - sym_comment, - ACTIONS(7847), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(994), 1, anon_sym_RBRACE, - [121503] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4241), 1, + ACTIONS(1018), 1, + sym__entry_separator, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern_in_record, + STATE(4246), 1, sym_comment, - ACTIONS(7741), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121516] = 3, - ACTIONS(3), 1, + [121626] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4242), 1, + ACTIONS(4268), 1, + sym__entry_separator, + ACTIONS(7851), 1, + anon_sym_LBRACK, + ACTIONS(7861), 1, + anon_sym_RBRACK, + STATE(1868), 1, + aux_sym__types_body_repeat2, + STATE(4247), 1, sym_comment, - ACTIONS(7034), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121529] = 3, + [121645] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4243), 1, + STATE(4248), 1, sym_comment, - ACTIONS(7741), 4, + ACTIONS(7766), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121542] = 3, + [121658] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4244), 1, + STATE(4249), 1, sym_comment, - ACTIONS(7751), 4, + ACTIONS(7863), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121555] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4245), 1, - sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [121570] = 3, + [121671] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4246), 1, + STATE(4250), 1, sym_comment, - ACTIONS(6894), 4, + ACTIONS(6896), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [121583] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7857), 1, - anon_sym_RBRACK, - ACTIONS(7859), 1, - sym__entry_separator, - STATE(4247), 1, - sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [121602] = 3, + [121684] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4248), 1, + STATE(4251), 1, sym_comment, - ACTIONS(6922), 4, + ACTIONS(6868), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [121615] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACE, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(4249), 1, - sym_comment, - [121634] = 3, + [121697] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4250), 1, + STATE(4252), 1, sym_comment, - ACTIONS(7861), 4, + ACTIONS(7865), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121647] = 3, + [121710] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4251), 1, + STATE(4253), 1, sym_comment, - ACTIONS(7863), 4, + ACTIONS(7867), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121660] = 3, + [121723] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4252), 1, + STATE(4254), 1, sym_comment, - ACTIONS(7865), 4, + ACTIONS(7869), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121673] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACE, - ACTIONS(1018), 1, - sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(4253), 1, - sym_comment, - [121692] = 3, + [121736] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4254), 1, + STATE(4255), 1, sym_comment, - ACTIONS(7002), 4, + ACTIONS(6990), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [121705] = 5, + [121749] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4256), 1, + sym_comment, + ACTIONS(1545), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [121762] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7812), 1, + ACTIONS(7813), 1, anon_sym_DOT_DOT2, - ACTIONS(7867), 1, + ACTIONS(7871), 1, anon_sym_LBRACE, - STATE(4255), 1, + STATE(4257), 1, sym_comment, - ACTIONS(7814), 2, + ACTIONS(7815), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121722] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(7633), 1, - anon_sym_RBRACE, - ACTIONS(7635), 1, - sym__entry_separator, - STATE(4256), 1, - sym_comment, - STATE(4631), 1, - sym__expr_parenthesized_immediate, - [121741] = 3, + [121779] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4257), 1, + STATE(4258), 1, sym_comment, - ACTIONS(7869), 4, + ACTIONS(7873), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121754] = 5, + [121792] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7871), 1, - anon_sym_DQUOTE, - STATE(4089), 1, - aux_sym_string_content_repeat1, - STATE(4258), 1, + ACTIONS(4268), 1, + sym__entry_separator, + ACTIONS(7851), 1, + anon_sym_LBRACK, + ACTIONS(7875), 1, + anon_sym_RBRACK, + STATE(1868), 1, + aux_sym__types_body_repeat2, + STATE(4259), 1, sym_comment, - ACTIONS(7528), 2, - sym__escaped_str_content, - sym_escape_sequence, - [121771] = 3, + [121811] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4259), 1, + STATE(4260), 1, sym_comment, - ACTIONS(7873), 4, + ACTIONS(7877), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121784] = 6, + [121824] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, + ACTIONS(6514), 1, anon_sym_LPAREN2, - ACTIONS(7875), 1, - anon_sym_RBRACK, - ACTIONS(7877), 1, - sym__entry_separator, - STATE(4260), 1, - sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [121803] = 5, - ACTIONS(3), 1, - anon_sym_POUND, ACTIONS(7879), 1, anon_sym_RBRACK, - STATE(3371), 1, - aux_sym_parameter_repeat2, + ACTIONS(7881), 1, + sym__entry_separator, STATE(4261), 1, sym_comment, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - [121820] = 6, + STATE(5020), 1, + sym__expr_parenthesized_immediate, + [121843] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, + ACTIONS(2640), 1, sym__entry_separator, - ACTIONS(2637), 1, + ACTIONS(2642), 1, anon_sym_RBRACK, - ACTIONS(2639), 1, + ACTIONS(2644), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2646), 1, sym__unquoted_pattern_in_list, STATE(4262), 1, sym_comment, - [121839] = 6, + [121862] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1619), 1, + ACTIONS(6514), 1, + anon_sym_LPAREN2, + ACTIONS(7883), 1, anon_sym_RBRACK, - ACTIONS(1706), 1, + ACTIONS(7885), 1, sym__entry_separator, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, STATE(4263), 1, sym_comment, - [121858] = 5, + STATE(5020), 1, + sym__expr_parenthesized_immediate, + [121881] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4264), 1, + sym_comment, + ACTIONS(7351), 4, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + anon_sym_AT, + [121894] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(1613), 1, + anon_sym_RBRACK, + ACTIONS(1706), 1, sym__entry_separator, - ACTIONS(6222), 1, + ACTIONS(2557), 1, + anon_sym_LPAREN2, + ACTIONS(2559), 1, sym__unquoted_pattern_in_list, - STATE(4264), 1, + STATE(4265), 1, sym_comment, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [121875] = 3, + [121913] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7887), 1, + anon_sym_LPAREN, + STATE(4266), 1, + sym_comment, + ACTIONS(7889), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [121928] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4265), 1, + ACTIONS(7042), 1, + anon_sym_LBRACK, + ACTIONS(7044), 1, + anon_sym_LPAREN, + STATE(3768), 1, + sym_parameter_parens, + STATE(3769), 1, + sym_parameter_bracks, + STATE(4267), 1, sym_comment, - ACTIONS(7751), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121888] = 3, + [121947] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(4266), 1, + ACTIONS(960), 1, + sym__entry_separator, + ACTIONS(6319), 1, + sym__unquoted_pattern_in_list, + STATE(4268), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(860), 2, anon_sym_RBRACK, + anon_sym_DOT_DOT, + [121964] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5107), 1, + anon_sym_LPAREN2, + ACTIONS(7647), 1, + anon_sym_RBRACE, + ACTIONS(7649), 1, sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [121901] = 6, + STATE(4269), 1, + sym_comment, + STATE(4684), 1, + sym__expr_parenthesized_immediate, + [121983] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + STATE(4270), 1, + sym_comment, + ACTIONS(5249), 4, + ts_builtin_sym_end, sym__newline, - ACTIONS(3778), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3028), 1, - sym_block, - STATE(4267), 1, - sym_comment, - [121920] = 3, + [121996] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4268), 1, + STATE(4271), 1, sym_comment, - ACTIONS(4376), 4, + ACTIONS(4444), 4, sym__newline, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_DOT_DOT, - [121933] = 3, + [122009] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4269), 1, + ACTIONS(7813), 1, + anon_sym_DOT_DOT2, + ACTIONS(7891), 1, + anon_sym_LBRACE, + STATE(4272), 1, sym_comment, - ACTIONS(7881), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121946] = 3, + ACTIONS(7815), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122026] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4270), 1, + ACTIONS(447), 1, + ts_builtin_sym_end, + STATE(1373), 1, + aux_sym__block_body_repeat1, + STATE(4273), 1, sym_comment, - ACTIONS(7883), 4, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121959] = 6, + [122043] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3069), 1, - sym_block, - STATE(4267), 1, - aux_sym__repeat_newline, - STATE(4271), 1, + STATE(4274), 1, sym_comment, - [121978] = 6, + ACTIONS(7893), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122056] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3071), 1, + STATE(2987), 1, sym_block, - STATE(4272), 1, + STATE(4275), 1, sym_comment, - [121997] = 6, - ACTIONS(3), 1, + STATE(4279), 1, + aux_sym__repeat_newline, + [122075] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7895), 1, anon_sym_LPAREN, - STATE(3768), 1, - sym_parameter_parens, - STATE(3769), 1, - sym_parameter_bracks, - STATE(4273), 1, + STATE(4276), 1, sym_comment, - [122016] = 3, + ACTIONS(7897), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [122090] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(4274), 1, + STATE(4277), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(1530), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [122029] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5804), 1, - sym__entry_separator, - ACTIONS(5806), 1, - anon_sym_RBRACE, - STATE(4275), 1, - sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [122048] = 3, + [122103] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4276), 1, - sym_comment, - ACTIONS(5241), 4, - ts_builtin_sym_end, + ACTIONS(2905), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(3779), 1, anon_sym_LBRACE, - [122061] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5808), 1, - sym__entry_separator, - ACTIONS(5810), 1, - anon_sym_RBRACE, - STATE(4277), 1, - sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [122080] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7798), 1, - sym__space, - STATE(4198), 1, - aux_sym_attribute_repeat1, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(2989), 1, + sym_block, STATE(4278), 1, sym_comment, - ACTIONS(7885), 2, - sym__newline, - anon_sym_SEMI, - [122097] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - STATE(3753), 1, - sym_parameter_parens, - STATE(3754), 1, - sym_parameter_bracks, - STATE(4279), 1, - sym_comment, - [122116] = 6, + [122122] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(3040), 1, - sym_block, - STATE(4272), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(4280), 1, + STATE(3012), 1, + sym_block, + STATE(4279), 1, sym_comment, - [122135] = 3, - ACTIONS(3), 1, + [122141] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4281), 1, + ACTIONS(6514), 1, + anon_sym_LPAREN2, + ACTIONS(7434), 1, + anon_sym_RBRACK, + ACTIONS(7436), 1, + sym__entry_separator, + STATE(4280), 1, sym_comment, - ACTIONS(6115), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT2, - anon_sym_LBRACE, - [122148] = 4, + STATE(4726), 1, + sym__expr_parenthesized_immediate, + [122160] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3077), 1, + ACTIONS(3072), 1, anon_sym_RPAREN, - ACTIONS(7887), 2, + ACTIONS(7899), 2, sym__newline, anon_sym_SEMI, - STATE(4282), 2, + STATE(4281), 2, sym_comment, aux_sym__block_body_repeat1, - [122163] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4283), 1, - sym_comment, - ACTIONS(7890), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122176] = 4, + [122175] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4284), 1, - sym_comment, - ACTIONS(7892), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7894), 2, + ACTIONS(5107), 1, anon_sym_LPAREN2, + ACTIONS(5836), 1, sym__entry_separator, - [122191] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4285), 1, + ACTIONS(5838), 1, + anon_sym_RBRACE, + STATE(4282), 1, sym_comment, - ACTIONS(7896), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122204] = 6, + STATE(4901), 1, + sym__expr_parenthesized_immediate, + [122194] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, + STATE(4283), 1, + sym_comment, + ACTIONS(1810), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2569), 1, + ACTIONS(1812), 2, anon_sym_RBRACK, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, sym__unquoted_pattern_in_list, - STATE(4286), 1, - sym_comment, - [122223] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4287), 1, - sym_comment, - ACTIONS(7898), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122236] = 3, + [122209] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4288), 1, + STATE(4284), 1, sym_comment, - ACTIONS(7900), 4, + ACTIONS(7056), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122249] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4289), 1, - sym_comment, - ACTIONS(7902), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122262] = 5, + [122222] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(5107), 1, + anon_sym_LPAREN2, + ACTIONS(5840), 1, sym__entry_separator, - STATE(2234), 1, - aux_sym__types_body_repeat2, - STATE(4290), 1, + ACTIONS(5842), 1, + anon_sym_RBRACE, + STATE(4285), 1, sym_comment, - ACTIONS(7315), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122279] = 4, + STATE(4901), 1, + sym__expr_parenthesized_immediate, + [122241] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4291), 1, + STATE(4286), 1, sym_comment, ACTIONS(1726), 2, anon_sym_LPAREN2, @@ -238897,23 +238907,49 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1728), 2, anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [122294] = 4, + [122256] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7042), 1, + anon_sym_LBRACK, + ACTIONS(7044), 1, + anon_sym_LPAREN, + STATE(3754), 1, + sym_parameter_parens, + STATE(3755), 1, + sym_parameter_bracks, + STATE(4287), 1, + sym_comment, + [122275] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7904), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - STATE(4292), 1, + STATE(4288), 1, sym_comment, - ACTIONS(7906), 3, + ACTIONS(7904), 3, sym_escaped_interpolated_content, anon_sym_DQUOTE2, sym_inter_escape_sequence, + [122290] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2604), 1, + sym__entry_separator, + ACTIONS(2606), 1, + anon_sym_RBRACK, + ACTIONS(2622), 1, + anon_sym_LPAREN2, + ACTIONS(2624), 1, + sym__unquoted_pattern_in_list, + STATE(4289), 1, + sym_comment, [122309] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4293), 1, + STATE(4290), 1, sym_comment, - ACTIONS(7908), 4, + ACTIONS(7906), 4, anon_sym_if, sym__newline, anon_sym_PIPE, @@ -238921,181 +238957,221 @@ static const uint16_t ts_small_parse_table[] = { [122322] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4294), 1, + STATE(4291), 1, sym_comment, - ACTIONS(7910), 4, + ACTIONS(7908), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122335] = 5, + [122335] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7708), 1, + anon_sym_LBRACK, + ACTIONS(7710), 1, + anon_sym_LPAREN, + STATE(3989), 1, + sym_parameter_parens, + STATE(3990), 1, + sym_parameter_bracks, + STATE(4292), 1, + sym_comment, + [122354] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7315), 1, + anon_sym_RPAREN, + STATE(4281), 1, + aux_sym__block_body_repeat1, + STATE(4293), 1, + sym_comment, + ACTIONS(7677), 2, + sym__newline, + anon_sym_SEMI, + [122371] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2559), 1, + sym__unquoted_pattern, + STATE(4294), 1, + sym_comment, + ACTIONS(1706), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [122386] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4295), 1, + sym_comment, + ACTIONS(7910), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [122399] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4727), 1, sym__entry_separator, STATE(2235), 1, aux_sym__types_body_repeat2, - STATE(4295), 1, + STATE(4296), 1, sym_comment, - ACTIONS(7912), 2, + ACTIONS(7317), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [122352] = 5, + [122416] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4727), 1, sym__entry_separator, STATE(2236), 1, aux_sym__types_body_repeat2, - STATE(4296), 1, + STATE(4297), 1, sym_comment, ACTIONS(7912), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [122369] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4297), 1, - sym_comment, - ACTIONS(7914), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122382] = 6, + [122433] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(4727), 1, sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7916), 1, - anon_sym_RBRACE, - STATE(1480), 1, + STATE(2237), 1, aux_sym__types_body_repeat2, STATE(4298), 1, sym_comment, - [122401] = 3, + ACTIONS(7912), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [122450] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(2972), 1, + sym_block, + STATE(4278), 1, + aux_sym__repeat_newline, STATE(4299), 1, sym_comment, - ACTIONS(7204), 4, + [122469] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4300), 1, + sym_comment, + ACTIONS(7914), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122414] = 6, + [122482] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1621), 1, sym__entry_separator, - ACTIONS(1629), 1, + ACTIONS(1623), 1, anon_sym_COLON2, - ACTIONS(7918), 1, + ACTIONS(7916), 1, anon_sym_RBRACE, - STATE(1484), 1, + STATE(1479), 1, aux_sym__types_body_repeat2, - STATE(4300), 1, - sym_comment, - [122433] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, STATE(4301), 1, sym_comment, - ACTIONS(1706), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [122448] = 3, + [122501] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4302), 1, sym_comment, - ACTIONS(7920), 4, + ACTIONS(7918), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [122461] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4303), 1, - sym_comment, - ACTIONS(1870), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1872), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [122476] = 3, + [122514] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4304), 1, + STATE(4303), 1, sym_comment, - ACTIONS(7922), 4, + ACTIONS(7795), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122489] = 5, + [122527] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3114), 1, - sym__blosure, - STATE(4305), 1, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(7920), 1, + anon_sym_LBRACK, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(4304), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [122506] = 4, + STATE(4981), 1, + sym_val_list, + [122546] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4306), 1, + STATE(4305), 1, sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, + ACTIONS(1854), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(5924), 2, + ACTIONS(1856), 2, anon_sym_RBRACK, - anon_sym_GT2, - [122521] = 3, + sym__unquoted_pattern_in_list, + [122561] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4307), 1, + ACTIONS(7232), 1, + anon_sym_LBRACE, + STATE(3123), 1, + sym__blosure, + STATE(4306), 1, sym_comment, - ACTIONS(7924), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122534] = 5, + STATE(3119), 2, + sym_block, + sym_val_closure, + [122578] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5328), 1, + ACTIONS(1621), 1, + sym__entry_separator, + ACTIONS(1623), 1, anon_sym_COLON2, + ACTIONS(7922), 1, + anon_sym_RBRACE, + STATE(1481), 1, + aux_sym__types_body_repeat2, + STATE(4307), 1, + sym_comment, + [122597] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4308), 1, sym_comment, - STATE(4319), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5322), 2, + ACTIONS(7795), 4, sym__newline, - sym__space, - [122551] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122610] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4309), 1, sym_comment, - ACTIONS(7210), 4, - anon_sym_if, + ACTIONS(7924), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122564] = 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122623] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4310), 1, @@ -239106,7 +239182,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1728), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [122579] = 3, + [122638] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4311), 1, @@ -239116,835 +239192,837 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122592] = 6, + [122651] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3041), 1, - sym_block, STATE(4312), 1, sym_comment, - [122611] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4313), 1, - sym_comment, ACTIONS(7928), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122624] = 4, - ACTIONS(3), 1, + [122664] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4314), 1, + ACTIONS(1570), 1, + sym__entry_separator, + STATE(4313), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122639] = 3, + ACTIONS(1568), 3, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_DOT_DOT, + [122679] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4315), 1, + STATE(4314), 1, sym_comment, ACTIONS(7930), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122652] = 3, + [122692] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4315), 1, + sym_comment, + ACTIONS(1810), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1812), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [122707] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4316), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(7932), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122665] = 4, + [122720] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4317), 1, sym_comment, - ACTIONS(1870), 2, + ACTIONS(1854), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 2, + ACTIONS(1856), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [122680] = 4, - ACTIONS(103), 1, + [122735] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1558), 1, - sym__entry_separator, STATE(4318), 1, sym_comment, - ACTIONS(1556), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [122695] = 5, - ACTIONS(103), 1, + ACTIONS(7934), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122748] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7932), 1, - anon_sym_COLON2, - STATE(4181), 1, - aux_sym_pipe_element_parenthesized_repeat1, STATE(4319), 1, sym_comment, - ACTIONS(5322), 2, + ACTIONS(7934), 4, sym__newline, - sym__space, - [122712] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122761] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4320), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(7936), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122725] = 3, + [122774] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4321), 1, sym_comment, - ACTIONS(7804), 4, + ACTIONS(7938), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122738] = 3, + [122787] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4322), 1, sym_comment, - ACTIONS(7804), 4, + ACTIONS(7940), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122751] = 5, - ACTIONS(3), 1, + [122800] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7934), 1, - anon_sym_DOT_DOT2, + ACTIONS(5376), 1, + anon_sym_COLON2, + STATE(4058), 1, + aux_sym_pipe_element_parenthesized_repeat1, STATE(4323), 1, sym_comment, - ACTIONS(7936), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122768] = 3, + ACTIONS(5370), 2, + sym__newline, + sym__space, + [122817] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4324), 1, sym_comment, - ACTIONS(7938), 4, + ACTIONS(7936), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122781] = 3, + [122830] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1606), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7942), 1, + anon_sym_DOT_DOT2, STATE(4325), 1, sym_comment, - ACTIONS(7940), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122794] = 3, + ACTIONS(7944), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122847] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4326), 1, sym_comment, - ACTIONS(7942), 4, + ACTIONS(7946), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122807] = 3, + [122860] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4327), 1, sym_comment, - ACTIONS(7944), 4, + ACTIONS(7948), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122820] = 3, + [122873] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4328), 1, sym_comment, - ACTIONS(7946), 4, + ACTIONS(7950), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122833] = 3, + [122886] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4329), 1, sym_comment, - ACTIONS(7948), 4, + ACTIONS(7952), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122846] = 3, + [122899] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4330), 1, sym_comment, - ACTIONS(7938), 4, + ACTIONS(7954), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122859] = 3, + [122912] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4331), 1, sym_comment, - ACTIONS(7950), 4, + ACTIONS(7956), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122872] = 3, + [122925] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4332), 1, sym_comment, - ACTIONS(4078), 4, + ACTIONS(4083), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [122885] = 3, + [122938] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4333), 1, sym_comment, - ACTIONS(4080), 4, + ACTIONS(4093), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [122898] = 3, + [122951] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4334), 1, sym_comment, - ACTIONS(7952), 4, + ACTIONS(7958), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122911] = 4, - ACTIONS(103), 1, + [122964] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__entry_separator, STATE(4335), 1, sym_comment, - ACTIONS(1868), 3, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(7960), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [122926] = 3, - ACTIONS(3), 1, + [122977] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1858), 1, + sym__entry_separator, STATE(4336), 1, sym_comment, - ACTIONS(7954), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1860), 3, + anon_sym_RBRACK, + anon_sym_GT2, anon_sym_RBRACE, - [122939] = 3, + [122992] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4337), 1, sym_comment, - ACTIONS(7956), 4, + ACTIONS(7958), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122952] = 3, + [123005] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4338), 1, sym_comment, - ACTIONS(7958), 4, + ACTIONS(7962), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122965] = 3, - ACTIONS(3), 1, + [123018] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4339), 1, sym_comment, - ACTIONS(7960), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122978] = 3, + ACTIONS(5887), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(5891), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [123033] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4340), 1, sym_comment, - ACTIONS(7954), 4, + ACTIONS(7940), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122991] = 3, + [123046] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4341), 1, sym_comment, - ACTIONS(7952), 4, + ACTIONS(7964), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123004] = 4, + [123059] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, STATE(4342), 1, sym_comment, - ACTIONS(1726), 3, + ACTIONS(7966), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123019] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123072] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4343), 1, sym_comment, - ACTIONS(6936), 4, + ACTIONS(7962), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123085] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4344), 1, + sym_comment, + ACTIONS(6985), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [123032] = 5, + [123098] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7962), 1, + ACTIONS(1728), 1, + sym__unquoted_pattern, + STATE(4345), 1, + sym_comment, + ACTIONS(1726), 3, sym__newline, - ACTIONS(7965), 1, anon_sym_PIPE, - ACTIONS(7968), 1, anon_sym_EQ_GT, - STATE(4344), 2, - sym_comment, - aux_sym_match_pattern_repeat1, - [123049] = 3, + [123113] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4345), 1, + STATE(4346), 1, sym_comment, - ACTIONS(7970), 4, + ACTIONS(7934), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123062] = 3, + [123126] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4346), 1, + STATE(4347), 1, sym_comment, - ACTIONS(7970), 4, + ACTIONS(7934), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123075] = 3, + [123139] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4347), 1, + STATE(4348), 1, sym_comment, - ACTIONS(7827), 4, + ACTIONS(7700), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123088] = 3, + [123152] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4348), 1, + STATE(4349), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(7700), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123101] = 4, + [123165] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(1812), 1, sym__unquoted_pattern, - STATE(4349), 1, + STATE(4350), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(1810), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [123116] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACK, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(4350), 1, - sym_comment, - [123135] = 3, + [123180] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4351), 1, sym_comment, - ACTIONS(7696), 4, + ACTIONS(7679), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123148] = 6, + [123193] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(3214), 1, + STATE(3281), 1, sym_block, STATE(4352), 1, sym_comment, - STATE(4356), 1, + STATE(4357), 1, aux_sym__repeat_newline, - [123167] = 4, + [123212] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(1856), 1, sym__unquoted_pattern, STATE(4353), 1, sym_comment, - ACTIONS(1870), 3, + ACTIONS(1854), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [123182] = 6, + [123227] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(7819), 1, + sym__space, + STATE(4215), 1, + aux_sym_attribute_repeat1, + STATE(4354), 1, + sym_comment, + ACTIONS(7968), 2, + sym__newline, + anon_sym_SEMI, + [123244] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1936), 1, sym__entry_separator, - ACTIONS(996), 1, + ACTIONS(1938), 1, anon_sym_RBRACK, - ACTIONS(2583), 1, + ACTIONS(1940), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, - STATE(4354), 1, + STATE(4355), 1, sym_comment, - [123201] = 6, + [123263] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(3317), 1, + STATE(3285), 1, sym_block, - STATE(4355), 1, + STATE(4356), 1, sym_comment, STATE(4358), 1, aux_sym__repeat_newline, - [123220] = 6, + [123282] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(3318), 1, + STATE(3286), 1, sym_block, - STATE(4356), 1, - sym_comment, - [123239] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACK, - ACTIONS(1018), 1, - sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, STATE(4357), 1, sym_comment, - [123258] = 6, + [123301] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(3320), 1, + STATE(3288), 1, sym_block, STATE(4358), 1, sym_comment, - [123277] = 6, + [123320] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7970), 1, + sym__newline, + ACTIONS(7973), 1, + anon_sym_PIPE, + ACTIONS(7976), 1, + anon_sym_EQ_GT, + STATE(4359), 2, + sym_comment, + aux_sym_match_pattern_repeat1, + [123337] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(1002), 1, + anon_sym_RBRACK, + ACTIONS(1010), 1, sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - ACTIONS(7972), 1, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern_in_list, + STATE(4360), 1, + sym_comment, + [123356] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(994), 1, anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(4359), 1, + ACTIONS(1018), 1, + sym__entry_separator, + ACTIONS(2658), 1, + anon_sym_LPAREN2, + ACTIONS(2660), 1, + sym__unquoted_pattern_in_list, + STATE(4361), 1, sym_comment, - [123296] = 6, + [123375] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(3183), 1, + STATE(3192), 1, sym_block, - STATE(4360), 1, - sym_comment, STATE(4362), 1, + sym_comment, + STATE(4364), 1, aux_sym__repeat_newline, - [123315] = 6, + [123394] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(3184), 1, + STATE(3193), 1, sym_block, - STATE(4361), 1, - sym_comment, STATE(4363), 1, + sym_comment, + STATE(4365), 1, aux_sym__repeat_newline, - [123334] = 6, + [123413] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(3185), 1, + STATE(3194), 1, sym_block, - STATE(4362), 1, + STATE(4364), 1, sym_comment, - [123353] = 6, + [123432] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2905), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(656), 1, aux_sym__repeat_newline, - STATE(3187), 1, + STATE(3196), 1, sym_block, - STATE(4363), 1, - sym_comment, - [123372] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4364), 1, + STATE(4365), 1, sym_comment, - ACTIONS(7974), 4, - anon_sym_EQ, - anon_sym_in, - sym__newline, - anon_sym_COLON, - [123385] = 5, + [123451] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4268), 1, sym__entry_separator, - STATE(2232), 1, + ACTIONS(7851), 1, + anon_sym_LBRACK, + ACTIONS(7978), 1, + anon_sym_RBRACK, + STATE(1868), 1, aux_sym__types_body_repeat2, - STATE(4365), 1, + STATE(4366), 1, sym_comment, - ACTIONS(7448), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [123402] = 3, + [123470] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4366), 1, + STATE(4367), 1, sym_comment, - ACTIONS(7032), 4, + ACTIONS(7026), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [123415] = 5, - ACTIONS(103), 1, + [123483] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7792), 1, - anon_sym_LBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(4367), 1, + STATE(4368), 1, sym_comment, - [123431] = 3, + ACTIONS(7958), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [123495] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(4368), 1, + STATE(4369), 1, sym_comment, - ACTIONS(1860), 3, + ACTIONS(1872), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [123443] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4369), 1, - sym_comment, - ACTIONS(7976), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123455] = 3, + [123507] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4370), 1, sym_comment, - ACTIONS(7978), 3, + ACTIONS(7934), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [123467] = 3, - ACTIONS(3), 1, + [123519] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5271), 1, + sym__entry_separator, STATE(4371), 1, sym_comment, - ACTIONS(7980), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123479] = 3, + ACTIONS(5273), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [123533] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4372), 1, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7837), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [123491] = 5, - ACTIONS(3), 1, + [123545] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7984), 1, - anon_sym_export, - ACTIONS(7986), 1, - anon_sym_def, - ACTIONS(7988), 1, - anon_sym_extern, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(3133), 1, + sym_block, STATE(4373), 1, sym_comment, - [123507] = 5, + [123561] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(7990), 1, - anon_sym_RBRACK, - STATE(2110), 1, - aux_sym__types_body_repeat2, + ACTIONS(7980), 1, + anon_sym_POUND_BANG, + ACTIONS(7982), 1, + sym__newline, STATE(4374), 1, sym_comment, - [123523] = 4, + STATE(4586), 1, + aux_sym__repeat_newline, + [123577] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7992), 1, - anon_sym_BANG, STATE(4375), 1, sym_comment, - ACTIONS(1440), 2, + ACTIONS(7984), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [123589] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7986), 1, + anon_sym_BANG, + STATE(4376), 1, + sym_comment, + ACTIONS(1468), 2, sym__table_head_separator, anon_sym_DOT2, - [123537] = 3, + [123603] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4376), 1, + STATE(4377), 1, sym_comment, - ACTIONS(7690), 3, + ACTIONS(7934), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123549] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2563), 1, - sym__entry_separator, - STATE(4377), 1, - sym_comment, - ACTIONS(2565), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [123563] = 5, + [123615] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7994), 1, + ACTIONS(7988), 1, anon_sym_RBRACK, - ACTIONS(7996), 1, + ACTIONS(7990), 1, anon_sym_DOT_DOT, STATE(4378), 1, sym_comment, - STATE(4863), 1, + STATE(4850), 1, sym__match_pattern_rest, - [123579] = 3, + [123631] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7992), 1, + anon_sym_RBRACK, + ACTIONS(7994), 1, + sym_hex_digit, STATE(4379), 1, sym_comment, - ACTIONS(7883), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123591] = 4, - ACTIONS(103), 1, + STATE(4418), 1, + aux_sym_val_binary_repeat1, + [123647] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2571), 1, - sym__entry_separator, + ACTIONS(7297), 1, + anon_sym_if, + ACTIONS(7996), 1, + anon_sym_EQ_GT, STATE(4380), 1, sym_comment, - ACTIONS(2573), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [123605] = 5, - ACTIONS(3), 1, + STATE(4956), 1, + sym_match_guard, + [123663] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7998), 1, - anon_sym_RBRACK, - ACTIONS(8000), 1, - sym_hex_digit, + ACTIONS(2654), 1, + sym__entry_separator, STATE(4381), 1, sym_comment, - STATE(4498), 1, - aux_sym_val_binary_repeat1, - [123621] = 3, - ACTIONS(3), 1, + ACTIONS(2656), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [123677] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2539), 1, + sym__entry_separator, STATE(4382), 1, sym_comment, - ACTIONS(2092), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123633] = 3, + ACTIONS(2541), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [123691] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4383), 1, sym_comment, - ACTIONS(7861), 3, - ts_builtin_sym_end, + ACTIONS(7998), 3, sym__newline, anon_sym_SEMI, - [123645] = 3, + anon_sym_RPAREN, + [123703] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7994), 1, + sym_hex_digit, + ACTIONS(8000), 1, + anon_sym_RBRACK, STATE(4384), 1, sym_comment, - ACTIONS(7881), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123657] = 3, + STATE(4504), 1, + aux_sym_val_binary_repeat1, + [123719] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4385), 1, sym_comment, - ACTIONS(7804), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123669] = 5, - ACTIONS(103), 1, + ACTIONS(2102), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [123731] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8002), 1, - anon_sym_RBRACE, - STATE(1464), 1, - aux_sym__types_body_repeat2, STATE(4386), 1, sym_comment, - [123685] = 3, + ACTIONS(8002), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [123743] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4387), 1, sym_comment, - ACTIONS(7690), 3, - ts_builtin_sym_end, + ACTIONS(8004), 3, sym__newline, anon_sym_SEMI, - [123697] = 5, + anon_sym_RPAREN, + [123755] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(4704), 1, sym__entry_separator, - ACTIONS(8004), 1, + ACTIONS(8006), 1, anon_sym_RBRACE, - STATE(1467), 1, + STATE(2226), 1, aux_sym__types_body_repeat2, STATE(4388), 1, sym_comment, - [123713] = 3, + [123771] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8008), 1, + anon_sym_export, + ACTIONS(8010), 1, + anon_sym_def, + ACTIONS(8012), 1, + anon_sym_extern, STATE(4389), 1, sym_comment, - ACTIONS(7863), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123725] = 3, + [123787] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4390), 1, @@ -239953,14926 +240031,14940 @@ static const uint16_t ts_small_parse_table[] = { ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123737] = 5, + [123799] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3454), 1, - sym__newline, - ACTIONS(3456), 1, - sym__space, - STATE(1398), 1, - aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(1621), 1, + sym__entry_separator, + ACTIONS(8014), 1, + anon_sym_RBRACE, + STATE(1473), 1, + aux_sym__types_body_repeat2, STATE(4391), 1, sym_comment, - [123753] = 3, - ACTIONS(3), 1, + [123815] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1621), 1, + sym__entry_separator, + ACTIONS(8016), 1, + anon_sym_RBRACE, + STATE(1464), 1, + aux_sym__types_body_repeat2, STATE(4392), 1, sym_comment, - ACTIONS(7839), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123765] = 5, - ACTIONS(103), 1, + [123831] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4393), 1, + ACTIONS(8018), 1, + anon_sym_RBRACK, + ACTIONS(8020), 1, + sym_hex_digit, + STATE(4393), 2, sym_comment, - STATE(4416), 1, - sym_block, - [123781] = 3, + aux_sym_val_binary_repeat1, + [123845] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4394), 1, sym_comment, - ACTIONS(7938), 3, + ACTIONS(7934), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123793] = 3, + [123857] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4395), 1, sym_comment, - ACTIONS(7938), 3, + ACTIONS(7825), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123805] = 4, - ACTIONS(3), 1, + [123869] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1382), 1, - aux_sym__block_body_repeat1, + ACTIONS(4437), 1, + sym__entry_separator, + ACTIONS(8023), 1, + anon_sym_RBRACK, + STATE(2002), 1, + aux_sym__types_body_repeat2, STATE(4396), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - [123819] = 3, + [123885] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4397), 1, sym_comment, - ACTIONS(7804), 3, + ACTIONS(7867), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123831] = 4, + [123897] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7992), 1, + ACTIONS(7986), 1, anon_sym_QMARK2, STATE(4398), 1, sym_comment, - ACTIONS(1440), 2, + ACTIONS(1468), 2, sym__table_head_separator, anon_sym_DOT2, - [123845] = 3, + [123911] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4399), 1, sym_comment, - ACTIONS(7902), 3, + ACTIONS(7869), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123857] = 3, - ACTIONS(3), 1, + [123923] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(3440), 1, + sym__newline, + ACTIONS(3442), 1, + sym__space, + STATE(1395), 1, + aux_sym_pipe_element_parenthesized_repeat1, STATE(4400), 1, sym_comment, - ACTIONS(2084), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123869] = 5, + [123939] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5779), 1, - anon_sym_EQ, - STATE(3239), 1, - sym_param_completer, STATE(4401), 1, sym_comment, - [123885] = 5, - ACTIONS(3), 1, + ACTIONS(7841), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [123951] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8006), 1, - anon_sym_GT2, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3777), 1, + anon_sym_LBRACE, STATE(4402), 1, sym_comment, - STATE(5004), 1, - sym_param_completer, - [123901] = 3, + STATE(4447), 1, + sym_block, + [123967] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4403), 1, sym_comment, - ACTIONS(7924), 3, + ACTIONS(7795), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123913] = 5, + [123979] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3362), 1, - anon_sym_SEMI, - STATE(540), 1, - aux_sym__repeat_newline, STATE(4404), 1, sym_comment, - [123929] = 3, - ACTIONS(3), 1, + ACTIONS(7934), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [123991] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4437), 1, + sym__entry_separator, + ACTIONS(8025), 1, + anon_sym_RBRACK, + STATE(2004), 1, + aux_sym__types_body_repeat2, STATE(4405), 1, sym_comment, - ACTIONS(8008), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123941] = 3, + [124007] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4406), 1, sym_comment, - ACTIONS(7833), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123953] = 5, - ACTIONS(103), 1, + ACTIONS(2110), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124019] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(8027), 1, + anon_sym_GT2, STATE(4407), 1, sym_comment, - STATE(4444), 1, - sym_block, - [123969] = 5, + STATE(4986), 1, + sym_param_completer, + [124035] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5779), 1, - anon_sym_EQ, - STATE(3241), 1, - sym_param_completer, STATE(4408), 1, sym_comment, - [123985] = 3, + ACTIONS(7823), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124047] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4409), 1, sym_comment, - ACTIONS(7950), 3, + ACTIONS(7698), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [123997] = 3, - ACTIONS(3), 1, + [124059] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7902), 1, + anon_sym_LPAREN, STATE(4410), 1, sym_comment, - ACTIONS(7835), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124009] = 4, + ACTIONS(7904), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [124073] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8012), 1, - anon_sym_COMMA, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(6037), 1, + anon_sym_EQ, + STATE(3304), 1, + sym_param_completer, STATE(4411), 1, sym_comment, - ACTIONS(8010), 2, - anon_sym_RBRACK, - sym_hex_digit, - [124023] = 3, + [124089] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4412), 1, sym_comment, - ACTIONS(7910), 3, + ACTIONS(7698), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124035] = 5, + [124101] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8014), 1, - anon_sym_RBRACK, STATE(4413), 1, sym_comment, - STATE(4467), 1, - aux_sym_val_binary_repeat1, - [124051] = 4, - ACTIONS(103), 1, + ACTIONS(7926), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124113] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7960), 1, - sym__entry_separator, STATE(4414), 1, sym_comment, - ACTIONS(6947), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124065] = 3, - ACTIONS(3), 1, + ACTIONS(7795), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124125] = 3, + ACTIONS(103), 1, anon_sym_POUND, STATE(4415), 1, sym_comment, - ACTIONS(7954), 3, - ts_builtin_sym_end, + ACTIONS(846), 3, sym__newline, - anon_sym_SEMI, - [124077] = 3, + sym__space, + anon_sym_COLON2, + [124137] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8031), 1, + anon_sym_COMMA, STATE(4416), 1, sym_comment, - ACTIONS(7869), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124089] = 3, - ACTIONS(3), 1, + ACTIONS(8029), 2, + anon_sym_RBRACK, + sym_hex_digit, + [124151] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7725), 1, + sym__entry_separator, STATE(4417), 1, sym_comment, - ACTIONS(7954), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124101] = 3, + ACTIONS(6957), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124165] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7994), 1, + sym_hex_digit, + ACTIONS(8033), 1, + anon_sym_RBRACK, + STATE(4393), 1, + aux_sym_val_binary_repeat1, STATE(4418), 1, sym_comment, - ACTIONS(7696), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124113] = 3, + [124181] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4419), 1, sym_comment, - ACTIONS(7696), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124125] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4420), 1, - sym_comment, - ACTIONS(7675), 3, + ACTIONS(7936), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124137] = 3, + [124193] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(4421), 1, + STATE(4420), 1, sym_comment, - ACTIONS(2593), 3, + ACTIONS(2582), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [124149] = 3, + [124205] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4422), 1, + STATE(4421), 1, sym_comment, - ACTIONS(7675), 3, + ACTIONS(7936), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124161] = 5, + [124217] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + STATE(4422), 1, + sym_comment, + ACTIONS(7940), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(8016), 1, - anon_sym_COLON, - STATE(540), 1, - aux_sym__repeat_newline, + anon_sym_SEMI, + [124229] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4423), 1, sym_comment, - [124177] = 4, + ACTIONS(7940), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124241] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2607), 1, + ACTIONS(2596), 1, sym__entry_separator, STATE(4424), 1, sym_comment, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [124191] = 4, + [124255] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2511), 1, + ACTIONS(2600), 1, sym__entry_separator, STATE(4425), 1, sym_comment, - ACTIONS(2513), 2, + ACTIONS(2602), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [124205] = 4, + [124269] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2515), 1, + ACTIONS(2523), 1, sym__entry_separator, STATE(4426), 1, sym_comment, - ACTIONS(2517), 2, + ACTIONS(2525), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [124219] = 3, + [124283] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4427), 1, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7700), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124231] = 5, + [124295] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, - anon_sym_LBRACE, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(8018), 1, - aux_sym__immediate_decimal_token5, STATE(4428), 1, sym_comment, - [124247] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4429), 1, - sym_comment, - ACTIONS(7683), 3, + ACTIONS(7700), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124259] = 3, + [124307] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1810), 1, + anon_sym_LBRACE, + ACTIONS(1812), 1, + sym__unquoted_pattern, + ACTIONS(8035), 1, + aux_sym__immediate_decimal_token5, + STATE(4429), 1, + sym_comment, + [124323] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3777), 1, + anon_sym_LBRACE, STATE(4430), 1, sym_comment, - ACTIONS(7922), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124271] = 5, + STATE(4456), 1, + sym_block, + [124339] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8020), 1, - anon_sym_GT2, STATE(4431), 1, sym_comment, - STATE(4933), 1, - sym_param_completer, - [124287] = 3, + ACTIONS(7679), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124351] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4432), 1, sym_comment, - ACTIONS(7675), 3, + ACTIONS(7679), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124299] = 3, + [124363] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4433), 1, sym_comment, - ACTIONS(7675), 3, + ACTIONS(7679), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124311] = 3, + [124375] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4434), 1, sym_comment, - ACTIONS(7683), 3, + ACTIONS(7679), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124323] = 3, + [124387] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(8037), 1, + anon_sym_GT2, STATE(4435), 1, sym_comment, - ACTIONS(7683), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124335] = 4, - ACTIONS(103), 1, + STATE(4924), 1, + sym_param_completer, + [124403] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2537), 1, - sym__entry_separator, STATE(4436), 1, sym_comment, - ACTIONS(2539), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124349] = 3, + ACTIONS(7681), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124415] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4437), 1, sym_comment, - ACTIONS(7711), 3, + ACTIONS(7681), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124361] = 5, - ACTIONS(3), 1, + [124427] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, - anon_sym_LPAREN2, + ACTIONS(2515), 1, + sym__entry_separator, STATE(4438), 1, sym_comment, - STATE(4728), 1, - sym__expr_parenthesized_immediate, - [124377] = 5, - ACTIONS(103), 1, + ACTIONS(2517), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [124441] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(8022), 1, - anon_sym_GT2, - STATE(2376), 1, - aux_sym__types_body_repeat2, STATE(4439), 1, sym_comment, - [124393] = 3, + ACTIONS(7712), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124453] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4440), 1, sym_comment, - ACTIONS(7711), 3, + ACTIONS(7681), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124405] = 5, - ACTIONS(103), 1, + [124465] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(8024), 1, - anon_sym_GT2, - STATE(2372), 1, - aux_sym__types_body_repeat2, STATE(4441), 1, sym_comment, - [124421] = 3, + ACTIONS(7681), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124477] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4442), 1, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7712), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124433] = 3, + [124489] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(1379), 1, + aux_sym__block_body_repeat1, STATE(4443), 1, sym_comment, - ACTIONS(7713), 3, - ts_builtin_sym_end, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - [124445] = 3, + [124503] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4444), 1, sym_comment, - ACTIONS(7873), 3, + ACTIONS(7723), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124457] = 5, - ACTIONS(103), 1, + [124515] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(8026), 1, - anon_sym_GT2, - STATE(2362), 1, - aux_sym__types_body_repeat2, STATE(4445), 1, sym_comment, - [124473] = 5, + ACTIONS(7723), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124527] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(5048), 1, - sym__unquoted_pattern, STATE(4446), 1, sym_comment, - STATE(4725), 1, - sym__expr_parenthesized_immediate, - [124489] = 5, - ACTIONS(103), 1, + ACTIONS(7831), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124539] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4257), 1, - sym_block, STATE(4447), 1, sym_comment, - [124505] = 5, + ACTIONS(7873), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124551] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4962), 1, sym__entry_separator, - ACTIONS(8028), 1, + ACTIONS(8039), 1, anon_sym_GT2, - STATE(1938), 1, + STATE(2376), 1, aux_sym__types_body_repeat2, STATE(4448), 1, sym_comment, - [124521] = 5, + [124567] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8030), 1, - anon_sym_RBRACK, - ACTIONS(8033), 1, - anon_sym_DOT_DOT, - ACTIONS(8035), 1, + ACTIONS(4962), 1, sym__entry_separator, + ACTIONS(8041), 1, + anon_sym_GT2, + STATE(2372), 1, + aux_sym__types_body_repeat2, STATE(4449), 1, sym_comment, - [124537] = 5, - ACTIONS(103), 1, + [124583] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8038), 1, - anon_sym_RBRACE, - STATE(1483), 1, - aux_sym__types_body_repeat2, + ACTIONS(2905), 1, + sym__newline, + ACTIONS(8043), 1, + anon_sym_COLON, + STATE(656), 1, + aux_sym__repeat_newline, STATE(4450), 1, sym_comment, - [124553] = 5, + [124599] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(4268), 1, sym__entry_separator, - ACTIONS(8041), 1, - anon_sym_RBRACK, - STATE(2087), 1, + ACTIONS(8045), 1, + anon_sym_GT2, + STATE(1930), 1, aux_sym__types_body_repeat2, STATE(4451), 1, sym_comment, - [124569] = 4, + [124615] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2254), 1, + ACTIONS(4962), 1, sym__entry_separator, + ACTIONS(8047), 1, + anon_sym_GT2, + STATE(2377), 1, + aux_sym__types_body_repeat2, STATE(4452), 1, sym_comment, - ACTIONS(2256), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124583] = 4, + [124631] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2254), 1, + ACTIONS(8049), 1, + anon_sym_RBRACK, + ACTIONS(8052), 1, + anon_sym_DOT_DOT, + ACTIONS(8054), 1, sym__entry_separator, STATE(4453), 1, sym_comment, - ACTIONS(2256), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124597] = 4, + [124647] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5287), 1, + ACTIONS(1621), 1, sym__entry_separator, + ACTIONS(8057), 1, + anon_sym_RBRACE, + STATE(1475), 1, + aux_sym__types_body_repeat2, STATE(4454), 1, sym_comment, - ACTIONS(5289), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [124611] = 3, + [124663] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + ACTIONS(5036), 1, + sym__unquoted_pattern, STATE(4455), 1, sym_comment, - ACTIONS(7940), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124623] = 3, + STATE(4703), 1, + sym__expr_parenthesized_immediate, + [124679] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4456), 1, sym_comment, - ACTIONS(7942), 3, + ACTIONS(7877), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124635] = 3, - ACTIONS(3), 1, + [124691] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2367), 1, + sym__entry_separator, STATE(4457), 1, sym_comment, - ACTIONS(7944), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124647] = 3, - ACTIONS(3), 1, + ACTIONS(2369), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [124705] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2367), 1, + sym__entry_separator, STATE(4458), 1, sym_comment, - ACTIONS(7946), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124659] = 3, + ACTIONS(2369), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [124719] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(5813), 1, + anon_sym_EQ, + STATE(3279), 1, + sym_param_completer, STATE(4459), 1, sym_comment, - ACTIONS(7948), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124671] = 3, - ACTIONS(3), 1, + [124735] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4258), 1, + sym_block, STATE(4460), 1, sym_comment, - ACTIONS(8043), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [124683] = 4, + [124751] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8045), 1, - sym__table_head_separator, + ACTIONS(8060), 1, + anon_sym_DQUOTE, STATE(4461), 1, sym_comment, - ACTIONS(1619), 2, - anon_sym_RBRACK, - sym__entry_separator, - [124697] = 3, - ACTIONS(3), 1, + ACTIONS(8062), 2, + sym__escaped_str_content, + sym_escape_sequence, + [124765] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5227), 1, + sym__entry_separator, STATE(4462), 1, sym_comment, - ACTIONS(4625), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124709] = 3, + ACTIONS(5229), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [124779] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4463), 1, sym_comment, - ACTIONS(4629), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124721] = 4, + ACTIONS(7946), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124791] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8047), 1, + ACTIONS(8064), 1, anon_sym_GT2, STATE(4464), 1, sym_comment, - ACTIONS(8049), 2, + ACTIONS(8066), 2, anon_sym_AT2, sym__entry_separator, - [124735] = 5, + [124805] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8051), 1, - anon_sym_RBRACK, - ACTIONS(8053), 1, - anon_sym_DOT_DOT, STATE(4465), 1, sym_comment, - STATE(5010), 1, - sym__match_pattern_rest, - [124751] = 3, + ACTIONS(7948), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124817] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4466), 1, sym_comment, - ACTIONS(4633), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124763] = 4, + ACTIONS(7950), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124829] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8055), 1, - anon_sym_RBRACK, - ACTIONS(8057), 1, - sym_hex_digit, - STATE(4467), 2, + STATE(4467), 1, sym_comment, - aux_sym_val_binary_repeat1, - [124777] = 5, - ACTIONS(103), 1, + ACTIONS(7952), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124841] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4259), 1, - sym_block, STATE(4468), 1, sym_comment, - [124793] = 5, + ACTIONS(8068), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [124853] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8060), 1, - anon_sym_DOT, STATE(4469), 1, sym_comment, - [124809] = 4, - ACTIONS(103), 1, + ACTIONS(4659), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124865] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5253), 1, - sym__entry_separator, STATE(4470), 1, sym_comment, - ACTIONS(5255), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [124823] = 5, + ACTIONS(7954), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124877] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(7994), 1, sym_hex_digit, - ACTIONS(8062), 1, + ACTIONS(8070), 1, anon_sym_RBRACK, STATE(4471), 1, sym_comment, - STATE(4474), 1, + STATE(4475), 1, aux_sym_val_binary_repeat1, - [124839] = 5, - ACTIONS(103), 1, + [124893] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, + ACTIONS(1760), 1, anon_sym_LBRACE, - STATE(2986), 1, - sym_block, + ACTIONS(7084), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8072), 1, + anon_sym_DOT, STATE(4472), 1, sym_comment, - [124855] = 5, - ACTIONS(103), 1, + [124909] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, STATE(4473), 1, sym_comment, - [124871] = 5, + ACTIONS(4601), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124921] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + STATE(4474), 1, + sym_comment, + ACTIONS(4649), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124933] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7994), 1, sym_hex_digit, - ACTIONS(8064), 1, + ACTIONS(8074), 1, anon_sym_RBRACK, - STATE(4467), 1, + STATE(4393), 1, aux_sym_val_binary_repeat1, - STATE(4474), 1, + STATE(4475), 1, sym_comment, - [124887] = 5, + [124949] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1734), 1, anon_sym_LPAREN2, - ACTIONS(4969), 1, + ACTIONS(5009), 1, sym__unquoted_pattern, - STATE(4475), 1, - sym_comment, - STATE(4625), 1, - sym__expr_parenthesized_immediate, - [124903] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7898), 1, - sym__entry_separator, STATE(4476), 1, sym_comment, - ACTIONS(8066), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124917] = 4, - ACTIONS(103), 1, + STATE(4656), 1, + sym__expr_parenthesized_immediate, + [124965] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7900), 1, - sym__entry_separator, STATE(4477), 1, sym_comment, - ACTIONS(8068), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124931] = 4, + ACTIONS(7908), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [124977] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7914), 1, - sym__entry_separator, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4260), 1, + sym_block, STATE(4478), 1, sym_comment, - ACTIONS(8033), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124945] = 4, + [124993] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2258), 1, + ACTIONS(5310), 1, sym__entry_separator, STATE(4479), 1, sym_comment, - ACTIONS(2260), 2, + ACTIONS(5312), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [124959] = 4, + anon_sym_GT2, + [125007] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2262), 1, + ACTIONS(2373), 1, sym__entry_separator, STATE(4480), 1, sym_comment, - ACTIONS(2264), 2, + ACTIONS(2375), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [124973] = 3, - ACTIONS(3), 1, + [125021] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2377), 1, + sym__entry_separator, STATE(4481), 1, sym_comment, - ACTIONS(7956), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124985] = 5, + ACTIONS(2379), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125035] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(7906), 1, sym__entry_separator, - ACTIONS(8070), 1, - anon_sym_GT2, - STATE(1930), 1, - aux_sym__types_body_repeat2, STATE(4482), 1, sym_comment, - [125001] = 4, + ACTIONS(8076), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125049] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(7910), 1, sym__entry_separator, STATE(4483), 1, sym_comment, - ACTIONS(5249), 2, + ACTIONS(8078), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [125015] = 5, + anon_sym_DOT_DOT, + [125063] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(7914), 1, sym__entry_separator, - ACTIONS(8072), 1, - anon_sym_GT2, - STATE(1931), 1, - aux_sym__types_body_repeat2, STATE(4484), 1, sym_comment, - [125031] = 5, - ACTIONS(3), 1, + ACTIONS(8052), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125077] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(6616), 1, + ACTIONS(860), 1, + anon_sym_RBRACE, + ACTIONS(960), 1, + sym__entry_separator, + ACTIONS(6808), 1, sym__unquoted_pattern_in_record, STATE(4485), 1, sym_comment, - STATE(4630), 1, - sym__expr_parenthesized_immediate, - [125047] = 3, + [125093] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(5813), 1, + anon_sym_EQ, + STATE(3350), 1, + sym_param_completer, STATE(4486), 1, sym_comment, - ACTIONS(7958), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125059] = 3, + [125109] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7994), 1, + sym_hex_digit, + ACTIONS(8080), 1, + anon_sym_RBRACK, STATE(4487), 1, sym_comment, - ACTIONS(7713), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125071] = 3, - ACTIONS(3), 1, + STATE(4491), 1, + aux_sym_val_binary_repeat1, + [125125] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4268), 1, + sym__entry_separator, + ACTIONS(8082), 1, + anon_sym_GT2, + STATE(1920), 1, + aux_sym__types_body_repeat2, STATE(4488), 1, sym_comment, - ACTIONS(7713), 3, + [125141] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4489), 1, + sym_comment, + ACTIONS(7723), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125083] = 3, + [125153] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4489), 1, + STATE(4490), 1, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7723), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125095] = 5, + [125165] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(7994), 1, sym_hex_digit, - ACTIONS(8074), 1, + ACTIONS(8084), 1, anon_sym_RBRACK, - STATE(4490), 1, - sym_comment, - STATE(4493), 1, + STATE(4393), 1, aux_sym_val_binary_repeat1, - [125111] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_LPAREN, STATE(4491), 1, sym_comment, - ACTIONS(7906), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125125] = 3, + [125181] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4492), 1, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7748), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125137] = 5, + [125193] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8076), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, STATE(4493), 1, sym_comment, - [125153] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4494), 1, - sym_comment, - ACTIONS(7735), 3, + ACTIONS(7748), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125165] = 3, + [125205] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4495), 1, + STATE(4494), 1, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7756), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125177] = 5, + [125217] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4268), 1, sym__entry_separator, - ACTIONS(8078), 1, - anon_sym_RBRACK, - STATE(1926), 1, + ACTIONS(8086), 1, + anon_sym_GT2, + STATE(1939), 1, aux_sym__types_body_repeat2, + STATE(4495), 1, + sym_comment, + [125233] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2626), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(3003), 1, + sym_block, STATE(4496), 1, sym_comment, - [125193] = 5, + [125249] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8080), 1, - anon_sym_RBRACK, - STATE(4413), 1, - aux_sym_val_binary_repeat1, + ACTIONS(5107), 1, + anon_sym_LPAREN2, + ACTIONS(6808), 1, + sym__unquoted_pattern_in_record, STATE(4497), 1, sym_comment, - [125209] = 5, + STATE(4678), 1, + sym__expr_parenthesized_immediate, + [125265] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8082), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, STATE(4498), 1, sym_comment, - [125225] = 5, - ACTIONS(3), 1, + ACTIONS(7956), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125277] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, + ACTIONS(4409), 1, + sym__entry_separator, + ACTIONS(8088), 1, + anon_sym_RBRACK, + STATE(1979), 1, + aux_sym__types_body_repeat2, STATE(4499), 1, sym_comment, - STATE(4775), 1, - sym__expr_parenthesized_immediate, - [125241] = 3, + [125293] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4500), 1, sym_comment, - ACTIONS(7952), 3, - ts_builtin_sym_end, + ACTIONS(8090), 3, sym__newline, anon_sym_SEMI, - [125253] = 5, + anon_sym_RPAREN, + [125305] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8084), 1, - anon_sym_RBRACK, STATE(4501), 1, sym_comment, - STATE(4621), 1, - aux_sym_val_binary_repeat1, - [125269] = 4, - ACTIONS(103), 1, + ACTIONS(7964), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125317] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8086), 1, - anon_sym_DQUOTE, + ACTIONS(7994), 1, + sym_hex_digit, + ACTIONS(8092), 1, + anon_sym_RBRACK, STATE(4502), 1, sym_comment, - ACTIONS(8088), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125283] = 3, + STATE(4505), 1, + aux_sym_val_binary_repeat1, + [125333] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4503), 1, - sym_comment, - ACTIONS(8090), 3, + ACTIONS(2905), 1, sym__newline, + ACTIONS(3349), 1, anon_sym_SEMI, - anon_sym_RPAREN, - [125295] = 3, + STATE(656), 1, + aux_sym__repeat_newline, + STATE(4503), 1, + sym_comment, + [125349] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7994), 1, + sym_hex_digit, + ACTIONS(8094), 1, + anon_sym_RBRACK, + STATE(4393), 1, + aux_sym_val_binary_repeat1, STATE(4504), 1, sym_comment, - ACTIONS(7692), 3, + [125365] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7994), 1, + sym_hex_digit, + ACTIONS(8096), 1, + anon_sym_RBRACK, + STATE(4393), 1, + aux_sym_val_binary_repeat1, + STATE(4505), 1, + sym_comment, + [125381] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1734), 1, + anon_sym_LPAREN2, + ACTIONS(1838), 1, + sym__unquoted_pattern, + STATE(4506), 1, + sym_comment, + STATE(4765), 1, + sym__expr_parenthesized_immediate, + [125397] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4507), 1, + sym_comment, + ACTIONS(7966), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125307] = 4, + [125409] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2268), 1, + ACTIONS(2499), 1, sym__entry_separator, - STATE(4505), 1, + STATE(4508), 1, sym_comment, - ACTIONS(2270), 2, + ACTIONS(2501), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [125321] = 4, + [125423] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2272), 1, + ACTIONS(2503), 1, sym__entry_separator, - STATE(4506), 1, + STATE(4509), 1, sym_comment, - ACTIONS(2274), 2, + ACTIONS(2505), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [125335] = 3, + [125437] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4507), 1, + ACTIONS(6319), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6514), 1, + anon_sym_LPAREN2, + STATE(4510), 1, sym_comment, - ACTIONS(7747), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125347] = 3, + STATE(4701), 1, + sym__expr_parenthesized_immediate, + [125453] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4508), 1, + STATE(4511), 1, sym_comment, - ACTIONS(7747), 3, + ACTIONS(7762), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125359] = 5, + [125465] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(7994), 1, sym_hex_digit, - ACTIONS(8092), 1, + ACTIONS(8098), 1, anon_sym_RBRACK, - STATE(4509), 1, - sym_comment, STATE(4512), 1, - aux_sym_val_binary_repeat1, - [125375] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7757), 1, - sym__entry_separator, - STATE(4510), 1, sym_comment, - ACTIONS(8094), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125389] = 4, - ACTIONS(103), 1, + STATE(4514), 1, + aux_sym_val_binary_repeat1, + [125481] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7757), 1, - sym__entry_separator, - STATE(4511), 1, + STATE(4513), 1, sym_comment, - ACTIONS(8094), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125403] = 5, + ACTIONS(7762), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125493] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(7994), 1, sym_hex_digit, - ACTIONS(8096), 1, + ACTIONS(8100), 1, anon_sym_RBRACK, - STATE(4467), 1, + STATE(4393), 1, aux_sym_val_binary_repeat1, - STATE(4512), 1, - sym_comment, - [125419] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7825), 1, - sym__entry_separator, - STATE(4513), 1, - sym_comment, - ACTIONS(8098), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125433] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5940), 1, - sym__entry_separator, STATE(4514), 1, sym_comment, - ACTIONS(5938), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125447] = 4, + [125509] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7204), 1, + ACTIONS(7785), 1, sym__entry_separator, STATE(4515), 1, sym_comment, - ACTIONS(7272), 2, + ACTIONS(8102), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [125461] = 4, + [125523] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7920), 1, + ACTIONS(7821), 1, sym__entry_separator, STATE(4516), 1, sym_comment, - ACTIONS(8100), 2, + ACTIONS(8104), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [125475] = 4, - ACTIONS(103), 1, + [125537] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7210), 1, - sym__entry_separator, - STATE(4517), 1, - sym_comment, - ACTIONS(7278), 2, + ACTIONS(8106), 1, anon_sym_RBRACK, + ACTIONS(8108), 1, anon_sym_DOT_DOT, - [125489] = 3, + STATE(4517), 1, + sym_comment, + STATE(5022), 1, + sym__match_pattern_rest, + [125553] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4518), 1, sym_comment, - ACTIONS(7926), 3, + ACTIONS(7924), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125501] = 3, - ACTIONS(3), 1, + [125565] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7230), 1, + sym__entry_separator, STATE(4519), 1, sym_comment, - ACTIONS(7952), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125513] = 4, + ACTIONS(7274), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125579] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5241), 1, + ACTIONS(7893), 1, sym__entry_separator, STATE(4520), 1, sym_comment, - ACTIONS(5243), 2, + ACTIONS(8110), 2, anon_sym_RBRACK, - anon_sym_GT2, - [125527] = 3, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [125593] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7056), 1, + sym__entry_separator, STATE(4521), 1, sym_comment, - ACTIONS(7741), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125539] = 4, + ACTIONS(7280), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125607] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3082), 1, - anon_sym_RPAREN, STATE(4522), 1, sym_comment, - ACTIONS(2932), 2, - sym__newline, - anon_sym_SEMI, - [125553] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4523), 1, - sym_comment, - ACTIONS(7741), 3, - ts_builtin_sym_end, + ACTIONS(8112), 3, sym__newline, anon_sym_SEMI, - [125565] = 5, + anon_sym_RPAREN, + [125619] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(5249), 1, sym__entry_separator, - ACTIONS(8102), 1, + STATE(4523), 1, + sym_comment, + ACTIONS(5251), 2, anon_sym_RBRACK, - STATE(1968), 1, - aux_sym__types_body_repeat2, + anon_sym_GT2, + [125633] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3216), 1, + anon_sym_RPAREN, STATE(4524), 1, sym_comment, - [125581] = 3, + ACTIONS(2934), 2, + sym__newline, + anon_sym_SEMI, + [125647] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4525), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(7938), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125593] = 5, - ACTIONS(103), 1, + [125659] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1621), 1, - anon_sym_RBRACE, - ACTIONS(1627), 1, - sym__entry_separator, - STATE(1475), 1, - aux_sym__types_body_repeat2, STATE(4526), 1, sym_comment, - [125609] = 3, + ACTIONS(7764), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125671] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4527), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(7764), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125621] = 3, - ACTIONS(3), 1, + [125683] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4268), 1, + sym__entry_separator, + ACTIONS(8114), 1, + anon_sym_RBRACK, + STATE(1929), 1, + aux_sym__types_body_repeat2, STATE(4528), 1, sym_comment, - ACTIONS(7804), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125633] = 3, + [125699] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4529), 1, sym_comment, - ACTIONS(7970), 3, + ACTIONS(7766), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125645] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8104), 1, - anon_sym_LPAREN, - STATE(4530), 1, - sym_comment, - ACTIONS(8106), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125659] = 5, + [125711] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4268), 1, sym__entry_separator, - ACTIONS(8108), 1, + ACTIONS(8116), 1, anon_sym_RBRACK, - STATE(1935), 1, + STATE(1945), 1, aux_sym__types_body_repeat2, + STATE(4530), 1, + sym_comment, + [125727] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4531), 1, sym_comment, - [125675] = 3, + ACTIONS(3216), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [125739] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4532), 1, sym_comment, - ACTIONS(3082), 3, + ACTIONS(7766), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [125687] = 3, + [125751] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4533), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(7795), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125699] = 3, + [125763] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4534), 1, sym_comment, - ACTIONS(7804), 3, + ACTIONS(7795), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125711] = 3, + [125775] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4535), 1, sym_comment, - ACTIONS(7696), 3, + ACTIONS(7960), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125723] = 4, + [125787] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1706), 1, sym__entry_separator, STATE(4536), 1, sym_comment, - ACTIONS(1619), 2, + ACTIONS(1613), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [125737] = 3, + [125801] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4537), 1, sym_comment, - ACTIONS(8110), 3, + ACTIONS(7700), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [125749] = 3, + anon_sym_SEMI, + [125813] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4538), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(7706), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125825] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4539), 1, + sym_comment, + ACTIONS(7700), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125761] = 5, + [125837] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(4962), 1, sym__entry_separator, - ACTIONS(8112), 1, + ACTIONS(8118), 1, anon_sym_GT2, - STATE(2373), 1, + STATE(2361), 1, aux_sym__types_body_repeat2, - STATE(4539), 1, + STATE(4540), 1, sym_comment, - [125777] = 4, + [125853] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1955), 1, - anon_sym_POUND_BANG, - ACTIONS(8114), 1, + ACTIONS(5269), 1, + sym__entry_separator, + STATE(4541), 1, + sym_comment, + ACTIONS(5267), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125867] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4542), 1, + sym_comment, + ACTIONS(7833), 3, + ts_builtin_sym_end, sym__newline, - STATE(4540), 2, - aux_sym__repeat_newline, + anon_sym_SEMI, + [125879] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5983), 1, + sym__entry_separator, + STATE(4543), 1, sym_comment, - [125791] = 5, + ACTIONS(5981), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125893] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, + ACTIONS(4002), 1, anon_sym_AT2, - ACTIONS(8117), 1, + ACTIONS(8120), 1, anon_sym_GT2, - STATE(4541), 1, + STATE(4544), 1, sym_comment, - STATE(4953), 1, + STATE(4863), 1, sym_param_completer, - [125807] = 5, + [125909] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1621), 1, sym__entry_separator, - ACTIONS(8119), 1, + ACTIONS(8122), 1, anon_sym_RBRACE, - STATE(1466), 1, + STATE(1474), 1, aux_sym__types_body_repeat2, - STATE(4542), 1, + STATE(4545), 1, sym_comment, - [125823] = 5, + [125925] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4437), 1, sym__entry_separator, - ACTIONS(8122), 1, - anon_sym_GT2, - STATE(1921), 1, + ACTIONS(8125), 1, + anon_sym_RBRACK, + STATE(2082), 1, aux_sym__types_body_repeat2, - STATE(4543), 1, + STATE(4546), 1, sym_comment, - [125839] = 4, + [125941] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8124), 1, - anon_sym_LPAREN, - STATE(4544), 1, - sym_comment, - ACTIONS(8126), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125853] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4545), 1, - sym_comment, - ACTIONS(7970), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125865] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4546), 1, + ACTIONS(1615), 1, + anon_sym_RBRACE, + ACTIONS(1621), 1, + sym__entry_separator, + STATE(1476), 1, + aux_sym__types_body_repeat2, + STATE(4547), 1, sym_comment, - ACTIONS(7715), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125877] = 3, + [125957] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4547), 1, + STATE(4548), 1, sym_comment, - ACTIONS(4569), 3, + ACTIONS(4583), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [125889] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4548), 1, - sym_comment, - ACTIONS(7715), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125901] = 5, + [125969] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(4268), 1, sym__entry_separator, - ACTIONS(4716), 1, - anon_sym_RBRACE, - STATE(2225), 1, + ACTIONS(8127), 1, + anon_sym_GT2, + STATE(1919), 1, aux_sym__types_body_repeat2, STATE(4549), 1, sym_comment, - [125917] = 3, + [125985] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4550), 1, sym_comment, - ACTIONS(7827), 3, - ts_builtin_sym_end, + ACTIONS(8129), 3, sym__newline, anon_sym_SEMI, - [125929] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + [125997] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8128), 1, - anon_sym_RBRACE, - STATE(1478), 1, - aux_sym__types_body_repeat2, STATE(4551), 1, sym_comment, - [125945] = 5, - ACTIONS(3), 1, + ACTIONS(8131), 3, + sym__newline, + anon_sym_LBRACK, + anon_sym_RBRACK, + [126009] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5944), 1, - anon_sym_EQ, - STATE(3284), 1, - sym_param_completer, + ACTIONS(4409), 1, + sym__entry_separator, + ACTIONS(8133), 1, + anon_sym_RBRACK, + STATE(2065), 1, + aux_sym__types_body_repeat2, STATE(4552), 1, sym_comment, - [125961] = 3, + [126025] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4553), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(7727), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125973] = 4, - ACTIONS(103), 1, + [126037] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5961), 1, - sym__entry_separator, + ACTIONS(1762), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8135), 1, + anon_sym_DOT, + ACTIONS(8137), 1, + aux_sym__immediate_decimal_token5, STATE(4554), 1, sym_comment, - ACTIONS(5959), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125987] = 3, + [126053] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(5852), 1, + anon_sym_EQ, + STATE(3254), 1, + sym_param_completer, STATE(4555), 1, sym_comment, - ACTIONS(8130), 3, - sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [125999] = 4, + [126069] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2615), 1, + ACTIONS(1621), 1, sym__entry_separator, + ACTIONS(8139), 1, + anon_sym_RBRACE, + STATE(1461), 1, + aux_sym__types_body_repeat2, STATE(4556), 1, sym_comment, - ACTIONS(2617), 2, + [126085] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4557), 1, + sym_comment, + ACTIONS(7932), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126097] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2561), 1, + sym__entry_separator, + STATE(4558), 1, + sym_comment, + ACTIONS(2563), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [126013] = 5, + [126111] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4268), 1, sym__entry_separator, - ACTIONS(8132), 1, + ACTIONS(8141), 1, anon_sym_RBRACK, - STATE(1922), 1, + STATE(1946), 1, aux_sym__types_body_repeat2, - STATE(4557), 1, + STATE(4559), 1, sym_comment, - [126029] = 5, + [126127] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(4704), 1, sym__entry_separator, - ACTIONS(8134), 1, + ACTIONS(4708), 1, anon_sym_RBRACE, - STATE(1474), 1, + STATE(2225), 1, aux_sym__types_body_repeat2, - STATE(4558), 1, + STATE(4560), 1, sym_comment, - [126045] = 5, + [126143] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4268), 1, sym__entry_separator, - ACTIONS(8136), 1, + ACTIONS(8143), 1, anon_sym_RBRACK, - STATE(1923), 1, + STATE(1948), 1, aux_sym__types_body_repeat2, - STATE(4559), 1, + STATE(4561), 1, sym_comment, - [126061] = 3, + [126159] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4560), 1, + STATE(4562), 1, sym_comment, - ACTIONS(7847), 3, + ACTIONS(7839), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126073] = 3, + [126171] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4561), 1, + STATE(4563), 1, sym_comment, - ACTIONS(7847), 3, + ACTIONS(7839), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126085] = 3, + [126183] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7733), 1, + sym__entry_separator, + ACTIONS(8145), 1, + anon_sym_AT2, + STATE(4564), 1, + sym_comment, + STATE(4622), 1, + sym_param_completer, + [126199] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4562), 1, + STATE(4565), 1, sym_comment, - ACTIONS(7741), 3, + ACTIONS(7764), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126097] = 3, + [126211] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4563), 1, + STATE(4566), 1, sym_comment, - ACTIONS(7741), 3, + ACTIONS(7764), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126109] = 3, + [126223] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4564), 1, + STATE(4567), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(7766), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126121] = 3, + [126235] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4565), 1, + STATE(4568), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(7727), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126133] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7723), 1, - sym__entry_separator, - ACTIONS(8138), 1, - anon_sym_AT2, - STATE(4566), 1, - sym_comment, - STATE(4652), 1, - sym_param_completer, - [126149] = 3, + [126247] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4567), 1, + STATE(4569), 1, sym_comment, - ACTIONS(7827), 3, + ACTIONS(7766), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126161] = 5, + [126259] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(4437), 1, sym__entry_separator, - ACTIONS(8140), 1, + ACTIONS(8147), 1, anon_sym_RBRACK, - STATE(1990), 1, + STATE(2085), 1, aux_sym__types_body_repeat2, - STATE(4568), 1, + STATE(4570), 1, sym_comment, - [126177] = 5, - ACTIONS(103), 1, + [126275] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8142), 1, - anon_sym_RBRACK, - STATE(4236), 1, - aux_sym__types_body_repeat2, - STATE(4569), 1, + STATE(4571), 1, sym_comment, - [126193] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8144), 1, + ACTIONS(8149), 3, + sym__newline, + anon_sym_LBRACK, anon_sym_RBRACK, - STATE(4359), 1, - aux_sym__types_body_repeat2, - STATE(4570), 1, - sym_comment, - [126209] = 5, + [126287] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(1621), 1, sym__entry_separator, - ACTIONS(8146), 1, - anon_sym_RBRACK, - STATE(4196), 1, + ACTIONS(8151), 1, + anon_sym_RBRACE, + STATE(1467), 1, aux_sym__types_body_repeat2, - STATE(4571), 1, + STATE(4572), 1, sym_comment, - [126225] = 4, + [126303] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5221), 1, - sym__entry_separator, - STATE(4572), 1, + ACTIONS(8153), 1, + anon_sym_LPAREN, + STATE(4573), 1, sym_comment, - ACTIONS(5223), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [126239] = 5, - ACTIONS(3), 1, + ACTIONS(8155), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [126317] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7745), 1, - aux_sym__immediate_decimal_token5, - STATE(4573), 1, + ACTIONS(8157), 1, + anon_sym_LPAREN, + STATE(4574), 1, sym_comment, - [126255] = 4, + ACTIONS(8159), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [126331] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(5783), 1, sym__entry_separator, - STATE(4574), 1, + STATE(4575), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(5781), 2, anon_sym_RBRACK, - anon_sym_GT2, - [126269] = 5, + anon_sym_RBRACE, + [126345] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7272), 1, + ACTIONS(7274), 1, anon_sym_DOT_DOT, - ACTIONS(7438), 1, + ACTIONS(7434), 1, anon_sym_RBRACK, - ACTIONS(7440), 1, + ACTIONS(7436), 1, sym__entry_separator, - STATE(4575), 1, + STATE(4576), 1, sym_comment, - [126285] = 5, + [126361] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7278), 1, + ACTIONS(7280), 1, anon_sym_DOT_DOT, - ACTIONS(7442), 1, + ACTIONS(7438), 1, anon_sym_RBRACK, - ACTIONS(7445), 1, + ACTIONS(7441), 1, sym__entry_separator, - STATE(4576), 1, + STATE(4577), 1, sym_comment, - [126301] = 5, + [126377] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - STATE(4577), 1, + ACTIONS(1760), 1, + anon_sym_LBRACE, + ACTIONS(1762), 1, + sym__unquoted_pattern, + ACTIONS(7754), 1, + aux_sym__immediate_decimal_token5, + STATE(4578), 1, sym_comment, - STATE(4580), 1, - sym_val_list, - STATE(4591), 1, - aux_sym__table_body_repeat1, - [126317] = 5, + [126393] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(5279), 1, sym__entry_separator, - ACTIONS(7843), 1, - anon_sym_RBRACE, - STATE(1469), 1, - aux_sym__types_body_repeat2, - STATE(4578), 1, - sym_comment, - [126333] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - STATE(4570), 1, - sym_val_list, STATE(4579), 1, sym_comment, - STATE(4591), 1, - aux_sym__table_body_repeat1, - [126349] = 5, + ACTIONS(5281), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [126407] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(5223), 1, sym__entry_separator, - ACTIONS(8148), 1, - anon_sym_RBRACK, - STATE(4238), 1, - aux_sym__types_body_repeat2, STATE(4580), 1, sym_comment, - [126365] = 5, + ACTIONS(5225), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [126421] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1621), 1, sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - STATE(1491), 1, + ACTIONS(7829), 1, + anon_sym_RBRACE, + STATE(1485), 1, aux_sym__types_body_repeat2, STATE(4581), 1, sym_comment, - [126381] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4582), 1, - sym_comment, - ACTIONS(7831), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126393] = 5, + [126437] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(4268), 1, sym__entry_separator, - ACTIONS(8150), 1, + ACTIONS(8161), 1, anon_sym_RBRACK, - STATE(2104), 1, + STATE(4247), 1, aux_sym__types_body_repeat2, - STATE(4583), 1, + STATE(4582), 1, sym_comment, - [126409] = 5, + [126453] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, + ACTIONS(8163), 1, + sym__table_head_separator, + STATE(4583), 1, + sym_comment, + ACTIONS(1613), 2, anon_sym_RBRACK, - ACTIONS(968), 1, sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, + [126467] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4584), 1, sym_comment, - [126425] = 3, + ACTIONS(7958), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126479] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3882), 1, + anon_sym_LBRACK, STATE(4585), 1, sym_comment, - ACTIONS(7816), 3, - ts_builtin_sym_end, + STATE(4599), 1, + sym_val_list, + STATE(4601), 1, + aux_sym__table_body_repeat1, + [126495] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2057), 1, + anon_sym_POUND_BANG, + ACTIONS(8165), 1, sym__newline, - anon_sym_SEMI, - [126437] = 5, + STATE(4586), 2, + aux_sym__repeat_newline, + sym_comment, + [126509] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1621), 1, sym__entry_separator, ACTIONS(7916), 1, anon_sym_RBRACE, - STATE(1480), 1, + STATE(1479), 1, aux_sym__types_body_repeat2, - STATE(4586), 1, - sym_comment, - [126453] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(4587), 1, sym_comment, - ACTIONS(8152), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126465] = 5, + [126525] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1621), 1, sym__entry_separator, - ACTIONS(7918), 1, - anon_sym_RBRACE, - STATE(1485), 1, + ACTIONS(1623), 1, + anon_sym_COLON2, + STATE(1494), 1, aux_sym__types_body_repeat2, STATE(4588), 1, sym_comment, - [126481] = 3, - ACTIONS(3), 1, + [126541] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4409), 1, + sym__entry_separator, + ACTIONS(8168), 1, + anon_sym_RBRACK, + STATE(1977), 1, + aux_sym__types_body_repeat2, STATE(4589), 1, sym_comment, - ACTIONS(8154), 3, + [126557] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4590), 1, + sym_comment, + ACTIONS(7962), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126493] = 5, + [126569] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(4268), 1, sym__entry_separator, - ACTIONS(8156), 1, + ACTIONS(8170), 1, anon_sym_RBRACK, - STATE(2105), 1, + STATE(4366), 1, aux_sym__types_body_repeat2, - STATE(4590), 1, - sym_comment, - [126509] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8158), 1, - anon_sym_LBRACK, - STATE(4749), 1, - sym_val_list, - STATE(4591), 2, + STATE(4591), 1, sym_comment, - aux_sym__table_body_repeat1, - [126523] = 3, - ACTIONS(3), 1, + [126585] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1621), 1, + sym__entry_separator, + ACTIONS(7922), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym__types_body_repeat2, STATE(4592), 1, sym_comment, - ACTIONS(8161), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126535] = 5, + [126601] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7287), 1, - anon_sym_if, - ACTIONS(8163), 1, - anon_sym_EQ_GT, STATE(4593), 1, sym_comment, - STATE(4917), 1, - sym_match_guard, - [126551] = 5, + ACTIONS(8172), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8165), 1, - anon_sym_DOT, - ACTIONS(8167), 1, - aux_sym__immediate_decimal_token5, STATE(4594), 1, sym_comment, - [126567] = 5, + ACTIONS(7863), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126625] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(4268), 1, sym__entry_separator, - ACTIONS(8169), 1, + ACTIONS(8174), 1, anon_sym_RBRACK, - STATE(1995), 1, + STATE(4244), 1, aux_sym__types_body_repeat2, STATE(4595), 1, sym_comment, - [126583] = 4, + [126641] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1874), 1, + ACTIONS(1866), 1, sym__entry_separator, STATE(4596), 1, sym_comment, - ACTIONS(1876), 2, + ACTIONS(1868), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [126597] = 3, + [126655] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3882), 1, + anon_sym_LBRACK, + STATE(4591), 1, + sym_val_list, STATE(4597), 1, sym_comment, - ACTIONS(8171), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126609] = 5, + STATE(4601), 1, + aux_sym__table_body_repeat1, + [126671] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1728), 1, sym__unquoted_pattern_in_record, - ACTIONS(8173), 1, + ACTIONS(8176), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8175), 1, + ACTIONS(8178), 1, aux_sym__immediate_decimal_token5, STATE(4598), 1, sym_comment, - [126625] = 3, - ACTIONS(3), 1, + [126687] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4268), 1, + sym__entry_separator, + ACTIONS(8180), 1, + anon_sym_RBRACK, + STATE(4259), 1, + aux_sym__types_body_repeat2, STATE(4599), 1, sym_comment, - ACTIONS(4651), 3, + [126703] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4600), 1, + sym_comment, + ACTIONS(4655), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [126637] = 5, + [126715] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + ACTIONS(8182), 1, + anon_sym_LBRACK, + STATE(4740), 1, + sym_val_list, + STATE(4601), 2, + sym_comment, + aux_sym__table_body_repeat1, + [126729] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7994), 1, sym_hex_digit, - ACTIONS(8177), 1, + ACTIONS(8185), 1, anon_sym_RBRACK, - STATE(4600), 1, + STATE(4602), 1, sym_comment, - STATE(4609), 1, + STATE(4610), 1, aux_sym_val_binary_repeat1, - [126653] = 5, + [126745] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(5107), 1, anon_sym_LPAREN2, - ACTIONS(5116), 1, + ACTIONS(5117), 1, sym__unquoted_pattern_in_record, - STATE(4601), 1, + STATE(4603), 1, sym_comment, - STATE(4649), 1, + STATE(4731), 1, sym__expr_parenthesized_immediate, - [126669] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4602), 1, - sym_comment, - ACTIONS(7968), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126681] = 5, - ACTIONS(3), 1, + [126761] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(6009), 1, - anon_sym_EQ, - STATE(3300), 1, - sym_param_completer, - STATE(4603), 1, + ACTIONS(4409), 1, + sym__entry_separator, + ACTIONS(8187), 1, + anon_sym_RBRACK, + STATE(1989), 1, + aux_sym__types_body_repeat2, + STATE(4604), 1, sym_comment, - [126697] = 3, + [126777] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4604), 1, + STATE(4605), 1, sym_comment, - ACTIONS(7837), 3, + ACTIONS(7835), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126709] = 5, + [126789] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8179), 1, + ACTIONS(8189), 1, anon_sym_export, - ACTIONS(8181), 1, + ACTIONS(8191), 1, anon_sym_def, - ACTIONS(8183), 1, + ACTIONS(8193), 1, anon_sym_extern, - STATE(4605), 1, - sym_comment, - [126725] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1886), 1, - sym__entry_separator, STATE(4606), 1, sym_comment, - ACTIONS(1888), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126739] = 5, - ACTIONS(103), 1, + [126805] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(8185), 1, - anon_sym_RBRACE, - STATE(2227), 1, - aux_sym__types_body_repeat2, STATE(4607), 1, sym_comment, - [126755] = 5, + ACTIONS(8195), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126817] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(1874), 1, sym__entry_separator, - ACTIONS(4711), 1, - anon_sym_RBRACE, - STATE(2223), 1, - aux_sym__types_body_repeat2, STATE(4608), 1, sym_comment, - [126771] = 5, + ACTIONS(1876), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126831] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + STATE(4609), 1, + sym_comment, + ACTIONS(7962), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126843] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7994), 1, sym_hex_digit, - ACTIONS(8187), 1, + ACTIONS(8197), 1, anon_sym_RBRACK, - STATE(4467), 1, + STATE(4393), 1, aux_sym_val_binary_repeat1, - STATE(4609), 1, + STATE(4610), 1, sym_comment, - [126787] = 5, + [126859] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1734), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1744), 1, sym__unquoted_pattern, - STATE(4610), 1, + STATE(4611), 1, sym_comment, - STATE(4739), 1, + STATE(4715), 1, sym__expr_parenthesized_immediate, - [126803] = 3, + [126875] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4611), 1, - sym_comment, - ACTIONS(7694), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126815] = 3, - ACTIONS(103), 1, - anon_sym_POUND, STATE(4612), 1, sym_comment, - ACTIONS(858), 3, - sym__newline, - sym__space, - anon_sym_COLON2, - [126827] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3100), 1, - sym_block, - STATE(4613), 1, - sym_comment, - [126843] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8189), 1, - anon_sym_POUND_BANG, - ACTIONS(8191), 1, + ACTIONS(7976), 3, sym__newline, - STATE(4540), 1, - aux_sym__repeat_newline, - STATE(4614), 1, - sym_comment, - [126859] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126887] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(8193), 1, + ACTIONS(860), 1, anon_sym_RBRACK, - STATE(2108), 1, - aux_sym__types_body_repeat2, - STATE(4615), 1, + ACTIONS(960), 1, + sym__entry_separator, + ACTIONS(6319), 1, + sym__unquoted_pattern_in_list, + STATE(4613), 1, sym_comment, - [126875] = 3, + [126903] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4616), 1, + STATE(4614), 1, sym_comment, - ACTIONS(8195), 3, + ACTIONS(8199), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [126887] = 3, + [126915] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4617), 1, + STATE(4615), 1, sym_comment, - ACTIONS(8197), 3, + ACTIONS(8201), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [126899] = 5, + [126927] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7855), 1, + ACTIONS(4702), 1, + anon_sym_RBRACE, + ACTIONS(4704), 1, + sym__entry_separator, + STATE(2227), 1, + aux_sym__types_body_repeat2, + STATE(4616), 1, + sym_comment, + [126943] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4268), 1, + sym__entry_separator, + ACTIONS(7851), 1, + anon_sym_LBRACK, + STATE(1868), 1, + aux_sym__types_body_repeat2, + STATE(4617), 1, + sym_comment, + [126959] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7859), 1, sym__entry_separator, - ACTIONS(8199), 1, + ACTIONS(8203), 1, anon_sym_COLON, STATE(4618), 1, sym_comment, - STATE(4709), 1, + STATE(4720), 1, sym__collection_annotation, - [126915] = 3, + [126975] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4619), 1, sym_comment, - ACTIONS(8201), 3, + ACTIONS(8205), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [126927] = 4, - ACTIONS(103), 1, + [126987] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - sym__entry_separator, STATE(4620), 1, sym_comment, - ACTIONS(5259), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [126941] = 5, + ACTIONS(8207), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126999] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, - sym_hex_digit, - ACTIONS(8203), 1, - anon_sym_RBRACK, - STATE(4467), 1, - aux_sym_val_binary_repeat1, STATE(4621), 1, sym_comment, - [126957] = 4, - ACTIONS(3), 1, + ACTIONS(7756), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127011] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4237), 1, - sym_block, + ACTIONS(8209), 1, + anon_sym_GT2, + ACTIONS(8211), 1, + sym__entry_separator, STATE(4622), 1, sym_comment, - [126970] = 3, + [127024] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8205), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 2, + ACTIONS(6100), 1, + sym__entry_separator, + ACTIONS(6102), 1, + anon_sym_RBRACK, + STATE(4623), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [126981] = 3, - ACTIONS(3), 1, + [127037] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2584), 1, + sym__entry_separator, + ACTIONS(2586), 1, + anon_sym_RBRACE, STATE(4624), 1, sym_comment, - ACTIONS(8208), 2, - sym__newline, - anon_sym_SEMI, - [126992] = 4, + [127050] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8210), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2559), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7056), 1, + sym__entry_separator, STATE(4625), 1, sym_comment, - STATE(4627), 1, - aux_sym__unquoted_with_expr_repeat1, - [127005] = 4, + [127063] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8212), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6202), 1, + sym__entry_separator, + ACTIONS(6204), 1, + anon_sym_GT2, STATE(4626), 1, sym_comment, - STATE(4628), 1, - aux_sym__unquoted_with_expr_repeat1, - [127018] = 4, + [127076] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8214), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6210), 1, + sym__entry_separator, + ACTIONS(6212), 1, + anon_sym_GT2, STATE(4627), 1, sym_comment, - [127031] = 4, - ACTIONS(103), 1, + [127089] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8216), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4050), 1, + sym_block, STATE(4628), 1, sym_comment, - [127044] = 4, + [127102] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(4432), 1, + STATE(4334), 1, sym_block, STATE(4629), 1, sym_comment, - [127057] = 4, - ACTIONS(103), 1, + [127115] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8218), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4337), 1, + sym_block, STATE(4630), 1, sym_comment, - STATE(4789), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127070] = 4, + [127128] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8220), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(7396), 1, + anon_sym_RBRACE, + ACTIONS(7398), 1, + sym__entry_separator, STATE(4631), 1, sym_comment, - STATE(4714), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127083] = 4, - ACTIONS(103), 1, + [127141] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8222), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(1645), 1, + sym__unquoted_pattern, + ACTIONS(2584), 1, + anon_sym_LBRACE, STATE(4632), 1, sym_comment, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127096] = 4, + [127154] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8224), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(1946), 1, + sym__entry_separator, + ACTIONS(1948), 1, + anon_sym_RBRACE, STATE(4633), 1, sym_comment, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127109] = 4, + [127167] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(4083), 1, + STATE(4427), 1, sym_block, STATE(4634), 1, sym_comment, - [127122] = 4, + [127180] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(4085), 1, + STATE(4234), 1, sym_block, STATE(4635), 1, sym_comment, - [127135] = 4, + [127193] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7572), 1, - anon_sym_RBRACE, - ACTIONS(7574), 1, - sym__entry_separator, + ACTIONS(8213), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4636), 1, sym_comment, - [127148] = 4, + STATE(4756), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [127206] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(4094), 1, + STATE(4428), 1, sym_block, STATE(4637), 1, sym_comment, - [127161] = 4, + [127219] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(1946), 1, anon_sym_LBRACE, - STATE(4433), 1, - sym_block, + ACTIONS(1956), 1, + sym__unquoted_pattern, STATE(4638), 1, sym_comment, - [127174] = 4, + [127232] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(4098), 1, + STATE(4220), 1, sym_block, STATE(4639), 1, sym_comment, - [127187] = 3, + [127245] = 4, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(960), 1, + anon_sym_COLON2, + ACTIONS(2744), 1, + aux_sym_cmd_identifier_token2, STATE(4640), 1, sym_comment, - ACTIONS(2096), 2, - anon_sym_POUND_BANG, - sym__newline, - [127198] = 3, + [127258] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1734), 1, + anon_sym_LPAREN2, STATE(4641), 1, sym_comment, - ACTIONS(1464), 2, - sym__table_head_separator, - anon_sym_DOT2, - [127209] = 4, + STATE(4971), 1, + sym__expr_parenthesized_immediate, + [127271] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(4584), 1, + sym_block, STATE(4642), 1, sym_comment, - STATE(5170), 1, - sym__expr_parenthesized_immediate, - [127222] = 4, + [127284] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(4519), 1, + STATE(4236), 1, sym_block, STATE(4643), 1, sym_comment, - [127235] = 4, + [127297] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(4241), 1, + STATE(4431), 1, sym_block, STATE(4644), 1, sym_comment, - [127248] = 4, - ACTIONS(3), 1, + [127310] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4243), 1, - sym_block, + ACTIONS(8215), 1, + anon_sym_RBRACK, + ACTIONS(8217), 1, + sym__entry_separator, STATE(4645), 1, sym_comment, - [127261] = 4, - ACTIONS(103), 1, + [127323] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8226), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2491), 1, + anon_sym_LBRACE, + ACTIONS(2493), 1, + sym__unquoted_pattern, STATE(4646), 1, sym_comment, - STATE(4665), 1, - aux_sym__unquoted_with_expr_repeat1, - [127274] = 4, + [127336] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(4442), 1, + STATE(4432), 1, sym_block, STATE(4647), 1, sym_comment, - [127287] = 4, - ACTIONS(3), 1, + [127349] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4507), 1, - sym_block, + ACTIONS(8219), 1, + anon_sym_RBRACK, + ACTIONS(8221), 1, + sym__entry_separator, STATE(4648), 1, sym_comment, - [127300] = 4, + [127362] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8228), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4632), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(4268), 1, + sym__entry_separator, + STATE(1971), 1, + aux_sym__types_body_repeat2, STATE(4649), 1, sym_comment, - [127313] = 3, - ACTIONS(103), 1, + [127375] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8230), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 2, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(4489), 1, + sym_block, + STATE(4650), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127324] = 4, + [127388] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(1706), 1, anon_sym_LBRACE, - STATE(4508), 1, - sym_block, + ACTIONS(2559), 1, + sym__unquoted_pattern, STATE(4651), 1, sym_comment, - [127337] = 4, - ACTIONS(103), 1, + [127401] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8233), 1, - anon_sym_GT2, - ACTIONS(8235), 1, - sym__entry_separator, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(4527), 1, + sym_block, STATE(4652), 1, sym_comment, - [127350] = 4, + [127414] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - ACTIONS(2641), 1, - sym__unquoted_pattern, + STATE(4490), 1, + sym_block, STATE(4653), 1, sym_comment, - [127363] = 4, - ACTIONS(103), 1, + [127427] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8237), 1, - anon_sym_RBRACE, - ACTIONS(8239), 1, - sym__entry_separator, + ACTIONS(1726), 1, + anon_sym_LBRACE, + ACTIONS(1728), 1, + sym__unquoted_pattern, STATE(4654), 1, sym_comment, - [127376] = 4, - ACTIONS(103), 1, + [127440] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8241), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4633), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(4566), 1, + sym_block, STATE(4655), 1, sym_comment, - [127389] = 4, + [127453] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7589), 1, - anon_sym_RBRACE, - ACTIONS(7591), 1, - sym__entry_separator, + ACTIONS(8223), 1, + aux_sym__unquoted_with_expr_token1, STATE(4656), 1, sym_comment, - [127402] = 4, + STATE(4662), 1, + aux_sym__unquoted_with_expr_repeat1, + [127466] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8243), 1, + ACTIONS(8225), 1, aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, STATE(4657), 1, sym_comment, - [127415] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8245), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, + STATE(4663), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(4658), 1, - sym_comment, - [127428] = 4, + [127479] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(1854), 1, anon_sym_LBRACE, - STATE(4443), 1, - sym_block, + ACTIONS(1856), 1, + sym__unquoted_pattern, + STATE(4658), 1, + sym_comment, + [127492] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8227), 1, + anon_sym_RBRACE, + ACTIONS(8229), 1, + sym__entry_separator, STATE(4659), 1, sym_comment, - [127441] = 4, - ACTIONS(3), 1, + [127505] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - anon_sym_LBRACE, + ACTIONS(6896), 1, + sym__entry_separator, + ACTIONS(8231), 1, + anon_sym_RBRACK, STATE(4660), 1, sym_comment, - [127454] = 4, - ACTIONS(3), 1, + [127518] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_LBRACE, - ACTIONS(1762), 1, - sym__unquoted_pattern, + ACTIONS(6868), 1, + sym__entry_separator, + ACTIONS(8233), 1, + anon_sym_RBRACK, STATE(4661), 1, sym_comment, - [127467] = 4, - ACTIONS(3), 1, + [127531] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4348), 1, - sym_block, + ACTIONS(8235), 1, + aux_sym__unquoted_with_expr_token1, STATE(4662), 1, sym_comment, - [127480] = 4, + STATE(4709), 1, + aux_sym__unquoted_with_expr_repeat1, + [127544] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8247), 1, + ACTIONS(8237), 1, aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, STATE(4663), 1, sym_comment, - [127493] = 4, - ACTIONS(3), 1, + STATE(4709), 1, + aux_sym__unquoted_with_expr_repeat1, + [127557] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4101), 1, - sym_block, + ACTIONS(5275), 1, + anon_sym_RBRACK, + ACTIONS(5277), 1, + sym__entry_separator, STATE(4664), 1, sym_comment, - [127506] = 4, - ACTIONS(103), 1, + [127570] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8249), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(4492), 1, + sym_block, STATE(4665), 1, sym_comment, - [127519] = 4, + [127583] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(4110), 1, + STATE(4239), 1, sym_block, STATE(4666), 1, sym_comment, - [127532] = 4, + [127596] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(4129), 1, + STATE(4444), 1, sym_block, STATE(4667), 1, sym_comment, - [127545] = 4, - ACTIONS(3), 1, + [127609] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4136), 1, - sym_block, + ACTIONS(8239), 1, + anon_sym_RBRACK, + ACTIONS(8241), 1, + sym__entry_separator, STATE(4668), 1, sym_comment, - [127558] = 4, + [127622] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_LBRACE, - ACTIONS(2585), 1, - sym__unquoted_pattern, STATE(4669), 1, sym_comment, - [127571] = 4, - ACTIONS(3), 1, + ACTIONS(8066), 2, + anon_sym_GT2, + anon_sym_AT2, + [127633] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4351), 1, - sym_block, + ACTIONS(8243), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4670), 1, sym_comment, - [127584] = 4, - ACTIONS(3), 1, + STATE(4756), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [127646] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1802), 1, - anon_sym_LBRACE, - ACTIONS(1804), 1, - sym__unquoted_pattern, + ACTIONS(2640), 1, + sym__entry_separator, + ACTIONS(2642), 1, + anon_sym_RBRACE, STATE(4671), 1, sym_comment, - [127597] = 4, - ACTIONS(3), 1, + [127659] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4049), 1, - sym_block, + ACTIONS(8245), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4672), 1, sym_comment, - [127610] = 4, + STATE(4756), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [127672] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1018), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - ACTIONS(2585), 1, - sym__unquoted_pattern, + STATE(4086), 1, + sym_block, STATE(4673), 1, sym_comment, - [127623] = 4, - ACTIONS(3), 1, + [127685] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8251), 1, - anon_sym_DASH2, + ACTIONS(7647), 1, + anon_sym_RBRACE, + ACTIONS(7649), 1, + sym__entry_separator, STATE(4674), 1, sym_comment, - STATE(4982), 1, - sym_param_short_flag, - [127636] = 4, + [127698] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4052), 1, - sym_block, STATE(4675), 1, sym_comment, - [127649] = 4, - ACTIONS(103), 1, + ACTIONS(8247), 2, + anon_sym_RBRACK, + sym_hex_digit, + [127709] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2523), 1, - sym__entry_separator, - ACTIONS(2525), 1, - anon_sym_RBRACE, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4089), 1, + sym_block, STATE(4676), 1, sym_comment, - [127662] = 4, - ACTIONS(3), 1, + [127722] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, - anon_sym_LBRACE, - ACTIONS(2597), 1, - sym__unquoted_pattern, + ACTIONS(8249), 1, + anon_sym_RBRACE, + ACTIONS(8251), 1, + sym__entry_separator, STATE(4677), 1, sym_comment, - [127675] = 4, + [127735] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5245), 1, - anon_sym_RBRACK, - ACTIONS(5247), 1, - sym__entry_separator, + ACTIONS(8253), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4678), 1, sym_comment, - [127688] = 4, - ACTIONS(3), 1, + STATE(4680), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [127748] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4149), 1, - sym_block, + ACTIONS(3473), 1, + sym__space, + STATE(1404), 1, + aux_sym_pipe_element_repeat1, STATE(4679), 1, sym_comment, - [127701] = 4, - ACTIONS(3), 1, + [127761] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4151), 1, - sym_block, + ACTIONS(8255), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4680), 1, sym_comment, - [127714] = 4, - ACTIONS(103), 1, + STATE(4756), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [127774] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8253), 1, - anon_sym_RBRACE, - ACTIONS(8255), 1, - sym__entry_separator, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4080), 1, + sym_block, STATE(4681), 1, sym_comment, - [127727] = 4, - ACTIONS(103), 1, + [127787] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7390), 1, - anon_sym_RBRACE, - ACTIONS(7392), 1, - sym__entry_separator, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4342), 1, + sym_block, STATE(4682), 1, sym_comment, - [127740] = 4, + [127800] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4081), 1, + sym_block, STATE(4683), 1, sym_comment, - STATE(5024), 1, - sym__expr_parenthesized_immediate, - [127753] = 4, + [127813] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8257), 1, - anon_sym_RBRACE, - ACTIONS(8259), 1, - sym__entry_separator, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4636), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4684), 1, sym_comment, - [127766] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7210), 1, - sym__entry_separator, - STATE(4685), 1, - sym_comment, - [127779] = 4, + [127826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(4521), 1, + STATE(3184), 1, sym_block, + STATE(4685), 1, + sym_comment, + [127839] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1621), 1, + sym__entry_separator, + STATE(1497), 1, + aux_sym__types_body_repeat2, STATE(4686), 1, sym_comment, - [127792] = 4, + [127852] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4487), 1, - sym_block, + ACTIONS(6317), 1, + anon_sym_DOLLAR2, + ACTIONS(8259), 1, + anon_sym_RBRACK, STATE(4687), 1, sym_comment, - [127805] = 4, + [127865] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(4488), 1, + STATE(4099), 1, sym_block, STATE(4688), 1, sym_comment, - [127818] = 4, - ACTIONS(3), 1, + [127878] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4418), 1, - sym_block, + ACTIONS(8261), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4689), 1, sym_comment, - [127831] = 4, + STATE(4729), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [127891] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(4560), 1, + STATE(4101), 1, sym_block, STATE(4690), 1, sym_comment, - [127844] = 4, + [127904] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(4334), 1, + STATE(4445), 1, sym_block, STATE(4691), 1, sym_comment, - [127857] = 4, - ACTIONS(3), 1, + [127917] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4341), 1, - sym_block, + ACTIONS(7583), 1, + anon_sym_RBRACE, + ACTIONS(7585), 1, + sym__entry_separator, STATE(4692), 1, sym_comment, - [127870] = 4, + [127930] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4489), 1, - sym_block, + ACTIONS(5107), 1, + anon_sym_LPAREN2, STATE(4693), 1, sym_comment, - [127883] = 4, + STATE(4901), 1, + sym__expr_parenthesized_immediate, + [127943] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4419), 1, - sym_block, STATE(4694), 1, sym_comment, - [127896] = 4, - ACTIONS(3), 1, + ACTIONS(1551), 2, + sym__table_head_separator, + anon_sym_DOT2, + [127954] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, - anon_sym_LBRACE, + ACTIONS(2604), 1, + sym__entry_separator, + ACTIONS(2606), 1, + anon_sym_RBRACE, STATE(4695), 1, sym_comment, - [127909] = 4, + [127967] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(4420), 1, + STATE(4537), 1, sym_block, STATE(4696), 1, sym_comment, - [127922] = 4, + [127980] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1870), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, - sym__unquoted_pattern, + STATE(4493), 1, + sym_block, STATE(4697), 1, sym_comment, - [127935] = 4, + [127993] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2501), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - ACTIONS(2503), 1, - sym__unquoted_pattern, + STATE(4241), 1, + sym_block, STATE(4698), 1, sym_comment, - [127948] = 4, + [128006] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(4561), 1, + STATE(4539), 1, sym_block, STATE(4699), 1, sym_comment, - [127961] = 4, - ACTIONS(103), 1, + [128019] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_COLON2, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(1956), 1, + sym__unquoted_pattern, + ACTIONS(2568), 1, + anon_sym_LBRACE, STATE(4700), 1, sym_comment, - [127974] = 4, + [128032] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1975), 1, - aux_sym__types_body_repeat2, + ACTIONS(8263), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4689), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(4701), 1, sym_comment, - [127987] = 4, - ACTIONS(3), 1, + [128045] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4422), 1, - sym_block, + ACTIONS(4727), 1, + sym__entry_separator, + STATE(2250), 1, + aux_sym__types_body_repeat2, STATE(4702), 1, sym_comment, - [128000] = 4, - ACTIONS(3), 1, + [128058] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4492), 1, - sym_block, + ACTIONS(8265), 1, + aux_sym__unquoted_with_expr_token1, STATE(4703), 1, sym_comment, - [128013] = 4, - ACTIONS(3), 1, + STATE(4750), 1, + aux_sym__unquoted_with_expr_repeat1, + [128071] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4081), 1, - sym_block, + ACTIONS(3843), 1, + sym__entry_separator, + ACTIONS(8267), 1, + anon_sym_RBRACE, STATE(4704), 1, sym_comment, - [128026] = 4, + [128084] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(4082), 1, + STATE(4408), 1, sym_block, STATE(4705), 1, sym_comment, - [128039] = 4, - ACTIONS(3), 1, + [128097] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(8261), 1, - anon_sym_RBRACK, + ACTIONS(4437), 1, + sym__entry_separator, + STATE(2129), 1, + aux_sym__types_body_repeat2, STATE(4706), 1, sym_comment, - [128052] = 4, + [128110] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4269), 1, - sym_block, STATE(4707), 1, sym_comment, - [128065] = 4, - ACTIONS(103), 1, + ACTIONS(8270), 2, + sym__newline, + anon_sym_SEMI, + [128121] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8263), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(4511), 1, + sym_block, STATE(4708), 1, sym_comment, - STATE(4735), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128078] = 4, + [128134] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8265), 1, - anon_sym_GT2, - ACTIONS(8267), 1, - sym__entry_separator, - STATE(4709), 1, + ACTIONS(8272), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4709), 2, sym_comment, - [128091] = 4, - ACTIONS(103), 1, + aux_sym__unquoted_with_expr_repeat1, + [128145] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6894), 1, - sym__entry_separator, - ACTIONS(8269), 1, - anon_sym_RBRACK, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(4513), 1, + sym_block, STATE(4710), 1, sym_comment, - [128104] = 4, - ACTIONS(103), 1, + [128158] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6922), 1, - sym__entry_separator, - ACTIONS(8271), 1, - anon_sym_RBRACK, + ACTIONS(8275), 1, + sym_identifier, + ACTIONS(8277), 1, + anon_sym_DOLLAR, STATE(4711), 1, sym_comment, - [128117] = 3, + [128171] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4712), 1, sym_comment, - ACTIONS(8049), 2, - anon_sym_GT2, - anon_sym_AT2, - [128128] = 4, + ACTIONS(1547), 2, + sym__table_head_separator, + anon_sym_DOT2, + [128182] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(1018), 1, anon_sym_LBRACE, - ACTIONS(1984), 1, + ACTIONS(2660), 1, sym__unquoted_pattern, STATE(4713), 1, sym_comment, - [128141] = 4, - ACTIONS(103), 1, + [128195] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8273), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4351), 1, + sym_block, STATE(4714), 1, sym_comment, - [128154] = 4, - ACTIONS(3), 1, + [128208] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8275), 1, - anon_sym_def, - ACTIONS(8277), 1, - anon_sym_extern, + ACTIONS(8279), 1, + aux_sym__unquoted_with_expr_token1, STATE(4715), 1, sym_comment, - [128167] = 4, - ACTIONS(103), 1, + STATE(4753), 1, + aux_sym__unquoted_with_expr_repeat1, + [128221] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3757), 1, - sym__entry_separator, - ACTIONS(8279), 1, - anon_sym_RBRACE, STATE(4716), 1, sym_comment, - [128180] = 4, + ACTIONS(1532), 2, + sym__table_head_separator, + anon_sym_DOT2, + [128232] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7633), 1, - anon_sym_RBRACE, - ACTIONS(7635), 1, + ACTIONS(1936), 1, sym__entry_separator, + ACTIONS(1938), 1, + anon_sym_RBRACE, STATE(4717), 1, sym_comment, - [128193] = 4, + [128245] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(4384), 1, + STATE(3126), 1, sym_block, STATE(4718), 1, sym_comment, - [128206] = 4, - ACTIONS(3), 1, + [128258] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4523), 1, - sym_block, + ACTIONS(8281), 1, + aux_sym__unquoted_with_expr_token1, STATE(4719), 1, sym_comment, - [128219] = 4, + STATE(4759), 1, + aux_sym__unquoted_with_expr_repeat1, + [128271] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, + ACTIONS(8283), 1, + anon_sym_GT2, + ACTIONS(8285), 1, sym__entry_separator, - ACTIONS(2637), 1, - anon_sym_RBRACE, STATE(4720), 1, sym_comment, - [128232] = 4, - ACTIONS(103), 1, + [128284] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8282), 1, + ACTIONS(6317), 1, + anon_sym_DOLLAR2, + ACTIONS(8287), 1, anon_sym_RBRACK, - ACTIONS(8284), 1, - sym__entry_separator, STATE(4721), 1, sym_comment, - [128245] = 4, - ACTIONS(3), 1, + [128297] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4562), 1, - sym_block, + ACTIONS(4962), 1, + sym__entry_separator, + STATE(2409), 1, + aux_sym__types_body_repeat2, STATE(4722), 1, sym_comment, - [128258] = 4, - ACTIONS(3), 1, + [128310] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2523), 1, - anon_sym_LBRACE, + ACTIONS(2568), 1, + sym__entry_separator, + ACTIONS(2570), 1, + anon_sym_RBRACE, STATE(4723), 1, sym_comment, - [128271] = 4, - ACTIONS(3), 1, + [128323] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4338), 1, - sym_block, STATE(4724), 1, sym_comment, - [128284] = 4, + ACTIONS(2064), 2, + anon_sym_POUND_BANG, + sym__newline, + [128334] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8286), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4663), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8289), 1, + anon_sym_LPAREN2, + ACTIONS(8291), 1, + aux_sym__record_key_token1, STATE(4725), 1, sym_comment, - [128297] = 4, - ACTIONS(3), 1, + [128347] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3076), 1, - sym_block, + ACTIONS(8293), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4726), 1, sym_comment, - [128310] = 4, + STATE(4757), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [128360] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(8295), 1, + anon_sym_RBRACE, + ACTIONS(8297), 1, sym__entry_separator, - STATE(1496), 1, - aux_sym__types_body_repeat2, STATE(4727), 1, sym_comment, - [128323] = 4, - ACTIONS(103), 1, + [128373] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8288), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4708), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(4434), 1, + sym_block, STATE(4728), 1, sym_comment, - [128336] = 4, + [128386] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - STATE(2402), 1, - aux_sym__types_body_repeat2, - STATE(4729), 1, + ACTIONS(8299), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4729), 2, sym_comment, - [128349] = 4, - ACTIONS(103), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [128397] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5963), 1, - anon_sym_RBRACK, - ACTIONS(5965), 1, - sym__entry_separator, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(4562), 1, + sym_block, STATE(4730), 1, sym_comment, - [128362] = 4, + [128410] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6115), 1, - sym__entry_separator, - ACTIONS(6117), 1, - anon_sym_RBRACK, + ACTIONS(8302), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4670), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4731), 1, sym_comment, - [128375] = 4, + [128423] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4268), 1, sym__entry_separator, - STATE(2252), 1, + STATE(1990), 1, aux_sym__types_body_repeat2, STATE(4732), 1, sym_comment, - [128388] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4733), 1, - sym_comment, - ACTIONS(1522), 2, - sym__table_head_separator, - anon_sym_DOT2, - [128399] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4563), 1, - sym_block, - STATE(4734), 1, + [128436] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7593), 1, + anon_sym_RBRACE, + ACTIONS(7595), 1, + sym__entry_separator, + STATE(4733), 1, sym_comment, - [128412] = 3, + [128449] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8290), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4735), 2, + ACTIONS(8304), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4672), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4734), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128423] = 4, + [128462] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(1621), 1, sym__entry_separator, - STATE(1979), 1, + STATE(1494), 1, aux_sym__types_body_repeat2, - STATE(4736), 1, + STATE(4735), 1, sym_comment, - [128436] = 4, - ACTIONS(3), 1, + [128475] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4486), 1, - sym_block, - STATE(4737), 1, + ACTIONS(8306), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4709), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(4736), 1, sym_comment, - [128449] = 4, + [128488] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(4533), 1, + STATE(3178), 1, sym_block, - STATE(4738), 1, + STATE(4737), 1, sym_comment, - [128462] = 4, + [128501] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8293), 1, + ACTIONS(8308), 1, aux_sym__unquoted_with_expr_token1, - STATE(4739), 1, - sym_comment, - STATE(4755), 1, + STATE(4709), 1, aux_sym__unquoted_with_expr_repeat1, - [128475] = 4, + STATE(4738), 1, + sym_comment, + [128514] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(4535), 1, + STATE(4127), 1, sym_block, - STATE(4740), 1, + STATE(4739), 1, sym_comment, - [128488] = 4, + [128527] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, + ACTIONS(4268), 1, + sym__entry_separator, + STATE(4617), 1, + aux_sym__types_body_repeat2, + STATE(4740), 1, + sym_comment, + [128540] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8310), 1, + anon_sym_def, + ACTIONS(8312), 1, + anon_sym_extern, STATE(4741), 1, sym_comment, - [128501] = 4, - ACTIONS(103), 1, + [128553] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8295), 1, - anon_sym_RBRACK, - ACTIONS(8297), 1, - sym__entry_separator, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4130), 1, + sym_block, STATE(4742), 1, sym_comment, - [128514] = 3, + [128566] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4140), 1, + sym_block, STATE(4743), 1, sym_comment, - ACTIONS(1537), 2, - sym__table_head_separator, - anon_sym_DOT2, - [128525] = 4, - ACTIONS(103), 1, + [128579] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - STATE(2120), 1, - aux_sym__types_body_repeat2, + ACTIONS(1762), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8137), 1, + aux_sym__immediate_decimal_token5, STATE(4744), 1, sym_comment, - [128538] = 4, + [128592] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8299), 1, - sym__newline, - ACTIONS(8301), 1, - sym__space, + ACTIONS(8314), 1, + anon_sym_RBRACE, + ACTIONS(8316), 1, + sym__entry_separator, STATE(4745), 1, sym_comment, - [128551] = 4, - ACTIONS(103), 1, + [128605] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8303), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4143), 1, + sym_block, STATE(4746), 1, sym_comment, - STATE(4757), 1, - aux_sym__unquoted_with_expr_repeat1, - [128564] = 4, + [128618] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(2640), 1, anon_sym_LBRACE, - STATE(4500), 1, - sym_block, + ACTIONS(2646), 1, + sym__unquoted_pattern, STATE(4747), 1, sym_comment, - [128577] = 4, + [128631] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2575), 1, + ACTIONS(7434), 1, + anon_sym_RBRACK, + ACTIONS(7436), 1, sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACE, STATE(4748), 1, sym_comment, - [128590] = 4, - ACTIONS(103), 1, + [128644] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(4367), 1, - aux_sym__types_body_repeat2, + ACTIONS(1812), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8318), 1, + aux_sym__immediate_decimal_token5, STATE(4749), 1, sym_comment, - [128603] = 4, + [128657] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, + ACTIONS(8320), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4709), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4750), 1, sym_comment, - [128616] = 4, - ACTIONS(103), 1, + [128670] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8305), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(4368), 1, + sym_block, STATE(4751), 1, sym_comment, - STATE(4764), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128629] = 4, - ACTIONS(3), 1, + [128683] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(8307), 1, - anon_sym_RBRACK, + ACTIONS(7660), 1, + anon_sym_RBRACE, + ACTIONS(7662), 1, + sym__entry_separator, STATE(4752), 1, sym_comment, - [128642] = 4, + [128696] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, + ACTIONS(8322), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4709), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4753), 1, sym_comment, - [128655] = 4, - ACTIONS(103), 1, + [128709] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(4563), 1, + sym_block, STATE(4754), 1, sym_comment, - [128668] = 4, + [128722] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8309), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8324), 1, + anon_sym_RBRACE, + ACTIONS(8326), 1, + sym__entry_separator, STATE(4755), 1, sym_comment, - [128681] = 4, - ACTIONS(3), 1, + [128735] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3106), 1, - sym_block, - STATE(4756), 1, + ACTIONS(8328), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4756), 2, sym_comment, - [128694] = 4, + aux_sym__unquoted_in_record_with_expr_repeat1, + [128746] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8311), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4623), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8331), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4729), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(4757), 1, sym_comment, - [128707] = 4, - ACTIONS(103), 1, + [128759] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - STATE(1491), 1, - aux_sym__types_body_repeat2, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(3395), 1, + sym_block, STATE(4758), 1, sym_comment, - [128720] = 4, + [128772] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3490), 1, - sym__space, - STATE(1407), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(8333), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4709), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4759), 1, sym_comment, - [128733] = 4, + [128785] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6061), 1, - sym__entry_separator, - ACTIONS(6063), 1, - anon_sym_GT2, + ACTIONS(8335), 1, + aux_sym__unquoted_with_expr_token1, STATE(4760), 1, sym_comment, - [128746] = 4, - ACTIONS(103), 1, + STATE(4764), 1, + aux_sym__unquoted_with_expr_repeat1, + [128798] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8313), 1, - anon_sym_RBRACE, - ACTIONS(8315), 1, - sym__entry_separator, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(3341), 1, + sym_block, STATE(4761), 1, sym_comment, - [128759] = 4, + [128811] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6065), 1, + ACTIONS(4409), 1, sym__entry_separator, - ACTIONS(6067), 1, - anon_sym_GT2, + STATE(2118), 1, + aux_sym__types_body_repeat2, STATE(4762), 1, sym_comment, - [128772] = 4, + [128824] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(3159), 1, + STATE(4433), 1, sym_block, STATE(4763), 1, sym_comment, - [128785] = 4, + [128837] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8317), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4735), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(8337), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4709), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4764), 1, sym_comment, - [128798] = 4, + [128850] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7654), 1, - anon_sym_RBRACE, - ACTIONS(7656), 1, - sym__entry_separator, + ACTIONS(8339), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4736), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4765), 1, sym_comment, - [128811] = 3, - ACTIONS(3), 1, + [128863] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1002), 1, + anon_sym_RBRACE, + ACTIONS(1010), 1, + sym__entry_separator, STATE(4766), 1, sym_comment, - ACTIONS(8319), 2, - anon_sym_RBRACK, - sym_hex_digit, - [128822] = 4, + [128876] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - STATE(2118), 1, - aux_sym__types_body_repeat2, + ACTIONS(8341), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4738), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4767), 1, sym_comment, - [128835] = 4, - ACTIONS(103), 1, + [128889] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8321), 1, - anon_sym_RBRACE, - ACTIONS(8323), 1, - sym__entry_separator, + ACTIONS(3777), 1, + anon_sym_LBRACE, + STATE(4507), 1, + sym_block, STATE(4768), 1, sym_comment, - [128848] = 4, - ACTIONS(3), 1, + [128902] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8167), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(994), 1, + anon_sym_RBRACE, + ACTIONS(1018), 1, + sym__entry_separator, STATE(4769), 1, sym_comment, - [128861] = 4, - ACTIONS(103), 1, + [128915] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8325), 1, - anon_sym_RBRACK, - ACTIONS(8327), 1, - sym__entry_separator, + ACTIONS(8343), 1, + anon_sym_def, + ACTIONS(8345), 1, + anon_sym_extern, STATE(4770), 1, sym_comment, - [128874] = 4, + [128928] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(1606), 1, + sym__unquoted_pattern, + ACTIONS(1936), 1, anon_sym_LBRACE, - STATE(4240), 1, - sym_block, STATE(4771), 1, sym_comment, - [128887] = 4, - ACTIONS(103), 1, + [128941] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8329), 1, - anon_sym_LPAREN2, - ACTIONS(8331), 1, - aux_sym__record_key_token1, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4171), 1, + sym_block, STATE(4772), 1, sym_comment, - [128900] = 4, + [128954] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8333), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4174), 1, + sym_block, STATE(4773), 1, sym_comment, - [128913] = 4, + [128967] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7662), 1, + ACTIONS(7667), 1, anon_sym_RBRACE, - ACTIONS(7664), 1, + ACTIONS(7669), 1, sym__entry_separator, STATE(4774), 1, sym_comment, - [128926] = 4, - ACTIONS(103), 1, + [128980] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8335), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4657), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(960), 1, + anon_sym_LBRACE, + ACTIONS(1744), 1, + sym__unquoted_pattern, STATE(4775), 1, sym_comment, - [128939] = 4, - ACTIONS(3), 1, + [128993] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3395), 1, - sym_block, + ACTIONS(2744), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2780), 1, + anon_sym_COLON2, STATE(4776), 1, sym_comment, - [128952] = 4, + [129006] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8337), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4658), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8347), 1, + sym__newline, + ACTIONS(8349), 1, + sym__space, STATE(4777), 1, sym_comment, - [128965] = 4, - ACTIONS(103), 1, + [129019] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACE, STATE(4778), 1, sym_comment, - [128978] = 4, + ACTIONS(8351), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [129030] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - STATE(3346), 1, + STATE(4526), 1, sym_block, STATE(4779), 1, sym_comment, - [128991] = 4, - ACTIONS(103), 1, + [129043] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACE, - ACTIONS(1018), 1, - sym__entry_separator, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4164), 1, + sym_block, STATE(4780), 1, sym_comment, - [129004] = 4, + [129056] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3779), 1, anon_sym_LBRACE, - STATE(4144), 1, + STATE(4165), 1, sym_block, STATE(4781), 1, sym_comment, - [129017] = 4, + [129069] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(1810), 1, anon_sym_LBRACE, - STATE(4156), 1, - sym_block, + ACTIONS(1812), 1, + sym__unquoted_pattern, STATE(4782), 1, sym_comment, - [129030] = 4, - ACTIONS(3), 1, + [129082] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8339), 1, - sym_identifier, - ACTIONS(8341), 1, - anon_sym_DOLLAR, + ACTIONS(4704), 1, + sym__entry_separator, + STATE(2239), 1, + aux_sym__types_body_repeat2, STATE(4783), 1, sym_comment, - [129043] = 4, + [129095] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8343), 1, - anon_sym_def, - ACTIONS(8345), 1, - anon_sym_extern, + ACTIONS(2604), 1, + anon_sym_LBRACE, + ACTIONS(2624), 1, + sym__unquoted_pattern, STATE(4784), 1, sym_comment, - [129056] = 4, - ACTIONS(103), 1, + [129108] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - STATE(2240), 1, - aux_sym__types_body_repeat2, + ACTIONS(6514), 1, + anon_sym_LPAREN2, STATE(4785), 1, sym_comment, - [129069] = 4, + STATE(5020), 1, + sym__expr_parenthesized_immediate, + [129121] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1726), 1, + ACTIONS(3777), 1, anon_sym_LBRACE, - ACTIONS(1728), 1, - sym__unquoted_pattern, + STATE(4565), 1, + sym_block, STATE(4786), 1, sym_comment, - [129082] = 4, + [129134] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - anon_sym_LBRACE, - ACTIONS(2633), 1, - sym__unquoted_pattern, + ACTIONS(8353), 1, + anon_sym_DASH2, STATE(4787), 1, sym_comment, - [129095] = 4, + STATE(5006), 1, + sym_param_short_flag, + [129147] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4348), 1, + sym_block, STATE(4788), 1, sym_comment, - STATE(4966), 1, - sym__expr_parenthesized_immediate, - [129108] = 4, - ACTIONS(103), 1, + [129160] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8347), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4650), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(3779), 1, + anon_sym_LBRACE, + STATE(4349), 1, + sym_block, STATE(4789), 1, sym_comment, - [129121] = 4, - ACTIONS(103), 1, + [129173] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__entry_separator, - ACTIONS(2569), 1, - anon_sym_RBRACE, + ACTIONS(1010), 1, + anon_sym_LBRACE, + ACTIONS(2660), 1, + sym__unquoted_pattern, STATE(4790), 1, sym_comment, - [129134] = 3, + [129186] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8349), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(5790), 1, + anon_sym_RBRACK, + ACTIONS(5792), 1, + sym__entry_separator, STATE(4791), 1, sym_comment, - [129144] = 3, - ACTIONS(3), 1, + [129199] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8351), 1, - anon_sym_DQUOTE, + ACTIONS(8355), 1, + aux_sym__str_single_quotes_token1, STATE(4792), 1, sym_comment, - [129154] = 3, + [129209] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8353), 1, - anon_sym_SQUOTE2, + ACTIONS(1645), 1, + sym__unquoted_pattern, STATE(4793), 1, sym_comment, - [129164] = 3, + [129219] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8355), 1, - anon_sym_BQUOTE2, + ACTIONS(8357), 1, + anon_sym_DQUOTE, STATE(4794), 1, sym_comment, - [129174] = 3, + [129229] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8357), 1, - anon_sym_LT, + ACTIONS(8359), 1, + anon_sym_SQUOTE2, STATE(4795), 1, sym_comment, - [129184] = 3, + [129239] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8359), 1, - anon_sym_RBRACE, + ACTIONS(8361), 1, + anon_sym_BQUOTE2, STATE(4796), 1, sym_comment, - [129194] = 3, - ACTIONS(3), 1, + [129249] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8361), 1, - anon_sym_RBRACK, + ACTIONS(8363), 1, + aux_sym_cmd_identifier_token6, STATE(4797), 1, sym_comment, - [129204] = 3, + [129259] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8363), 1, - anon_sym_RPAREN, + ACTIONS(8365), 1, + anon_sym_EQ, STATE(4798), 1, sym_comment, - [129214] = 3, + [129269] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8365), 1, - anon_sym_RPAREN, + ACTIONS(8367), 1, + anon_sym_RBRACK, STATE(4799), 1, sym_comment, - [129224] = 3, + [129279] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8367), 1, - anon_sym_DQUOTE, + ACTIONS(8369), 1, + anon_sym_RPAREN, STATE(4800), 1, sym_comment, - [129234] = 3, + [129289] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8369), 1, - sym_raw_string_end, + ACTIONS(8371), 1, + anon_sym_RBRACE, STATE(4801), 1, sym_comment, - [129244] = 3, - ACTIONS(103), 1, + [129299] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8371), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8373), 1, + anon_sym_EQ, STATE(4802), 1, sym_comment, - [129254] = 3, + [129309] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8373), 1, - anon_sym_RBRACE, + ACTIONS(8375), 1, + anon_sym_DQUOTE, STATE(4803), 1, sym_comment, - [129264] = 3, + [129319] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8375), 1, - anon_sym_RPAREN, + ACTIONS(8377), 1, + sym_raw_string_content, STATE(4804), 1, sym_comment, - [129274] = 3, + [129329] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8377), 1, - sym_raw_string_end, + ACTIONS(8379), 1, + anon_sym_RBRACK, STATE(4805), 1, sym_comment, - [129284] = 3, - ACTIONS(3), 1, + [129339] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_RPAREN2, + ACTIONS(8381), 1, + aux_sym_cmd_identifier_token6, STATE(4806), 1, sym_comment, - [129294] = 3, + [129349] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8379), 1, - anon_sym_GT2, + ACTIONS(8383), 1, + sym_raw_string_end, STATE(4807), 1, sym_comment, - [129304] = 3, + [129359] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8381), 1, - anon_sym_GT2, + ACTIONS(8385), 1, + anon_sym_LBRACE, STATE(4808), 1, sym_comment, - [129314] = 3, + [129369] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8383), 1, - anon_sym_RBRACK, + ACTIONS(8387), 1, + sym_raw_string_end, STATE(4809), 1, sym_comment, - [129324] = 3, + [129379] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(301), 1, + ACTIONS(8389), 1, anon_sym_RBRACE, STATE(4810), 1, sym_comment, - [129334] = 3, + [129389] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8385), 1, - anon_sym_RBRACE, + ACTIONS(8391), 1, + anon_sym_RBRACK, STATE(4811), 1, sym_comment, - [129344] = 3, - ACTIONS(3), 1, + [129399] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8387), 1, - anon_sym_DQUOTE, + ACTIONS(8393), 1, + aux_sym__str_back_ticks_token1, STATE(4812), 1, sym_comment, - [129354] = 3, + [129409] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8389), 1, - anon_sym_SQUOTE2, + ACTIONS(359), 1, + anon_sym_RPAREN2, STATE(4813), 1, sym_comment, - [129364] = 3, + [129419] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8391), 1, - anon_sym_BQUOTE2, + ACTIONS(8395), 1, + anon_sym_DQUOTE, STATE(4814), 1, sym_comment, - [129374] = 3, + [129429] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8393), 1, - anon_sym_RBRACK, + ACTIONS(8397), 1, + anon_sym_SQUOTE2, STATE(4815), 1, sym_comment, - [129384] = 3, + [129439] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8395), 1, - anon_sym_RBRACE, + ACTIONS(8399), 1, + anon_sym_BQUOTE2, STATE(4816), 1, sym_comment, - [129394] = 3, + [129449] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8397), 1, - anon_sym_RPAREN, + ACTIONS(7758), 1, + anon_sym_RBRACK, STATE(4817), 1, sym_comment, - [129404] = 3, - ACTIONS(103), 1, + [129459] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8399), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8401), 1, + anon_sym_RBRACK, STATE(4818), 1, sym_comment, - [129414] = 3, + [129469] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8401), 1, - anon_sym_RBRACE, + ACTIONS(8403), 1, + anon_sym_RPAREN, STATE(4819), 1, sym_comment, - [129424] = 3, + [129479] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8403), 1, + ACTIONS(8405), 1, anon_sym_RBRACE, STATE(4820), 1, sym_comment, - [129434] = 3, + [129489] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8405), 1, - anon_sym_DASH_GT, + ACTIONS(8407), 1, + anon_sym_RPAREN, STATE(4821), 1, sym_comment, - [129444] = 3, + [129499] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8407), 1, - sym_raw_string_end, + ACTIONS(6319), 1, + sym__unquoted_pattern_in_list, STATE(4822), 1, sym_comment, - [129454] = 3, - ACTIONS(103), 1, + [129509] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8409), 1, - aux_sym_cmd_identifier_token6, + anon_sym_EQ, STATE(4823), 1, sym_comment, - [129464] = 3, + [129519] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8411), 1, - anon_sym_DQUOTE, + sym_raw_string_end, STATE(4824), 1, sym_comment, - [129474] = 3, - ACTIONS(103), 1, + [129529] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8413), 1, - aux_sym_cmd_identifier_token2, + anon_sym_DASH_GT, STATE(4825), 1, sym_comment, - [129484] = 3, + [129539] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8415), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, STATE(4826), 1, sym_comment, - [129494] = 3, + [129549] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8417), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, STATE(4827), 1, sym_comment, - [129504] = 3, + [129559] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8419), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, STATE(4828), 1, sym_comment, - [129514] = 3, + [129569] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8421), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE2, STATE(4829), 1, sym_comment, - [129524] = 3, + [129579] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8423), 1, - anon_sym_SQUOTE2, + sym__table_head_separator, STATE(4830), 1, sym_comment, - [129534] = 3, + [129589] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8425), 1, - anon_sym_BQUOTE2, + anon_sym_DQUOTE, STATE(4831), 1, sym_comment, - [129544] = 3, + [129599] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8427), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE2, STATE(4832), 1, sym_comment, - [129554] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8331), 1, - aux_sym__record_key_token1, - STATE(4833), 1, - sym_comment, - [129564] = 3, + [129609] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8429), 1, - anon_sym_SQUOTE2, - STATE(4834), 1, + anon_sym_BQUOTE2, + STATE(4833), 1, sym_comment, - [129574] = 3, + [129619] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8431), 1, anon_sym_RPAREN, + STATE(4834), 1, + sym_comment, + [129629] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8433), 1, + aux_sym_cmd_identifier_token6, STATE(4835), 1, sym_comment, - [129584] = 3, + [129639] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8433), 1, - anon_sym_EQ, + ACTIONS(355), 1, + anon_sym_RPAREN2, STATE(4836), 1, sym_comment, - [129594] = 3, - ACTIONS(3), 1, + [129649] = 3, + ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8435), 1, - sym_raw_string_end, + aux_sym_cmd_identifier_token6, STATE(4837), 1, sym_comment, - [129604] = 3, + [129659] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, + ACTIONS(8437), 1, + anon_sym_RBRACE, STATE(4838), 1, sym_comment, - [129614] = 3, + [129669] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_RPAREN, + ACTIONS(8439), 1, + sym_raw_string_end, STATE(4839), 1, sym_comment, - [129624] = 3, + [129679] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8439), 1, + ACTIONS(8441), 1, anon_sym_RBRACK, STATE(4840), 1, sym_comment, - [129634] = 3, - ACTIONS(103), 1, + [129689] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(2559), 1, + sym__unquoted_pattern, STATE(4841), 1, sym_comment, - [129644] = 3, + [129699] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8441), 1, - anon_sym_RBRACK, + ACTIONS(8443), 1, + anon_sym_EQ, STATE(4842), 1, sym_comment, - [129654] = 3, + [129709] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8443), 1, - anon_sym_DQUOTE, + ACTIONS(8445), 1, + anon_sym_EQ, STATE(4843), 1, sym_comment, - [129664] = 3, + [129719] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8445), 1, - anon_sym_SQUOTE2, + ACTIONS(8447), 1, + anon_sym_RBRACK, STATE(4844), 1, sym_comment, - [129674] = 3, + [129729] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8447), 1, - anon_sym_BQUOTE2, + ACTIONS(8449), 1, + anon_sym_DQUOTE, STATE(4845), 1, sym_comment, - [129684] = 3, + [129739] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8449), 1, - anon_sym_RPAREN, + ACTIONS(8451), 1, + anon_sym_SQUOTE2, STATE(4846), 1, sym_comment, - [129694] = 3, + [129749] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8451), 1, - sym_raw_string_end, + ACTIONS(8453), 1, + anon_sym_BQUOTE2, STATE(4847), 1, sym_comment, - [129704] = 3, + [129759] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8453), 1, - sym_identifier, + ACTIONS(8455), 1, + anon_sym_RPAREN, STATE(4848), 1, sym_comment, - [129714] = 3, - ACTIONS(3), 1, + [129769] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8455), 1, - anon_sym_DASH_GT, + ACTIONS(1876), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4849), 1, sym_comment, - [129724] = 3, + [129779] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8457), 1, - sym_raw_string_end, + ACTIONS(8259), 1, + anon_sym_RBRACK, STATE(4850), 1, sym_comment, - [129734] = 3, + [129789] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5048), 1, - sym__unquoted_pattern, + ACTIONS(8457), 1, + anon_sym_RBRACE, STATE(4851), 1, sym_comment, - [129744] = 3, + [129799] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8459), 1, - anon_sym_RBRACE, + sym_raw_string_end, STATE(4852), 1, sym_comment, - [129754] = 3, + [129809] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, + ACTIONS(5271), 1, + anon_sym_EQ2, STATE(4853), 1, sym_comment, - [129764] = 3, + [129819] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8461), 1, - anon_sym_RBRACK, + ACTIONS(2624), 1, + sym__unquoted_pattern_in_record, STATE(4854), 1, sym_comment, - [129774] = 3, + [129829] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8463), 1, - anon_sym_DQUOTE, + ACTIONS(8461), 1, + anon_sym_RPAREN, STATE(4855), 1, sym_comment, - [129784] = 3, + [129839] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8465), 1, - anon_sym_SQUOTE2, + ACTIONS(8463), 1, + ts_builtin_sym_end, STATE(4856), 1, sym_comment, - [129794] = 3, + [129849] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8467), 1, - anon_sym_BQUOTE2, + ACTIONS(8465), 1, + anon_sym_DQUOTE, STATE(4857), 1, sym_comment, - [129804] = 3, + [129859] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8469), 1, - anon_sym_RBRACE, + ACTIONS(8467), 1, + anon_sym_SQUOTE2, STATE(4858), 1, sym_comment, - [129814] = 3, + [129869] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8471), 1, - anon_sym_RBRACE, + ACTIONS(8469), 1, + anon_sym_BQUOTE2, STATE(4859), 1, sym_comment, - [129824] = 3, + [129879] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8473), 1, - sym_raw_string_end, + ACTIONS(8471), 1, + sym_identifier, STATE(4860), 1, sym_comment, - [129834] = 3, + [129889] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8473), 1, + anon_sym_RBRACE, STATE(4861), 1, sym_comment, - [129844] = 3, + [129899] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8475), 1, - sym_identifier, + sym_raw_string_end, STATE(4862), 1, sym_comment, - [129854] = 3, + [129909] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8477), 1, - anon_sym_RBRACK, + anon_sym_GT2, STATE(4863), 1, sym_comment, - [129864] = 3, + [129919] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8479), 1, - anon_sym_DQUOTE, + ACTIONS(2660), 1, + sym__unquoted_pattern, STATE(4864), 1, sym_comment, - [129874] = 3, - ACTIONS(3), 1, + [129929] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8481), 1, - anon_sym_SQUOTE2, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, STATE(4865), 1, sym_comment, - [129884] = 3, + [129939] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8483), 1, - anon_sym_BQUOTE2, + ACTIONS(8479), 1, + anon_sym_DQUOTE, STATE(4866), 1, sym_comment, - [129894] = 3, + [129949] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, + ACTIONS(8481), 1, + anon_sym_SQUOTE2, STATE(4867), 1, sym_comment, - [129904] = 3, + [129959] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8485), 1, - anon_sym_RPAREN, + ACTIONS(8483), 1, + anon_sym_BQUOTE2, STATE(4868), 1, sym_comment, - [129914] = 3, + [129969] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8487), 1, - sym_raw_string_end, + ACTIONS(8485), 1, + anon_sym_RBRACE, STATE(4869), 1, sym_comment, - [129924] = 3, - ACTIONS(3), 1, + [129979] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8489), 1, - anon_sym_RBRACK, + ACTIONS(2744), 1, + aux_sym_cmd_identifier_token2, STATE(4870), 1, sym_comment, - [129934] = 3, + [129989] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8491), 1, - anon_sym_GT2, + ACTIONS(8487), 1, + sym_raw_string_end, STATE(4871), 1, sym_comment, - [129944] = 3, + [129999] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, + ACTIONS(8489), 1, + anon_sym_COLON2, STATE(4872), 1, sym_comment, - [129954] = 3, + [130009] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8493), 1, - anon_sym_DQUOTE, + ACTIONS(8491), 1, + sym_attribute_identifier, STATE(4873), 1, sym_comment, - [129964] = 3, + [130019] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8495), 1, - anon_sym_SQUOTE2, + ACTIONS(6808), 1, + sym__unquoted_pattern_in_record, STATE(4874), 1, sym_comment, - [129974] = 3, + [130029] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8497), 1, - anon_sym_BQUOTE2, + ACTIONS(8493), 1, + anon_sym_DQUOTE, STATE(4875), 1, sym_comment, - [129984] = 3, + [130039] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8499), 1, - anon_sym_RPAREN, + ACTIONS(8495), 1, + anon_sym_SQUOTE2, STATE(4876), 1, sym_comment, - [129994] = 3, - ACTIONS(103), 1, + [130049] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8497), 1, + anon_sym_BQUOTE2, STATE(4877), 1, sym_comment, - [130004] = 3, + [130059] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8501), 1, - sym_raw_string_end, + ACTIONS(5249), 1, + anon_sym_EQ2, STATE(4878), 1, sym_comment, - [130014] = 3, + [130069] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7841), 1, - anon_sym_LBRACE, + ACTIONS(8499), 1, + anon_sym_RPAREN, STATE(4879), 1, sym_comment, - [130024] = 3, + [130079] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8503), 1, - anon_sym_DQUOTE, + ACTIONS(8501), 1, + sym_raw_string_end, STATE(4880), 1, sym_comment, - [130034] = 3, + [130089] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8505), 1, - anon_sym_SQUOTE2, + ACTIONS(8503), 1, + anon_sym_RBRACE, STATE(4881), 1, sym_comment, - [130044] = 3, + [130099] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8507), 1, - anon_sym_BQUOTE2, + ACTIONS(8505), 1, + anon_sym_DQUOTE, STATE(4882), 1, sym_comment, - [130054] = 3, + [130109] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8509), 1, - sym_raw_string_end, + ACTIONS(8507), 1, + anon_sym_SQUOTE2, STATE(4883), 1, sym_comment, - [130064] = 3, + [130119] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, + ACTIONS(8509), 1, + anon_sym_BQUOTE2, STATE(4884), 1, sym_comment, - [130074] = 3, + [130129] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8511), 1, - sym_raw_string_end, + sym_long_flag_identifier, STATE(4885), 1, sym_comment, - [130084] = 3, - ACTIONS(3), 1, + [130139] = 3, + ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8513), 1, - anon_sym_RBRACK, + aux_sym_shebang_token1, STATE(4886), 1, sym_comment, - [130094] = 3, + [130149] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8515), 1, - anon_sym_DQUOTE, + sym_raw_string_end, STATE(4887), 1, sym_comment, - [130104] = 3, + [130159] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8517), 1, - anon_sym_SQUOTE2, + anon_sym_DQUOTE, STATE(4888), 1, sym_comment, - [130114] = 3, + [130169] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8519), 1, - anon_sym_BQUOTE2, + anon_sym_SQUOTE2, STATE(4889), 1, sym_comment, - [130124] = 3, + [130179] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8521), 1, - anon_sym_SQUOTE2, + anon_sym_BQUOTE2, STATE(4890), 1, sym_comment, - [130134] = 3, + [130189] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8523), 1, - anon_sym_RPAREN, + anon_sym_GT2, STATE(4891), 1, sym_comment, - [130144] = 3, + [130199] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1868), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4892), 1, + sym_comment, + [130209] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8525), 1, sym_raw_string_end, - STATE(4892), 1, + STATE(4893), 1, sym_comment, - [130154] = 3, + [130219] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8527), 1, - anon_sym_RPAREN, - STATE(4893), 1, + sym_param_short_flag_identifier, + STATE(4894), 1, sym_comment, - [130164] = 3, + [130229] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8529), 1, anon_sym_DQUOTE, - STATE(4894), 1, + STATE(4895), 1, sym_comment, - [130174] = 3, + [130239] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8531), 1, anon_sym_SQUOTE2, - STATE(4895), 1, + STATE(4896), 1, sym_comment, - [130184] = 3, + [130249] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8533), 1, anon_sym_BQUOTE2, - STATE(4896), 1, - sym_comment, - [130194] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8535), 1, - anon_sym_GT2, STATE(4897), 1, sym_comment, - [130204] = 3, + [130259] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(297), 1, - anon_sym_RBRACE, + ACTIONS(8535), 1, + sym_raw_string_end, STATE(4898), 1, sym_comment, - [130214] = 3, + [130269] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8537), 1, - sym_raw_string_end, + anon_sym_RBRACE, STATE(4899), 1, sym_comment, - [130224] = 3, + [130279] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(309), 1, - anon_sym_RBRACE, + ACTIONS(8539), 1, + sym_raw_string_end, STATE(4900), 1, sym_comment, - [130234] = 3, - ACTIONS(3), 1, + [130289] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8539), 1, - anon_sym_DQUOTE, + ACTIONS(8541), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4901), 1, sym_comment, - [130244] = 3, + [130299] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8541), 1, - anon_sym_SQUOTE2, + ACTIONS(8543), 1, + anon_sym_DQUOTE, STATE(4902), 1, sym_comment, - [130254] = 3, + [130309] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8543), 1, - anon_sym_BQUOTE2, + ACTIONS(8545), 1, + anon_sym_SQUOTE2, STATE(4903), 1, sym_comment, - [130264] = 3, + [130319] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8545), 1, - anon_sym_RBRACE, + ACTIONS(8547), 1, + anon_sym_BQUOTE2, STATE(4904), 1, sym_comment, - [130274] = 3, - ACTIONS(103), 1, + [130329] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8549), 1, + anon_sym_RBRACE, STATE(4905), 1, sym_comment, - [130284] = 3, + [130339] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8547), 1, - sym_raw_string_end, + ACTIONS(8551), 1, + anon_sym_RPAREN, STATE(4906), 1, sym_comment, - [130294] = 3, + [130349] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8549), 1, - anon_sym_RBRACE, + ACTIONS(8553), 1, + sym_raw_string_end, STATE(4907), 1, sym_comment, - [130304] = 3, + [130359] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8551), 1, - anon_sym_DQUOTE, + ACTIONS(6924), 1, + sym__unquoted_pattern, STATE(4908), 1, sym_comment, - [130314] = 3, + [130369] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8553), 1, - anon_sym_SQUOTE2, + ACTIONS(8555), 1, + anon_sym_DQUOTE, STATE(4909), 1, sym_comment, - [130324] = 3, + [130379] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8555), 1, - anon_sym_BQUOTE2, + ACTIONS(8557), 1, + anon_sym_SQUOTE2, STATE(4910), 1, sym_comment, - [130334] = 3, + [130389] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8557), 1, - anon_sym_RBRACK, + ACTIONS(8559), 1, + anon_sym_BQUOTE2, STATE(4911), 1, sym_comment, - [130344] = 3, + [130399] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8559), 1, - sym_raw_string_end, + ACTIONS(8561), 1, + anon_sym_DQUOTE, STATE(4912), 1, sym_comment, - [130354] = 3, + [130409] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8561), 1, - anon_sym_DQUOTE, + ACTIONS(8563), 1, + sym_raw_string_end, STATE(4913), 1, sym_comment, - [130364] = 3, + [130419] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8563), 1, - anon_sym_SQUOTE2, + ACTIONS(8565), 1, + anon_sym_DQUOTE, STATE(4914), 1, sym_comment, - [130374] = 3, + [130429] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8565), 1, - anon_sym_BQUOTE2, + ACTIONS(8567), 1, + anon_sym_SQUOTE2, STATE(4915), 1, sym_comment, - [130384] = 3, + [130439] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8567), 1, - sym_raw_string_content, + ACTIONS(8569), 1, + anon_sym_BQUOTE2, STATE(4916), 1, sym_comment, - [130394] = 3, + [130449] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7770), 1, - anon_sym_EQ_GT, + ACTIONS(8571), 1, + sym_raw_string_content, STATE(4917), 1, sym_comment, - [130404] = 3, + [130459] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7342), 1, - sym__unquoted_pattern, + ACTIONS(8415), 1, + anon_sym_LBRACE, STATE(4918), 1, sym_comment, - [130414] = 3, + [130469] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8569), 1, + ACTIONS(8573), 1, anon_sym_RBRACE, STATE(4919), 1, sym_comment, - [130424] = 3, + [130479] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2132), 1, - anon_sym_LBRACK2, + ACTIONS(8575), 1, + anon_sym_RBRACE, STATE(4920), 1, sym_comment, - [130434] = 3, - ACTIONS(103), 1, + [130489] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8571), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(2072), 1, + anon_sym_LBRACK2, STATE(4921), 1, sym_comment, - [130444] = 3, + [130499] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8573), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(8577), 1, + aux_sym__str_single_quotes_token1, STATE(4922), 1, sym_comment, - [130454] = 3, + [130509] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8575), 1, - aux_sym_shebang_token1, + ACTIONS(8579), 1, + aux_sym__str_back_ticks_token1, STATE(4923), 1, sym_comment, - [130464] = 3, + [130519] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8577), 1, - anon_sym_in, + ACTIONS(8581), 1, + anon_sym_GT2, STATE(4924), 1, sym_comment, - [130474] = 3, + [130529] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8579), 1, - anon_sym_GT2, + ACTIONS(8583), 1, + anon_sym_RBRACE, STATE(4925), 1, sym_comment, - [130484] = 3, + [130539] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8581), 1, - anon_sym_RBRACK, + ACTIONS(8585), 1, + anon_sym_RBRACE, STATE(4926), 1, sym_comment, - [130494] = 3, + [130549] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_record, + ACTIONS(1744), 1, + sym__unquoted_pattern, STATE(4927), 1, sym_comment, - [130504] = 3, + [130559] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8587), 1, + anon_sym_RBRACK, STATE(4928), 1, sym_comment, - [130514] = 3, + [130569] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8583), 1, + ACTIONS(8589), 1, anon_sym_RBRACE, STATE(4929), 1, sym_comment, - [130524] = 3, + [130579] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8585), 1, - anon_sym_PIPE, + ACTIONS(8591), 1, + anon_sym_RPAREN, STATE(4930), 1, sym_comment, - [130534] = 3, + [130589] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7867), 1, - anon_sym_LBRACE, + ACTIONS(8593), 1, + anon_sym_RBRACK, STATE(4931), 1, sym_comment, - [130544] = 3, + [130599] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8587), 1, + ACTIONS(7871), 1, anon_sym_LBRACE, STATE(4932), 1, sym_comment, - [130554] = 3, + [130609] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8589), 1, - anon_sym_GT2, + ACTIONS(8595), 1, + anon_sym_LBRACE, STATE(4933), 1, sym_comment, - [130564] = 3, + [130619] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8591), 1, - anon_sym_RBRACK, + ACTIONS(2646), 1, + sym__unquoted_pattern_in_record, STATE(4934), 1, sym_comment, - [130574] = 3, + [130629] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5241), 1, - anon_sym_EQ2, + ACTIONS(8597), 1, + anon_sym_RBRACK, STATE(4935), 1, sym_comment, - [130584] = 3, - ACTIONS(103), 1, + [130639] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(2559), 1, + sym__unquoted_pattern_in_record, STATE(4936), 1, sym_comment, - [130594] = 3, + [130649] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1708), 1, - anon_sym_COLON2, + ACTIONS(8599), 1, + anon_sym_GT2, STATE(4937), 1, sym_comment, - [130604] = 3, + [130659] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8593), 1, - anon_sym_RPAREN, + ACTIONS(8601), 1, + anon_sym_SQUOTE2, STATE(4938), 1, sym_comment, - [130614] = 3, + [130669] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_DQUOTE, + ACTIONS(8603), 1, + anon_sym_RPAREN, STATE(4939), 1, sym_comment, - [130624] = 3, + [130679] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8597), 1, - anon_sym_SQUOTE2, + ACTIONS(8605), 1, + sym_raw_string_end, STATE(4940), 1, sym_comment, - [130634] = 3, + [130689] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8599), 1, - anon_sym_RBRACE, + ACTIONS(8607), 1, + anon_sym_BQUOTE2, STATE(4941), 1, sym_comment, - [130644] = 3, + [130699] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8601), 1, - anon_sym_RPAREN2, + ACTIONS(8609), 1, + anon_sym_RBRACE, STATE(4942), 1, sym_comment, - [130654] = 3, - ACTIONS(103), 1, + [130709] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8603), 1, - sym__space, + ACTIONS(8611), 1, + anon_sym_RBRACK, STATE(4943), 1, sym_comment, - [130664] = 3, - ACTIONS(3), 1, + [130719] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8605), 1, - anon_sym_RBRACK, + ACTIONS(8613), 1, + sym__space, STATE(4944), 1, sym_comment, - [130674] = 3, + [130729] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8607), 1, - anon_sym_BQUOTE2, + ACTIONS(311), 1, + anon_sym_RBRACE, STATE(4945), 1, sym_comment, - [130684] = 3, - ACTIONS(3), 1, + [130739] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6902), 1, - sym__unquoted_pattern, + ACTIONS(1876), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4946), 1, sym_comment, - [130694] = 3, + [130749] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8609), 1, - anon_sym_RBRACE, + ACTIONS(8615), 1, + anon_sym_GT2, STATE(4947), 1, sym_comment, - [130704] = 3, - ACTIONS(103), 1, + [130759] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8617), 1, + anon_sym_RPAREN, STATE(4948), 1, sym_comment, - [130714] = 3, + [130769] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8611), 1, - anon_sym_RBRACK, + ACTIONS(5227), 1, + anon_sym_EQ2, STATE(4949), 1, sym_comment, - [130724] = 3, + [130779] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8613), 1, - anon_sym_EQ, + ACTIONS(8619), 1, + anon_sym_RBRACK, STATE(4950), 1, sym_comment, - [130734] = 3, + [130789] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8615), 1, - sym__table_head_separator, + ACTIONS(8621), 1, + anon_sym_RBRACK, STATE(4951), 1, sym_comment, - [130744] = 3, - ACTIONS(103), 1, + [130799] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8617), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8623), 1, + anon_sym_EQ, STATE(4952), 1, sym_comment, - [130754] = 3, + [130809] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8619), 1, - anon_sym_GT2, + ACTIONS(1870), 1, + sym__table_head_separator, STATE(4953), 1, sym_comment, - [130764] = 3, + [130819] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8621), 1, - sym_attribute_identifier, + ACTIONS(8625), 1, + anon_sym_RBRACE, STATE(4954), 1, sym_comment, - [130774] = 3, + [130829] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8623), 1, - anon_sym_RBRACK, + ACTIONS(8627), 1, + anon_sym_RBRACE, STATE(4955), 1, sym_comment, - [130784] = 3, + [130839] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8625), 1, - anon_sym_BQUOTE2, + ACTIONS(7805), 1, + anon_sym_EQ_GT, STATE(4956), 1, sym_comment, - [130794] = 3, + [130849] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8627), 1, - sym__table_head_separator, + ACTIONS(1956), 1, + sym__unquoted_pattern, STATE(4957), 1, sym_comment, - [130804] = 3, + [130859] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8629), 1, - anon_sym_RBRACE, + anon_sym_LT, STATE(4958), 1, sym_comment, - [130814] = 3, + [130869] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8631), 1, anon_sym_EQ, STATE(4959), 1, sym_comment, - [130824] = 3, + [130879] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8633), 1, - anon_sym_EQ, + anon_sym_DQUOTE, STATE(4960), 1, sym_comment, - [130834] = 3, + [130889] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8635), 1, - anon_sym_RBRACE, + anon_sym_EQ, STATE(4961), 1, sym_comment, - [130844] = 3, - ACTIONS(103), 1, + [130899] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8637), 1, - aux_sym_cmd_identifier_token6, + anon_sym_EQ, STATE(4962), 1, sym_comment, - [130854] = 3, - ACTIONS(3), 1, + [130909] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__table_head_separator, + ACTIONS(1868), 1, + aux_sym__unquoted_with_expr_token1, STATE(4963), 1, sym_comment, - [130864] = 3, + [130919] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8639), 1, - anon_sym_RBRACE, + anon_sym_PIPE, STATE(4964), 1, sym_comment, - [130874] = 3, + [130929] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8641), 1, - anon_sym_LBRACE, + anon_sym_SQUOTE2, STATE(4965), 1, sym_comment, - [130884] = 3, - ACTIONS(103), 1, + [130939] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8643), 1, - aux_sym__unquoted_in_list_with_expr_token1, + anon_sym_BQUOTE2, STATE(4966), 1, sym_comment, - [130894] = 3, + [130949] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8645), 1, - anon_sym_EQ, + anon_sym_RBRACE, STATE(4967), 1, sym_comment, - [130904] = 3, + [130959] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8647), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, STATE(4968), 1, sym_comment, - [130914] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5287), 1, - anon_sym_EQ2, - STATE(4969), 1, - sym_comment, - [130924] = 3, + [130969] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8649), 1, aux_sym_cmd_identifier_token6, - STATE(4970), 1, + STATE(4969), 1, sym_comment, - [130934] = 3, + [130979] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2666), 1, - anon_sym_COLON2, + ACTIONS(8651), 1, + anon_sym_RPAREN, + STATE(4970), 1, + sym_comment, + [130989] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8653), 1, + aux_sym__unquoted_with_expr_token1, STATE(4971), 1, sym_comment, - [130944] = 3, + [130999] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8327), 1, - anon_sym_LBRACE, + ACTIONS(8655), 1, + anon_sym_RBRACK, STATE(4972), 1, sym_comment, - [130954] = 3, - ACTIONS(103), 1, + [131009] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8651), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(8657), 1, + anon_sym_RBRACE, STATE(4973), 1, sym_comment, - [130964] = 3, + [131019] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8653), 1, - anon_sym_RBRACE, + ACTIONS(8659), 1, + anon_sym_RBRACK, STATE(4974), 1, sym_comment, - [130974] = 3, + [131029] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8655), 1, - anon_sym_RBRACK, + ACTIONS(8661), 1, + anon_sym_LBRACE, STATE(4975), 1, sym_comment, - [130984] = 3, + [131039] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8657), 1, - anon_sym_RBRACE, + ACTIONS(8663), 1, + anon_sym_DASH_GT, STATE(4976), 1, sym_comment, - [130994] = 3, - ACTIONS(103), 1, + [131049] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8659), 1, - aux_sym_comment_token1, + ACTIONS(7891), 1, + anon_sym_LBRACE, STATE(4977), 1, sym_comment, - [131004] = 3, - ACTIONS(103), 1, + [131059] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8661), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(8665), 1, + anon_sym_RBRACE, STATE(4978), 1, sym_comment, - [131014] = 3, - ACTIONS(103), 1, + [131069] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8663), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8667), 1, + anon_sym_RPAREN, STATE(4979), 1, sym_comment, - [131024] = 3, + [131079] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8665), 1, + ACTIONS(8669), 1, anon_sym_RBRACK, STATE(4980), 1, sym_comment, - [131034] = 3, - ACTIONS(103), 1, + [131089] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8667), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(8671), 1, + sym__table_head_separator, STATE(4981), 1, sym_comment, - [131044] = 3, + [131099] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8669), 1, - anon_sym_RPAREN, + ACTIONS(8221), 1, + anon_sym_LBRACE, STATE(4982), 1, sym_comment, - [131054] = 3, - ACTIONS(3), 1, + [131109] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8671), 1, - anon_sym_RPAREN, + ACTIONS(8673), 1, + aux_sym_cmd_identifier_token6, STATE(4983), 1, sym_comment, - [131064] = 3, + [131119] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(351), 1, - anon_sym_RPAREN2, + ACTIONS(8675), 1, + anon_sym_EQ_GT, STATE(4984), 1, sym_comment, - [131074] = 3, + [131129] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2920), 1, - anon_sym_LBRACK2, + ACTIONS(8677), 1, + anon_sym_RBRACE, STATE(4985), 1, sym_comment, - [131084] = 3, + [131139] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8673), 1, - anon_sym_LBRACE, + ACTIONS(8679), 1, + anon_sym_GT2, STATE(4986), 1, sym_comment, - [131094] = 3, - ACTIONS(3), 1, + [131149] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5221), 1, - anon_sym_EQ2, + ACTIONS(8681), 1, + aux_sym_cmd_identifier_token2, STATE(4987), 1, sym_comment, - [131104] = 3, + [131159] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8675), 1, - sym_raw_string_end, + ACTIONS(8683), 1, + anon_sym_in, STATE(4988), 1, sym_comment, - [131114] = 3, + [131169] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, + ACTIONS(8685), 1, + anon_sym_RBRACE, STATE(4989), 1, sym_comment, - [131124] = 3, + [131179] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8677), 1, - sym_raw_string_end, + ACTIONS(8687), 1, + anon_sym_LPAREN2, STATE(4990), 1, sym_comment, - [131134] = 3, - ACTIONS(103), 1, + [131189] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8679), 1, - aux_sym_shebang_token1, + ACTIONS(8689), 1, + ts_builtin_sym_end, STATE(4991), 1, sym_comment, - [131144] = 3, + [131199] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4969), 1, - sym__unquoted_pattern, + ACTIONS(8691), 1, + anon_sym_RBRACE, STATE(4992), 1, sym_comment, - [131154] = 3, - ACTIONS(3), 1, + [131209] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8681), 1, - anon_sym_RBRACK, + ACTIONS(8693), 1, + aux_sym_cmd_identifier_token2, STATE(4993), 1, sym_comment, - [131164] = 3, + [131219] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(303), 1, - anon_sym_RBRACE, + ACTIONS(8695), 1, + anon_sym_RPAREN, STATE(4994), 1, sym_comment, - [131174] = 3, + [131229] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8683), 1, - anon_sym_RBRACE, + ACTIONS(8697), 1, + sym_raw_string_end, STATE(4995), 1, sym_comment, - [131184] = 3, + [131239] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, + ACTIONS(8699), 1, + anon_sym_RPAREN2, STATE(4996), 1, sym_comment, - [131194] = 3, + [131249] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8701), 1, + anon_sym_EQ, STATE(4997), 1, sym_comment, - [131204] = 3, + [131259] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8685), 1, - sym_raw_string_content, + ACTIONS(5036), 1, + sym__unquoted_pattern, STATE(4998), 1, sym_comment, - [131214] = 3, + [131269] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_EQ2, + ACTIONS(2624), 1, + sym__unquoted_pattern, STATE(4999), 1, sym_comment, - [131224] = 3, + [131279] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8687), 1, - sym_identifier, + ACTIONS(8703), 1, + anon_sym_RBRACE, STATE(5000), 1, sym_comment, - [131234] = 3, + [131289] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8689), 1, + ACTIONS(2626), 1, aux_sym_cmd_identifier_token2, STATE(5001), 1, sym_comment, - [131244] = 3, + [131299] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8691), 1, - anon_sym_EQ, + ACTIONS(2780), 1, + anon_sym_COLON2, STATE(5002), 1, sym_comment, - [131254] = 3, - ACTIONS(3), 1, + [131309] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8693), 1, - anon_sym_RBRACK, + ACTIONS(8705), 1, + aux_sym_comment_token1, STATE(5003), 1, sym_comment, - [131264] = 3, + [131319] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8695), 1, - anon_sym_GT2, + ACTIONS(2493), 1, + sym__unquoted_pattern_in_record, STATE(5004), 1, sym_comment, - [131274] = 3, + [131329] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8697), 1, - sym_identifier, + ACTIONS(1956), 1, + sym__unquoted_pattern_in_record, STATE(5005), 1, sym_comment, - [131284] = 3, + [131339] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8699), 1, + ACTIONS(8707), 1, anon_sym_RPAREN, STATE(5006), 1, sym_comment, - [131294] = 3, + [131349] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8701), 1, - anon_sym_LBRACE, + ACTIONS(8709), 1, + anon_sym_RBRACK, STATE(5007), 1, sym_comment, - [131304] = 3, + [131359] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8703), 1, - anon_sym_RBRACE, + ACTIONS(8711), 1, + anon_sym_GT2, STATE(5008), 1, sym_comment, - [131314] = 3, + [131369] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(8713), 1, aux_sym_cmd_identifier_token2, STATE(5009), 1, sym_comment, - [131324] = 3, + [131379] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8705), 1, - anon_sym_RBRACK, + ACTIONS(8715), 1, + anon_sym_LBRACE, STATE(5010), 1, sym_comment, - [131334] = 3, + [131389] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(289), 1, - anon_sym_RBRACE, + ACTIONS(8717), 1, + anon_sym_RPAREN, STATE(5011), 1, sym_comment, - [131344] = 3, + [131399] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8707), 1, - anon_sym_RBRACE, + ACTIONS(8719), 1, + anon_sym_RBRACK, STATE(5012), 1, sym_comment, - [131354] = 3, + [131409] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8709), 1, + ACTIONS(309), 1, anon_sym_RBRACE, STATE(5013), 1, sym_comment, - [131364] = 3, + [131419] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8711), 1, - anon_sym_RBRACK, + ACTIONS(8721), 1, + anon_sym_BQUOTE2, STATE(5014), 1, sym_comment, - [131374] = 3, - ACTIONS(3), 1, + [131429] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8713), 1, - anon_sym_RBRACE, + ACTIONS(8723), 1, + aux_sym_shebang_token1, STATE(5015), 1, sym_comment, - [131384] = 3, + [131439] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_RBRACE, + ACTIONS(8725), 1, + anon_sym_GT2, STATE(5016), 1, sym_comment, - [131394] = 3, + [131449] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8717), 1, - ts_builtin_sym_end, + ACTIONS(8727), 1, + anon_sym_RBRACE, STATE(5017), 1, sym_comment, - [131404] = 3, + [131459] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8719), 1, - anon_sym_RBRACK, + ACTIONS(8729), 1, + sym_identifier, STATE(5018), 1, sym_comment, - [131414] = 3, + [131469] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8721), 1, - anon_sym_GT2, + ACTIONS(8731), 1, + anon_sym_RBRACE, STATE(5019), 1, sym_comment, - [131424] = 3, - ACTIONS(3), 1, + [131479] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8723), 1, - sym_raw_string_end, + ACTIONS(8733), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5020), 1, sym_comment, - [131434] = 3, + [131489] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(1606), 1, sym__unquoted_pattern, STATE(5021), 1, sym_comment, - [131444] = 3, + [131499] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8725), 1, - anon_sym_DQUOTE, + ACTIONS(8287), 1, + anon_sym_RBRACK, STATE(5022), 1, sym_comment, - [131454] = 3, + [131509] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8727), 1, - anon_sym_EQ, + ACTIONS(8735), 1, + anon_sym_DQUOTE, STATE(5023), 1, sym_comment, - [131464] = 3, - ACTIONS(103), 1, + [131519] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8729), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8737), 1, + anon_sym_RBRACK, STATE(5024), 1, sym_comment, - [131474] = 3, + [131529] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8731), 1, - anon_sym_GT2, + ACTIONS(8739), 1, + anon_sym_SQUOTE2, STATE(5025), 1, sym_comment, - [131484] = 3, + [131539] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_EQ2, + ACTIONS(8741), 1, + anon_sym_BQUOTE2, STATE(5026), 1, sym_comment, - [131494] = 3, + [131549] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8733), 1, - anon_sym_GT2, + ACTIONS(8743), 1, + sym_raw_string_end, STATE(5027), 1, sym_comment, - [131504] = 3, + [131559] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8735), 1, - anon_sym_SQUOTE2, + ACTIONS(8745), 1, + anon_sym_EQ, STATE(5028), 1, sym_comment, - [131514] = 3, + [131569] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8737), 1, - sym_raw_string_end, + ACTIONS(8747), 1, + anon_sym_GT2, STATE(5029), 1, sym_comment, - [131524] = 3, + [131579] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8739), 1, - anon_sym_EQ_GT, + ACTIONS(5310), 1, + anon_sym_EQ2, STATE(5030), 1, sym_comment, - [131534] = 3, - ACTIONS(3), 1, + [131589] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8741), 1, - anon_sym_BQUOTE2, + ACTIONS(8749), 1, + aux_sym_cmd_identifier_token6, STATE(5031), 1, sym_comment, - [131544] = 3, + [131599] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7264), 1, - sym__unquoted_pattern, + ACTIONS(8751), 1, + anon_sym_RPAREN, STATE(5032), 1, sym_comment, - [131554] = 3, + [131609] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8743), 1, - anon_sym_EQ, + ACTIONS(8753), 1, + anon_sym_RBRACK, STATE(5033), 1, sym_comment, - [131564] = 3, + [131619] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8745), 1, - anon_sym_RPAREN, + ACTIONS(8755), 1, + anon_sym_RBRACE, STATE(5034), 1, sym_comment, - [131574] = 3, + [131629] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8747), 1, - anon_sym_LPAREN2, + ACTIONS(7266), 1, + sym__unquoted_pattern, STATE(5035), 1, sym_comment, - [131584] = 3, + [131639] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8749), 1, - anon_sym_EQ, + ACTIONS(8757), 1, + anon_sym_RBRACE, STATE(5036), 1, sym_comment, - [131594] = 3, + [131649] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8751), 1, - anon_sym_BQUOTE2, + ACTIONS(8759), 1, + anon_sym_RBRACE, STATE(5037), 1, sym_comment, - [131604] = 3, + [131659] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, + ACTIONS(8761), 1, + anon_sym_RPAREN, STATE(5038), 1, sym_comment, - [131614] = 3, + [131669] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8753), 1, - sym_identifier, + ACTIONS(2867), 1, + anon_sym_LBRACK2, STATE(5039), 1, sym_comment, - [131624] = 3, - ACTIONS(3), 1, + [131679] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8755), 1, - anon_sym_RBRACK, + ACTIONS(8763), 1, + aux_sym_cmd_identifier_token6, STATE(5040), 1, sym_comment, - [131634] = 3, + [131689] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8757), 1, - anon_sym_RBRACK, + ACTIONS(8765), 1, + sym_raw_string_end, STATE(5041), 1, sym_comment, - [131644] = 3, - ACTIONS(103), 1, + [131699] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8759), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8767), 1, + anon_sym_RBRACE, STATE(5042), 1, sym_comment, - [131654] = 3, + [131709] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8761), 1, - anon_sym_RBRACE, + ACTIONS(8769), 1, + anon_sym_RBRACK, STATE(5043), 1, sym_comment, - [131664] = 3, + [131719] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8763), 1, - anon_sym_RBRACK, + ACTIONS(8771), 1, + anon_sym_EQ, STATE(5044), 1, sym_comment, - [131674] = 3, + [131729] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, - sym__table_head_separator, + ACTIONS(8773), 1, + anon_sym_RBRACE, STATE(5045), 1, sym_comment, - [131684] = 3, + [131739] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8765), 1, - anon_sym_RPAREN, + ACTIONS(8775), 1, + anon_sym_RBRACK, STATE(5046), 1, sym_comment, - [131694] = 3, + [131749] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8767), 1, - anon_sym_RBRACK, + ACTIONS(5279), 1, + anon_sym_EQ2, STATE(5047), 1, sym_comment, - [131704] = 3, - ACTIONS(103), 1, + [131759] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8777), 1, + anon_sym_RPAREN, STATE(5048), 1, sym_comment, - [131714] = 3, - ACTIONS(3), 1, + [131769] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8769), 1, - anon_sym_RPAREN, + ACTIONS(8779), 1, + aux_sym_cmd_identifier_token2, STATE(5049), 1, sym_comment, - [131724] = 3, + [131779] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4147), 1, - sym__unquoted_pattern, + ACTIONS(8781), 1, + sym_identifier, STATE(5050), 1, sym_comment, - [131734] = 3, + [131789] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8771), 1, - anon_sym_RBRACK, + ACTIONS(8783), 1, + sym_identifier, STATE(5051), 1, sym_comment, - [131744] = 3, + [131799] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8773), 1, - anon_sym_RPAREN, + ACTIONS(8785), 1, + anon_sym_RBRACK, STATE(5052), 1, sym_comment, - [131754] = 3, + [131809] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8775), 1, - anon_sym_RBRACE, + ACTIONS(8787), 1, + sym_identifier, STATE(5053), 1, sym_comment, - [131764] = 3, + [131819] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8777), 1, - anon_sym_RBRACK, + ACTIONS(8789), 1, + anon_sym_RPAREN, STATE(5054), 1, sym_comment, - [131774] = 3, + [131829] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(313), 1, + ACTIONS(8791), 1, anon_sym_RBRACE, STATE(5055), 1, sym_comment, - [131784] = 3, + [131839] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8779), 1, + ACTIONS(8793), 1, anon_sym_RBRACK, STATE(5056), 1, sym_comment, - [131794] = 3, + [131849] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8781), 1, - sym_raw_string_content, + ACTIONS(5378), 1, + anon_sym_EQ2, STATE(5057), 1, sym_comment, - [131804] = 3, + [131859] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7518), 1, - anon_sym_LBRACK2, + ACTIONS(8795), 1, + anon_sym_RBRACK, STATE(5058), 1, sym_comment, - [131814] = 3, - ACTIONS(103), 1, + [131869] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8783), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(8797), 1, + sym_raw_string_content, STATE(5059), 1, sym_comment, - [131824] = 3, - ACTIONS(103), 1, + [131879] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8785), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(7527), 1, + anon_sym_LBRACK2, STATE(5060), 1, sym_comment, - [131834] = 3, - ACTIONS(3), 1, + [131889] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8787), 1, - anon_sym_RBRACE, + ACTIONS(8799), 1, + aux_sym__str_single_quotes_token1, STATE(5061), 1, sym_comment, - [131844] = 3, - ACTIONS(3), 1, + [131899] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8801), 1, + aux_sym__str_back_ticks_token1, STATE(5062), 1, sym_comment, - [131854] = 3, - ACTIONS(3), 1, + [131909] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8789), 1, - anon_sym_EQ, + ACTIONS(8291), 1, + aux_sym__record_key_token1, STATE(5063), 1, sym_comment, - [131864] = 3, - ACTIONS(103), 1, + [131919] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8791), 1, - sym__space, + ACTIONS(405), 1, + ts_builtin_sym_end, STATE(5064), 1, sym_comment, - [131874] = 3, + [131929] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8793), 1, - anon_sym_RBRACE, + ACTIONS(8803), 1, + anon_sym_EQ_GT, STATE(5065), 1, sym_comment, - [131884] = 3, - ACTIONS(3), 1, + [131939] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8795), 1, - anon_sym_RBRACE, + ACTIONS(8805), 1, + sym__space, STATE(5066), 1, sym_comment, - [131894] = 3, + [131949] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8797), 1, - anon_sym_RPAREN, + ACTIONS(307), 1, + anon_sym_RBRACE, STATE(5067), 1, sym_comment, - [131904] = 3, + [131959] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, + ACTIONS(8807), 1, + anon_sym_RPAREN, STATE(5068), 1, sym_comment, - [131914] = 3, - ACTIONS(3), 1, + [131969] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8809), 1, + aux_sym_cmd_identifier_token6, STATE(5069), 1, sym_comment, - [131924] = 3, + [131979] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8799), 1, - anon_sym_SQUOTE2, + ACTIONS(8811), 1, + sym_raw_string_end, STATE(5070), 1, sym_comment, - [131934] = 3, - ACTIONS(103), 1, + [131989] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8801), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(4131), 1, + sym__unquoted_pattern, STATE(5071), 1, sym_comment, - [131944] = 3, + [131999] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8803), 1, - anon_sym_BQUOTE2, + ACTIONS(1728), 1, + sym__unquoted_pattern_in_record, STATE(5072), 1, sym_comment, - [131954] = 3, + [132009] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern_in_record, + ACTIONS(5009), 1, + sym__unquoted_pattern, STATE(5073), 1, sym_comment, - [131964] = 3, + [132019] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8805), 1, + ACTIONS(8813), 1, anon_sym_RBRACE, STATE(5074), 1, sym_comment, - [131974] = 3, + [132029] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern_in_record, + ACTIONS(1708), 1, + anon_sym_COLON2, STATE(5075), 1, sym_comment, - [131984] = 3, + [132039] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8807), 1, - anon_sym_DQUOTE, + ACTIONS(1812), 1, + sym__unquoted_pattern_in_record, STATE(5076), 1, sym_comment, - [131994] = 3, + [132049] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8815), 1, + anon_sym_RBRACE, STATE(5077), 1, sym_comment, - [132004] = 3, + [132059] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8809), 1, - anon_sym_SQUOTE2, + ACTIONS(1856), 1, + sym__unquoted_pattern_in_record, STATE(5078), 1, sym_comment, - [132014] = 3, + [132069] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8811), 1, - anon_sym_BQUOTE2, + ACTIONS(8817), 1, + anon_sym_RBRACK, STATE(5079), 1, sym_comment, - [132024] = 3, + [132079] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - anon_sym_RBRACK, + ACTIONS(301), 1, + anon_sym_RBRACE, STATE(5080), 1, sym_comment, - [132034] = 3, + [132089] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8815), 1, - anon_sym_RBRACE, + ACTIONS(8819), 1, + anon_sym_RPAREN, STATE(5081), 1, sym_comment, - [132044] = 3, - ACTIONS(103), 1, + [132099] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8817), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8821), 1, + anon_sym_DQUOTE, STATE(5082), 1, sym_comment, - [132054] = 3, + [132109] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8819), 1, - anon_sym_EQ, + ACTIONS(1606), 1, + sym__unquoted_pattern_in_record, STATE(5083), 1, sym_comment, - [132064] = 3, - ACTIONS(103), 1, + [132119] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(8823), 1, + anon_sym_SQUOTE2, STATE(5084), 1, sym_comment, - [132074] = 3, + [132129] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8821), 1, - anon_sym_RBRACE, + ACTIONS(8825), 1, + anon_sym_BQUOTE2, STATE(5085), 1, sym_comment, - [132084] = 3, + [132139] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8827), 1, + anon_sym_GT2, STATE(5086), 1, sym_comment, - [132094] = 3, + [132149] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8823), 1, - anon_sym_LBRACE, + ACTIONS(8829), 1, + anon_sym_RBRACK, STATE(5087), 1, sym_comment, - [132104] = 3, - ACTIONS(3), 1, + [132159] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8825), 1, - anon_sym_EQ, + ACTIONS(8831), 1, + aux_sym_cmd_identifier_token6, STATE(5088), 1, sym_comment, - [132114] = 3, - ACTIONS(103), 1, + [132169] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8827), 1, - sym__space, + ACTIONS(315), 1, + anon_sym_RBRACE, STATE(5089), 1, sym_comment, - [132124] = 3, + [132179] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8829), 1, - anon_sym_RPAREN, + ACTIONS(8833), 1, + anon_sym_EQ, STATE(5090), 1, sym_comment, - [132134] = 3, + [132189] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8831), 1, - anon_sym_RBRACK, + ACTIONS(8835), 1, + anon_sym_RBRACE, STATE(5091), 1, sym_comment, - [132144] = 3, + [132199] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8833), 1, + ACTIONS(8837), 1, anon_sym_EQ, STATE(5092), 1, sym_comment, - [132154] = 3, + [132209] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8835), 1, - anon_sym_EQ, + ACTIONS(8839), 1, + anon_sym_RBRACK, STATE(5093), 1, sym_comment, - [132164] = 3, + [132219] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8837), 1, - sym_raw_string_content, + ACTIONS(8841), 1, + anon_sym_RPAREN, STATE(5094), 1, sym_comment, - [132174] = 3, + [132229] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6016), 1, - anon_sym_LBRACK2, + ACTIONS(8843), 1, + anon_sym_RBRACE, STATE(5095), 1, sym_comment, - [132184] = 3, - ACTIONS(103), 1, + [132239] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8839), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(8845), 1, + sym_raw_string_content, STATE(5096), 1, sym_comment, - [132194] = 3, - ACTIONS(103), 1, + [132249] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8841), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(5834), 1, + anon_sym_LBRACK2, STATE(5097), 1, sym_comment, - [132204] = 3, - ACTIONS(3), 1, + [132259] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8843), 1, - anon_sym_RBRACK, + ACTIONS(8847), 1, + aux_sym__str_single_quotes_token1, STATE(5098), 1, sym_comment, - [132214] = 3, + [132269] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8845), 1, - sym__space, + ACTIONS(8849), 1, + aux_sym__str_back_ticks_token1, STATE(5099), 1, sym_comment, - [132224] = 3, - ACTIONS(103), 1, + [132279] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(2660), 1, + sym__unquoted_pattern_in_record, STATE(5100), 1, sym_comment, - [132234] = 3, - ACTIONS(3), 1, + [132289] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8847), 1, - anon_sym_RPAREN, + ACTIONS(8851), 1, + sym__space, STATE(5101), 1, sym_comment, - [132244] = 3, + [132299] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8823), 1, - anon_sym_LBRACE, + ACTIONS(8853), 1, + anon_sym_RBRACK, STATE(5102), 1, sym_comment, - [132254] = 3, + [132309] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8849), 1, - sym_identifier, + ACTIONS(8855), 1, + anon_sym_RBRACE, STATE(5103), 1, sym_comment, - [132264] = 3, + [132319] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8851), 1, - anon_sym_GT2, + ACTIONS(8857), 1, + anon_sym_RBRACK, STATE(5104), 1, sym_comment, - [132274] = 3, + [132329] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8859), 1, + aux_sym_cmd_identifier_token6, + STATE(5105), 1, + sym_comment, + [132339] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8853), 1, + ACTIONS(8861), 1, anon_sym_RPAREN, - STATE(5105), 1, + STATE(5106), 1, sym_comment, - [132284] = 3, + [132349] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8855), 1, + ACTIONS(8863), 1, + anon_sym_DQUOTE, + STATE(5107), 1, + sym_comment, + [132359] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8865), 1, sym_raw_string_content, - STATE(5106), 1, + STATE(5108), 1, sym_comment, - [132294] = 3, + [132369] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4527), 1, + ACTIONS(4537), 1, anon_sym_LBRACK2, - STATE(5107), 1, + STATE(5109), 1, sym_comment, - [132304] = 3, + [132379] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8857), 1, + ACTIONS(8867), 1, aux_sym__str_single_quotes_token1, - STATE(5108), 1, + STATE(5110), 1, sym_comment, - [132314] = 3, + [132389] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8859), 1, + ACTIONS(8869), 1, aux_sym__str_back_ticks_token1, - STATE(5109), 1, + STATE(5111), 1, sym_comment, - [132324] = 3, + [132399] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8861), 1, + ACTIONS(8871), 1, sym_raw_string_content, - STATE(5110), 1, + STATE(5112), 1, sym_comment, - [132334] = 3, + [132409] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5727), 1, + ACTIONS(5662), 1, anon_sym_LBRACK2, - STATE(5111), 1, + STATE(5113), 1, sym_comment, - [132344] = 3, + [132419] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8863), 1, + ACTIONS(8873), 1, aux_sym__str_single_quotes_token1, - STATE(5112), 1, + STATE(5114), 1, sym_comment, - [132354] = 3, + [132429] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8865), 1, + ACTIONS(8875), 1, aux_sym__str_back_ticks_token1, - STATE(5113), 1, + STATE(5115), 1, sym_comment, - [132364] = 3, + [132439] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8867), 1, + ACTIONS(8877), 1, sym_raw_string_content, - STATE(5114), 1, + STATE(5116), 1, sym_comment, - [132374] = 3, + [132449] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5751), 1, + ACTIONS(5717), 1, anon_sym_LBRACK2, - STATE(5115), 1, + STATE(5117), 1, sym_comment, - [132384] = 3, + [132459] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8869), 1, + ACTIONS(8879), 1, aux_sym__str_single_quotes_token1, - STATE(5116), 1, + STATE(5118), 1, sym_comment, - [132394] = 3, + [132469] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8871), 1, + ACTIONS(8881), 1, aux_sym__str_back_ticks_token1, - STATE(5117), 1, + STATE(5119), 1, sym_comment, - [132404] = 3, + [132479] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8873), 1, + ACTIONS(8883), 1, sym_raw_string_content, - STATE(5118), 1, + STATE(5120), 1, sym_comment, - [132414] = 3, + [132489] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8875), 1, + ACTIONS(8885), 1, aux_sym__str_single_quotes_token1, - STATE(5119), 1, + STATE(5121), 1, sym_comment, - [132424] = 3, + [132499] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8877), 1, + ACTIONS(8887), 1, aux_sym__str_back_ticks_token1, - STATE(5120), 1, + STATE(5122), 1, sym_comment, - [132434] = 3, + [132509] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8879), 1, + ACTIONS(8889), 1, sym_raw_string_content, - STATE(5121), 1, + STATE(5123), 1, sym_comment, - [132444] = 3, + [132519] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8881), 1, + ACTIONS(8891), 1, aux_sym__str_single_quotes_token1, - STATE(5122), 1, + STATE(5124), 1, sym_comment, - [132454] = 3, + [132529] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8883), 1, + ACTIONS(8893), 1, aux_sym__str_back_ticks_token1, - STATE(5123), 1, + STATE(5125), 1, sym_comment, - [132464] = 3, + [132539] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8885), 1, + ACTIONS(8895), 1, sym_raw_string_content, - STATE(5124), 1, + STATE(5126), 1, sym_comment, - [132474] = 3, + [132549] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8887), 1, + ACTIONS(8897), 1, aux_sym__str_single_quotes_token1, - STATE(5125), 1, + STATE(5127), 1, sym_comment, - [132484] = 3, + [132559] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8889), 1, + ACTIONS(8899), 1, aux_sym__str_back_ticks_token1, - STATE(5126), 1, + STATE(5128), 1, sym_comment, - [132494] = 3, + [132569] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8891), 1, + ACTIONS(8901), 1, sym_raw_string_content, - STATE(5127), 1, + STATE(5129), 1, sym_comment, - [132504] = 3, + [132579] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8893), 1, + ACTIONS(8903), 1, aux_sym__str_single_quotes_token1, - STATE(5128), 1, + STATE(5130), 1, sym_comment, - [132514] = 3, + [132589] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8895), 1, + ACTIONS(8905), 1, aux_sym__str_back_ticks_token1, - STATE(5129), 1, + STATE(5131), 1, sym_comment, - [132524] = 3, + [132599] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8897), 1, + ACTIONS(8907), 1, sym_raw_string_content, - STATE(5130), 1, + STATE(5132), 1, sym_comment, - [132534] = 3, + [132609] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8899), 1, + ACTIONS(8909), 1, aux_sym__str_single_quotes_token1, - STATE(5131), 1, + STATE(5133), 1, sym_comment, - [132544] = 3, + [132619] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8901), 1, + ACTIONS(8911), 1, aux_sym__str_back_ticks_token1, - STATE(5132), 1, + STATE(5134), 1, sym_comment, - [132554] = 3, + [132629] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8903), 1, + ACTIONS(8913), 1, sym_raw_string_content, - STATE(5133), 1, + STATE(5135), 1, sym_comment, - [132564] = 3, + [132639] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8905), 1, + ACTIONS(8915), 1, aux_sym__str_single_quotes_token1, - STATE(5134), 1, + STATE(5136), 1, sym_comment, - [132574] = 3, + [132649] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8907), 1, + ACTIONS(8917), 1, aux_sym__str_back_ticks_token1, - STATE(5135), 1, + STATE(5137), 1, sym_comment, - [132584] = 3, + [132659] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8909), 1, + ACTIONS(8919), 1, sym_raw_string_content, - STATE(5136), 1, + STATE(5138), 1, sym_comment, - [132594] = 3, + [132669] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8911), 1, + ACTIONS(8921), 1, aux_sym__str_single_quotes_token1, - STATE(5137), 1, + STATE(5139), 1, sym_comment, - [132604] = 3, + [132679] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8913), 1, + ACTIONS(8923), 1, aux_sym__str_back_ticks_token1, - STATE(5138), 1, + STATE(5140), 1, sym_comment, - [132614] = 3, + [132689] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8915), 1, + ACTIONS(8925), 1, sym_raw_string_content, - STATE(5139), 1, + STATE(5141), 1, sym_comment, - [132624] = 3, + [132699] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8917), 1, + ACTIONS(8927), 1, aux_sym__str_single_quotes_token1, - STATE(5140), 1, + STATE(5142), 1, sym_comment, - [132634] = 3, + [132709] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8919), 1, + ACTIONS(8929), 1, aux_sym__str_back_ticks_token1, - STATE(5141), 1, + STATE(5143), 1, sym_comment, - [132644] = 3, + [132719] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8921), 1, + ACTIONS(8931), 1, sym_raw_string_content, - STATE(5142), 1, + STATE(5144), 1, sym_comment, - [132654] = 3, + [132729] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8923), 1, + ACTIONS(8933), 1, aux_sym__str_single_quotes_token1, - STATE(5143), 1, + STATE(5145), 1, sym_comment, - [132664] = 3, + [132739] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8925), 1, + ACTIONS(8935), 1, aux_sym__str_back_ticks_token1, - STATE(5144), 1, + STATE(5146), 1, sym_comment, - [132674] = 3, + [132749] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8927), 1, + ACTIONS(8937), 1, sym_raw_string_content, - STATE(5145), 1, + STATE(5147), 1, sym_comment, - [132684] = 3, + [132759] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8929), 1, + ACTIONS(8939), 1, aux_sym__str_single_quotes_token1, - STATE(5146), 1, + STATE(5148), 1, sym_comment, - [132694] = 3, + [132769] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8931), 1, + ACTIONS(8941), 1, aux_sym__str_back_ticks_token1, - STATE(5147), 1, + STATE(5149), 1, sym_comment, - [132704] = 3, + [132779] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8933), 1, + ACTIONS(8943), 1, sym_raw_string_content, - STATE(5148), 1, + STATE(5150), 1, sym_comment, - [132714] = 3, - ACTIONS(103), 1, + [132789] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8935), 1, - aux_sym__str_single_quotes_token1, - STATE(5149), 1, + ACTIONS(8945), 1, + sym_identifier, + STATE(5151), 1, sym_comment, - [132724] = 3, + [132799] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8937), 1, + ACTIONS(8947), 1, aux_sym__str_back_ticks_token1, - STATE(5150), 1, + STATE(5152), 1, sym_comment, - [132734] = 3, + [132809] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8939), 1, + ACTIONS(8949), 1, sym_raw_string_content, - STATE(5151), 1, + STATE(5153), 1, sym_comment, - [132744] = 3, + [132819] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8941), 1, + ACTIONS(8951), 1, aux_sym__str_single_quotes_token1, - STATE(5152), 1, + STATE(5154), 1, sym_comment, - [132754] = 3, + [132829] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8943), 1, + ACTIONS(8953), 1, aux_sym__str_back_ticks_token1, - STATE(5153), 1, + STATE(5155), 1, sym_comment, - [132764] = 3, + [132839] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8945), 1, + ACTIONS(8955), 1, sym_raw_string_content, - STATE(5154), 1, + STATE(5156), 1, sym_comment, - [132774] = 3, + [132849] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(8957), 1, aux_sym__str_single_quotes_token1, - STATE(5155), 1, + STATE(5157), 1, sym_comment, - [132784] = 3, + [132859] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8949), 1, + ACTIONS(8959), 1, aux_sym__str_back_ticks_token1, - STATE(5156), 1, - sym_comment, - [132794] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8951), 1, - aux_sym_cmd_identifier_token6, - STATE(5157), 1, - sym_comment, - [132804] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8953), 1, - sym_raw_string_end, STATE(5158), 1, sym_comment, - [132814] = 3, + [132869] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8329), 1, - anon_sym_LPAREN2, + ACTIONS(8961), 1, + anon_sym_SQUOTE2, STATE(5159), 1, sym_comment, - [132824] = 3, + [132879] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_RBRACE, + ACTIONS(8963), 1, + anon_sym_EQ, STATE(5160), 1, sym_comment, - [132834] = 3, + [132889] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8955), 1, - anon_sym_COLON2, + ACTIONS(8289), 1, + anon_sym_LPAREN2, STATE(5161), 1, sym_comment, - [132844] = 3, + [132899] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8957), 1, - anon_sym_LBRACE, + ACTIONS(8965), 1, + anon_sym_BQUOTE2, STATE(5162), 1, sym_comment, - [132854] = 3, + [132909] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8959), 1, - anon_sym_RBRACE, + ACTIONS(8967), 1, + anon_sym_LBRACE, STATE(5163), 1, sym_comment, - [132864] = 3, + [132919] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8961), 1, - anon_sym_in, + ACTIONS(8969), 1, + anon_sym_RPAREN, STATE(5164), 1, sym_comment, - [132874] = 3, + [132929] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8963), 1, - ts_builtin_sym_end, + ACTIONS(8967), 1, + anon_sym_LBRACE, STATE(5165), 1, sym_comment, - [132884] = 3, + [132939] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8965), 1, - sym_long_flag_identifier, + ACTIONS(8971), 1, + anon_sym_in, STATE(5166), 1, sym_comment, - [132894] = 3, - ACTIONS(3), 1, + [132949] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8967), 1, - anon_sym_RBRACE, + ACTIONS(8973), 1, + aux_sym_cmd_identifier_token6, STATE(5167), 1, sym_comment, - [132904] = 3, + [132959] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8969), 1, - anon_sym_RBRACE, + ACTIONS(2646), 1, + sym__unquoted_pattern, STATE(5168), 1, sym_comment, - [132914] = 3, + [132969] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8701), 1, - anon_sym_LBRACE, + ACTIONS(8975), 1, + anon_sym_RBRACK, STATE(5169), 1, sym_comment, - [132924] = 3, - ACTIONS(103), 1, + [132979] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8971), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8977), 1, + anon_sym_EQ, STATE(5170), 1, sym_comment, - [132934] = 3, + [132989] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8973), 1, - sym_param_short_flag_identifier, + ACTIONS(8979), 1, + anon_sym_RBRACE, STATE(5171), 1, sym_comment, - [132944] = 3, + [132999] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8975), 1, + ACTIONS(313), 1, anon_sym_RBRACE, STATE(5172), 1, sym_comment, - [132954] = 3, + [133009] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8977), 1, - anon_sym_EQ_GT, + ACTIONS(8981), 1, + anon_sym_RBRACE, STATE(5173), 1, sym_comment, - [132964] = 3, + [133019] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8979), 1, - anon_sym_RBRACE, + ACTIONS(8983), 1, + anon_sym_RPAREN, STATE(5174), 1, sym_comment, - [132974] = 3, + [133029] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8981), 1, - anon_sym_RPAREN, + ACTIONS(8985), 1, + anon_sym_EQ, STATE(5175), 1, sym_comment, - [132984] = 3, + [133039] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8983), 1, + ACTIONS(8987), 1, anon_sym_RBRACE, STATE(5176), 1, sym_comment, - [132994] = 3, - ACTIONS(3), 1, + [133049] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8985), 1, - anon_sym_RBRACK, + ACTIONS(8989), 1, + aux_sym_cmd_identifier_token6, STATE(5177), 1, sym_comment, - [133004] = 3, - ACTIONS(3), 1, + [133059] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8987), 1, - anon_sym_RBRACE, + ACTIONS(1876), 1, + aux_sym__unquoted_with_expr_token1, STATE(5178), 1, sym_comment, - [133014] = 3, + [133069] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8989), 1, - anon_sym_LT, + ACTIONS(8991), 1, + anon_sym_RBRACE, STATE(5179), 1, sym_comment, - [133024] = 3, + [133079] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8991), 1, - anon_sym_RBRACK, + ACTIONS(8993), 1, + anon_sym_RPAREN, STATE(5180), 1, sym_comment, - [133034] = 3, + [133089] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8993), 1, - anon_sym_DQUOTE, + ACTIONS(8995), 1, + anon_sym_LT, STATE(5181), 1, sym_comment, - [133044] = 3, - ACTIONS(103), 1, + [133099] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8995), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(1645), 1, + sym__unquoted_pattern_in_record, STATE(5182), 1, sym_comment, - [133054] = 3, + [133109] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_RPAREN2, + ACTIONS(8997), 1, + anon_sym_RBRACE, STATE(5183), 1, sym_comment, - [133064] = 3, + [133119] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8997), 1, - anon_sym_RPAREN, + ACTIONS(2580), 1, + sym__table_head_separator, STATE(5184), 1, sym_comment, - [133074] = 3, + [133129] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8999), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, STATE(5185), 1, sym_comment, - [133084] = 3, - ACTIONS(3), 1, + [133139] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(441), 1, - ts_builtin_sym_end, + ACTIONS(9001), 1, + aux_sym_cmd_identifier_token6, STATE(5186), 1, sym_comment, - [133094] = 3, + [133149] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9001), 1, - anon_sym_SQUOTE2, + ACTIONS(363), 1, + anon_sym_RPAREN2, STATE(5187), 1, sym_comment, - [133104] = 3, + [133159] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9003), 1, - anon_sym_BQUOTE2, + ACTIONS(5223), 1, + anon_sym_EQ2, STATE(5188), 1, sym_comment, - [133114] = 3, + [133169] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9005), 1, - anon_sym_LT, + ACTIONS(299), 1, + anon_sym_RBRACE, STATE(5189), 1, sym_comment, - [133124] = 3, + [133179] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9007), 1, + ACTIONS(9003), 1, anon_sym_RBRACE, STATE(5190), 1, sym_comment, - [133134] = 3, + [133189] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9009), 1, - anon_sym_RBRACE, + ACTIONS(9005), 1, + anon_sym_LT, STATE(5191), 1, sym_comment, - [133144] = 3, - ACTIONS(3), 1, + [133199] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9007), 1, + sym__space, STATE(5192), 1, sym_comment, - [133154] = 3, - ACTIONS(103), 1, + [133209] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9011), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9009), 1, + anon_sym_EQ, STATE(5193), 1, sym_comment, - [133164] = 3, + [133219] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9013), 1, - anon_sym_EQ, + ACTIONS(9011), 1, + anon_sym_GT2, STATE(5194), 1, sym_comment, - [133174] = 3, + [133229] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9015), 1, - anon_sym_EQ, + ACTIONS(7356), 1, + sym__unquoted_pattern, STATE(5195), 1, sym_comment, - [133184] = 3, - ACTIONS(103), 1, + [133239] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9017), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9013), 1, + sym_raw_string_end, STATE(5196), 1, sym_comment, - [133194] = 3, + [133249] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9019), 1, - anon_sym_EQ, + ACTIONS(9015), 1, + anon_sym_DQUOTE, STATE(5197), 1, sym_comment, - [133204] = 3, + [133259] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9021), 1, - anon_sym_RPAREN, + ACTIONS(9017), 1, + anon_sym_SQUOTE2, STATE(5198), 1, sym_comment, - [133214] = 3, + [133269] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9019), 1, + anon_sym_BQUOTE2, STATE(5199), 1, sym_comment, - [133224] = 3, + [133279] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9023), 1, - anon_sym_EQ, + ACTIONS(9021), 1, + anon_sym_RBRACK, STATE(5200), 1, sym_comment, - [133234] = 3, + [133289] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5253), 1, - anon_sym_EQ2, + ACTIONS(9023), 1, + anon_sym_GT2, STATE(5201), 1, sym_comment, - [133244] = 3, + [133299] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9025), 1, - anon_sym_DQUOTE, + anon_sym_RPAREN, STATE(5202), 1, sym_comment, - [133254] = 1, + [133309] = 3, + ACTIONS(103), 1, + anon_sym_POUND, ACTIONS(9027), 1, + aux_sym__str_single_quotes_token1, + STATE(5203), 1, + sym_comment, + [133319] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1868), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5204), 1, + sym_comment, + [133329] = 1, + ACTIONS(9029), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1263)] = 0, - [SMALL_STATE(1264)] = 73, - [SMALL_STATE(1265)] = 146, - [SMALL_STATE(1266)] = 219, - [SMALL_STATE(1267)] = 292, - [SMALL_STATE(1268)] = 391, - [SMALL_STATE(1269)] = 468, - [SMALL_STATE(1270)] = 541, - [SMALL_STATE(1271)] = 614, - [SMALL_STATE(1272)] = 687, - [SMALL_STATE(1273)] = 760, - [SMALL_STATE(1274)] = 833, - [SMALL_STATE(1275)] = 906, - [SMALL_STATE(1276)] = 1045, - [SMALL_STATE(1277)] = 1128, - [SMALL_STATE(1278)] = 1201, - [SMALL_STATE(1279)] = 1302, - [SMALL_STATE(1280)] = 1375, - [SMALL_STATE(1281)] = 1448, - [SMALL_STATE(1282)] = 1521, - [SMALL_STATE(1283)] = 1594, - [SMALL_STATE(1284)] = 1685, - [SMALL_STATE(1285)] = 1758, - [SMALL_STATE(1286)] = 1831, + [SMALL_STATE(1264)] = 103, + [SMALL_STATE(1265)] = 176, + [SMALL_STATE(1266)] = 249, + [SMALL_STATE(1267)] = 322, + [SMALL_STATE(1268)] = 399, + [SMALL_STATE(1269)] = 472, + [SMALL_STATE(1270)] = 545, + [SMALL_STATE(1271)] = 618, + [SMALL_STATE(1272)] = 691, + [SMALL_STATE(1273)] = 764, + [SMALL_STATE(1274)] = 837, + [SMALL_STATE(1275)] = 910, + [SMALL_STATE(1276)] = 1053, + [SMALL_STATE(1277)] = 1196, + [SMALL_STATE(1278)] = 1269, + [SMALL_STATE(1279)] = 1342, + [SMALL_STATE(1280)] = 1415, + [SMALL_STATE(1281)] = 1488, + [SMALL_STATE(1282)] = 1561, + [SMALL_STATE(1283)] = 1634, + [SMALL_STATE(1284)] = 1707, + [SMALL_STATE(1285)] = 1780, + [SMALL_STATE(1286)] = 1853, [SMALL_STATE(1287)] = 1926, - [SMALL_STATE(1288)] = 2069, - [SMALL_STATE(1289)] = 2144, - [SMALL_STATE(1290)] = 2217, - [SMALL_STATE(1291)] = 2290, - [SMALL_STATE(1292)] = 2433, - [SMALL_STATE(1293)] = 2506, - [SMALL_STATE(1294)] = 2579, - [SMALL_STATE(1295)] = 2652, - [SMALL_STATE(1296)] = 2725, - [SMALL_STATE(1297)] = 2798, - [SMALL_STATE(1298)] = 2871, - [SMALL_STATE(1299)] = 2944, - [SMALL_STATE(1300)] = 3017, - [SMALL_STATE(1301)] = 3090, - [SMALL_STATE(1302)] = 3163, - [SMALL_STATE(1303)] = 3236, - [SMALL_STATE(1304)] = 3309, - [SMALL_STATE(1305)] = 3382, - [SMALL_STATE(1306)] = 3455, - [SMALL_STATE(1307)] = 3528, - [SMALL_STATE(1308)] = 3601, - [SMALL_STATE(1309)] = 3704, - [SMALL_STATE(1310)] = 3777, - [SMALL_STATE(1311)] = 3850, - [SMALL_STATE(1312)] = 3923, - [SMALL_STATE(1313)] = 3996, - [SMALL_STATE(1314)] = 4069, - [SMALL_STATE(1315)] = 4166, - [SMALL_STATE(1316)] = 4259, - [SMALL_STATE(1317)] = 4332, - [SMALL_STATE(1318)] = 4405, - [SMALL_STATE(1319)] = 4478, - [SMALL_STATE(1320)] = 4551, - [SMALL_STATE(1321)] = 4624, - [SMALL_STATE(1322)] = 4697, - [SMALL_STATE(1323)] = 4770, - [SMALL_STATE(1324)] = 4859, - [SMALL_STATE(1325)] = 4932, - [SMALL_STATE(1326)] = 5005, - [SMALL_STATE(1327)] = 5078, - [SMALL_STATE(1328)] = 5151, - [SMALL_STATE(1329)] = 5290, - [SMALL_STATE(1330)] = 5433, - [SMALL_STATE(1331)] = 5518, - [SMALL_STATE(1332)] = 5661, - [SMALL_STATE(1333)] = 5734, - [SMALL_STATE(1334)] = 5807, - [SMALL_STATE(1335)] = 5880, - [SMALL_STATE(1336)] = 5959, - [SMALL_STATE(1337)] = 6032, - [SMALL_STATE(1338)] = 6105, - [SMALL_STATE(1339)] = 6244, - [SMALL_STATE(1340)] = 6317, - [SMALL_STATE(1341)] = 6390, - [SMALL_STATE(1342)] = 6463, - [SMALL_STATE(1343)] = 6536, - [SMALL_STATE(1344)] = 6609, + [SMALL_STATE(1288)] = 2015, + [SMALL_STATE(1289)] = 2088, + [SMALL_STATE(1290)] = 2173, + [SMALL_STATE(1291)] = 2246, + [SMALL_STATE(1292)] = 2325, + [SMALL_STATE(1293)] = 2398, + [SMALL_STATE(1294)] = 2473, + [SMALL_STATE(1295)] = 2546, + [SMALL_STATE(1296)] = 2645, + [SMALL_STATE(1297)] = 2718, + [SMALL_STATE(1298)] = 2791, + [SMALL_STATE(1299)] = 2892, + [SMALL_STATE(1300)] = 2965, + [SMALL_STATE(1301)] = 3108, + [SMALL_STATE(1302)] = 3181, + [SMALL_STATE(1303)] = 3272, + [SMALL_STATE(1304)] = 3345, + [SMALL_STATE(1305)] = 3418, + [SMALL_STATE(1306)] = 3491, + [SMALL_STATE(1307)] = 3574, + [SMALL_STATE(1308)] = 3713, + [SMALL_STATE(1309)] = 3786, + [SMALL_STATE(1310)] = 3879, + [SMALL_STATE(1311)] = 3952, + [SMALL_STATE(1312)] = 4047, + [SMALL_STATE(1313)] = 4120, + [SMALL_STATE(1314)] = 4217, + [SMALL_STATE(1315)] = 4290, + [SMALL_STATE(1316)] = 4363, + [SMALL_STATE(1317)] = 4436, + [SMALL_STATE(1318)] = 4509, + [SMALL_STATE(1319)] = 4582, + [SMALL_STATE(1320)] = 4655, + [SMALL_STATE(1321)] = 4728, + [SMALL_STATE(1322)] = 4801, + [SMALL_STATE(1323)] = 4874, + [SMALL_STATE(1324)] = 4947, + [SMALL_STATE(1325)] = 5020, + [SMALL_STATE(1326)] = 5093, + [SMALL_STATE(1327)] = 5166, + [SMALL_STATE(1328)] = 5239, + [SMALL_STATE(1329)] = 5312, + [SMALL_STATE(1330)] = 5385, + [SMALL_STATE(1331)] = 5458, + [SMALL_STATE(1332)] = 5531, + [SMALL_STATE(1333)] = 5604, + [SMALL_STATE(1334)] = 5677, + [SMALL_STATE(1335)] = 5750, + [SMALL_STATE(1336)] = 5889, + [SMALL_STATE(1337)] = 5962, + [SMALL_STATE(1338)] = 6035, + [SMALL_STATE(1339)] = 6108, + [SMALL_STATE(1340)] = 6181, + [SMALL_STATE(1341)] = 6254, + [SMALL_STATE(1342)] = 6393, + [SMALL_STATE(1343)] = 6466, + [SMALL_STATE(1344)] = 6539, [SMALL_STATE(1345)] = 6682, [SMALL_STATE(1346)] = 6755, [SMALL_STATE(1347)] = 6895, [SMALL_STATE(1348)] = 7043, [SMALL_STATE(1349)] = 7180, [SMALL_STATE(1350)] = 7317, - [SMALL_STATE(1351)] = 7394, + [SMALL_STATE(1351)] = 7454, [SMALL_STATE(1352)] = 7531, - [SMALL_STATE(1353)] = 7668, - [SMALL_STATE(1354)] = 7805, - [SMALL_STATE(1355)] = 7882, - [SMALL_STATE(1356)] = 7955, - [SMALL_STATE(1357)] = 8032, + [SMALL_STATE(1353)] = 7608, + [SMALL_STATE(1354)] = 7745, + [SMALL_STATE(1355)] = 7818, + [SMALL_STATE(1356)] = 7895, + [SMALL_STATE(1357)] = 7968, [SMALL_STATE(1358)] = 8105, - [SMALL_STATE(1359)] = 8179, - [SMALL_STATE(1360)] = 8249, - [SMALL_STATE(1361)] = 8391, - [SMALL_STATE(1362)] = 8531, - [SMALL_STATE(1363)] = 8665, - [SMALL_STATE(1364)] = 8741, - [SMALL_STATE(1365)] = 8819, - [SMALL_STATE(1366)] = 8953, - [SMALL_STATE(1367)] = 9023, - [SMALL_STATE(1368)] = 9099, - [SMALL_STATE(1369)] = 9175, - [SMALL_STATE(1370)] = 9247, - [SMALL_STATE(1371)] = 9319, - [SMALL_STATE(1372)] = 9395, - [SMALL_STATE(1373)] = 9537, - [SMALL_STATE(1374)] = 9671, - [SMALL_STATE(1375)] = 9805, + [SMALL_STATE(1359)] = 8239, + [SMALL_STATE(1360)] = 8315, + [SMALL_STATE(1361)] = 8385, + [SMALL_STATE(1362)] = 8527, + [SMALL_STATE(1363)] = 8599, + [SMALL_STATE(1364)] = 8739, + [SMALL_STATE(1365)] = 8873, + [SMALL_STATE(1366)] = 8943, + [SMALL_STATE(1367)] = 9077, + [SMALL_STATE(1368)] = 9153, + [SMALL_STATE(1369)] = 9295, + [SMALL_STATE(1370)] = 9367, + [SMALL_STATE(1371)] = 9441, + [SMALL_STATE(1372)] = 9517, + [SMALL_STATE(1373)] = 9651, + [SMALL_STATE(1374)] = 9727, + [SMALL_STATE(1375)] = 9861, [SMALL_STATE(1376)] = 9939, [SMALL_STATE(1377)] = 10008, [SMALL_STATE(1378)] = 10077, [SMALL_STATE(1379)] = 10146, - [SMALL_STATE(1380)] = 10231, - [SMALL_STATE(1381)] = 10300, - [SMALL_STATE(1382)] = 10373, - [SMALL_STATE(1383)] = 10446, - [SMALL_STATE(1384)] = 10521, + [SMALL_STATE(1380)] = 10219, + [SMALL_STATE(1381)] = 10288, + [SMALL_STATE(1382)] = 10363, + [SMALL_STATE(1383)] = 10432, + [SMALL_STATE(1384)] = 10517, [SMALL_STATE(1385)] = 10590, [SMALL_STATE(1386)] = 10659, - [SMALL_STATE(1387)] = 10743, - [SMALL_STATE(1388)] = 10825, - [SMALL_STATE(1389)] = 10907, - [SMALL_STATE(1390)] = 10975, - [SMALL_STATE(1391)] = 11061, - [SMALL_STATE(1392)] = 11129, + [SMALL_STATE(1387)] = 10741, + [SMALL_STATE(1388)] = 10809, + [SMALL_STATE(1389)] = 10877, + [SMALL_STATE(1390)] = 10963, + [SMALL_STATE(1391)] = 11045, + [SMALL_STATE(1392)] = 11131, [SMALL_STATE(1393)] = 11215, [SMALL_STATE(1394)] = 11340, - [SMALL_STATE(1395)] = 11473, - [SMALL_STATE(1396)] = 11544, - [SMALL_STATE(1397)] = 11625, - [SMALL_STATE(1398)] = 11706, - [SMALL_STATE(1399)] = 11779, - [SMALL_STATE(1400)] = 11904, + [SMALL_STATE(1395)] = 11411, + [SMALL_STATE(1396)] = 11484, + [SMALL_STATE(1397)] = 11609, + [SMALL_STATE(1398)] = 11690, + [SMALL_STATE(1399)] = 11761, + [SMALL_STATE(1400)] = 11842, [SMALL_STATE(1401)] = 11975, [SMALL_STATE(1402)] = 12046, - [SMALL_STATE(1403)] = 12116, + [SMALL_STATE(1403)] = 12114, [SMALL_STATE(1404)] = 12184, - [SMALL_STATE(1405)] = 12252, - [SMALL_STATE(1406)] = 12320, - [SMALL_STATE(1407)] = 12400, - [SMALL_STATE(1408)] = 12470, - [SMALL_STATE(1409)] = 12540, - [SMALL_STATE(1410)] = 12606, + [SMALL_STATE(1405)] = 12254, + [SMALL_STATE(1406)] = 12322, + [SMALL_STATE(1407)] = 12390, + [SMALL_STATE(1408)] = 12456, + [SMALL_STATE(1409)] = 12524, + [SMALL_STATE(1410)] = 12604, [SMALL_STATE(1411)] = 12674, - [SMALL_STATE(1412)] = 12739, - [SMALL_STATE(1413)] = 12864, - [SMALL_STATE(1414)] = 12931, - [SMALL_STATE(1415)] = 13000, - [SMALL_STATE(1416)] = 13079, - [SMALL_STATE(1417)] = 13144, - [SMALL_STATE(1418)] = 13273, - [SMALL_STATE(1419)] = 13402, - [SMALL_STATE(1420)] = 13471, - [SMALL_STATE(1421)] = 13600, - [SMALL_STATE(1422)] = 13665, - [SMALL_STATE(1423)] = 13732, - [SMALL_STATE(1424)] = 13797, - [SMALL_STATE(1425)] = 13926, + [SMALL_STATE(1412)] = 12743, + [SMALL_STATE(1413)] = 12810, + [SMALL_STATE(1414)] = 12889, + [SMALL_STATE(1415)] = 12954, + [SMALL_STATE(1416)] = 13019, + [SMALL_STATE(1417)] = 13084, + [SMALL_STATE(1418)] = 13149, + [SMALL_STATE(1419)] = 13214, + [SMALL_STATE(1420)] = 13343, + [SMALL_STATE(1421)] = 13468, + [SMALL_STATE(1422)] = 13597, + [SMALL_STATE(1423)] = 13726, + [SMALL_STATE(1424)] = 13855, + [SMALL_STATE(1425)] = 13924, [SMALL_STATE(1426)] = 13991, - [SMALL_STATE(1427)] = 14059, - [SMALL_STATE(1428)] = 14127, + [SMALL_STATE(1427)] = 14055, + [SMALL_STATE(1428)] = 14123, [SMALL_STATE(1429)] = 14191, [SMALL_STATE(1430)] = 14257, - [SMALL_STATE(1431)] = 14321, + [SMALL_STATE(1431)] = 14323, [SMALL_STATE(1432)] = 14387, [SMALL_STATE(1433)] = 14451, - [SMALL_STATE(1434)] = 14514, - [SMALL_STATE(1435)] = 14585, - [SMALL_STATE(1436)] = 14648, - [SMALL_STATE(1437)] = 14719, - [SMALL_STATE(1438)] = 14782, - [SMALL_STATE(1439)] = 14847, + [SMALL_STATE(1434)] = 14516, + [SMALL_STATE(1435)] = 14579, + [SMALL_STATE(1436)] = 14650, + [SMALL_STATE(1437)] = 14715, + [SMALL_STATE(1438)] = 14786, + [SMALL_STATE(1439)] = 14849, [SMALL_STATE(1440)] = 14912, - [SMALL_STATE(1441)] = 14978, - [SMALL_STATE(1442)] = 15048, - [SMALL_STATE(1443)] = 15114, - [SMALL_STATE(1444)] = 15184, - [SMALL_STATE(1445)] = 15246, - [SMALL_STATE(1446)] = 15344, - [SMALL_STATE(1447)] = 15416, - [SMALL_STATE(1448)] = 15514, - [SMALL_STATE(1449)] = 15576, + [SMALL_STATE(1441)] = 14974, + [SMALL_STATE(1442)] = 15040, + [SMALL_STATE(1443)] = 15138, + [SMALL_STATE(1444)] = 15208, + [SMALL_STATE(1445)] = 15306, + [SMALL_STATE(1446)] = 15376, + [SMALL_STATE(1447)] = 15438, + [SMALL_STATE(1448)] = 15510, + [SMALL_STATE(1449)] = 15572, [SMALL_STATE(1450)] = 15638, - [SMALL_STATE(1451)] = 15709, - [SMALL_STATE(1452)] = 15772, - [SMALL_STATE(1453)] = 15835, + [SMALL_STATE(1451)] = 15703, + [SMALL_STATE(1452)] = 15768, + [SMALL_STATE(1453)] = 15831, [SMALL_STATE(1454)] = 15928, - [SMALL_STATE(1455)] = 16021, - [SMALL_STATE(1456)] = 16118, - [SMALL_STATE(1457)] = 16183, - [SMALL_STATE(1458)] = 16276, - [SMALL_STATE(1459)] = 16373, + [SMALL_STATE(1455)] = 15999, + [SMALL_STATE(1456)] = 16092, + [SMALL_STATE(1457)] = 16185, + [SMALL_STATE(1458)] = 16248, + [SMALL_STATE(1459)] = 16345, [SMALL_STATE(1460)] = 16438, [SMALL_STATE(1461)] = 16502, - [SMALL_STATE(1462)] = 16562, - [SMALL_STATE(1463)] = 16626, - [SMALL_STATE(1464)] = 16686, - [SMALL_STATE(1465)] = 16752, - [SMALL_STATE(1466)] = 16816, - [SMALL_STATE(1467)] = 16882, - [SMALL_STATE(1468)] = 16948, - [SMALL_STATE(1469)] = 17014, - [SMALL_STATE(1470)] = 17080, - [SMALL_STATE(1471)] = 17144, - [SMALL_STATE(1472)] = 17208, - [SMALL_STATE(1473)] = 17268, - [SMALL_STATE(1474)] = 17330, - [SMALL_STATE(1475)] = 17396, - [SMALL_STATE(1476)] = 17462, - [SMALL_STATE(1477)] = 17524, - [SMALL_STATE(1478)] = 17584, - [SMALL_STATE(1479)] = 17650, - [SMALL_STATE(1480)] = 17714, - [SMALL_STATE(1481)] = 17780, - [SMALL_STATE(1482)] = 17842, - [SMALL_STATE(1483)] = 17906, - [SMALL_STATE(1484)] = 17972, - [SMALL_STATE(1485)] = 18038, - [SMALL_STATE(1486)] = 18104, - [SMALL_STATE(1487)] = 18168, - [SMALL_STATE(1488)] = 18232, - [SMALL_STATE(1489)] = 18293, - [SMALL_STATE(1490)] = 18352, - [SMALL_STATE(1491)] = 18415, - [SMALL_STATE(1492)] = 18478, - [SMALL_STATE(1493)] = 18537, - [SMALL_STATE(1494)] = 18598, - [SMALL_STATE(1495)] = 18661, - [SMALL_STATE(1496)] = 18724, - [SMALL_STATE(1497)] = 18787, - [SMALL_STATE(1498)] = 18850, - [SMALL_STATE(1499)] = 18911, - [SMALL_STATE(1500)] = 18970, - [SMALL_STATE(1501)] = 19029, - [SMALL_STATE(1502)] = 19092, - [SMALL_STATE(1503)] = 19155, - [SMALL_STATE(1504)] = 19216, - [SMALL_STATE(1505)] = 19279, - [SMALL_STATE(1506)] = 19342, - [SMALL_STATE(1507)] = 19405, - [SMALL_STATE(1508)] = 19464, - [SMALL_STATE(1509)] = 19525, - [SMALL_STATE(1510)] = 19605, - [SMALL_STATE(1511)] = 19665, - [SMALL_STATE(1512)] = 19725, - [SMALL_STATE(1513)] = 19785, - [SMALL_STATE(1514)] = 19865, - [SMALL_STATE(1515)] = 19945, - [SMALL_STATE(1516)] = 20003, - [SMALL_STATE(1517)] = 20083, - [SMALL_STATE(1518)] = 20163, - [SMALL_STATE(1519)] = 20223, - [SMALL_STATE(1520)] = 20297, - [SMALL_STATE(1521)] = 20357, - [SMALL_STATE(1522)] = 20437, - [SMALL_STATE(1523)] = 20517, - [SMALL_STATE(1524)] = 20597, - [SMALL_STATE(1525)] = 20677, - [SMALL_STATE(1526)] = 20767, - [SMALL_STATE(1527)] = 20847, - [SMALL_STATE(1528)] = 20927, - [SMALL_STATE(1529)] = 21007, - [SMALL_STATE(1530)] = 21087, - [SMALL_STATE(1531)] = 21173, - [SMALL_STATE(1532)] = 21253, - [SMALL_STATE(1533)] = 21333, - [SMALL_STATE(1534)] = 21413, - [SMALL_STATE(1535)] = 21493, - [SMALL_STATE(1536)] = 21573, - [SMALL_STATE(1537)] = 21653, - [SMALL_STATE(1538)] = 21745, - [SMALL_STATE(1539)] = 21825, - [SMALL_STATE(1540)] = 21905, - [SMALL_STATE(1541)] = 21985, - [SMALL_STATE(1542)] = 22065, - [SMALL_STATE(1543)] = 22145, - [SMALL_STATE(1544)] = 22225, - [SMALL_STATE(1545)] = 22305, - [SMALL_STATE(1546)] = 22385, - [SMALL_STATE(1547)] = 22465, - [SMALL_STATE(1548)] = 22545, - [SMALL_STATE(1549)] = 22625, - [SMALL_STATE(1550)] = 22705, - [SMALL_STATE(1551)] = 22791, - [SMALL_STATE(1552)] = 22871, - [SMALL_STATE(1553)] = 22951, - [SMALL_STATE(1554)] = 23031, - [SMALL_STATE(1555)] = 23111, - [SMALL_STATE(1556)] = 23191, - [SMALL_STATE(1557)] = 23271, - [SMALL_STATE(1558)] = 23351, - [SMALL_STATE(1559)] = 23431, - [SMALL_STATE(1560)] = 23511, - [SMALL_STATE(1561)] = 23591, - [SMALL_STATE(1562)] = 23671, - [SMALL_STATE(1563)] = 23751, - [SMALL_STATE(1564)] = 23843, - [SMALL_STATE(1565)] = 23919, - [SMALL_STATE(1566)] = 23993, - [SMALL_STATE(1567)] = 24061, - [SMALL_STATE(1568)] = 24125, - [SMALL_STATE(1569)] = 24211, - [SMALL_STATE(1570)] = 24299, - [SMALL_STATE(1571)] = 24389, - [SMALL_STATE(1572)] = 24467, - [SMALL_STATE(1573)] = 24539, - [SMALL_STATE(1574)] = 24619, - [SMALL_STATE(1575)] = 24701, - [SMALL_STATE(1576)] = 24785, - [SMALL_STATE(1577)] = 24865, - [SMALL_STATE(1578)] = 24951, - [SMALL_STATE(1579)] = 25027, - [SMALL_STATE(1580)] = 25101, - [SMALL_STATE(1581)] = 25175, - [SMALL_STATE(1582)] = 25247, - [SMALL_STATE(1583)] = 25315, - [SMALL_STATE(1584)] = 25381, - [SMALL_STATE(1585)] = 25445, - [SMALL_STATE(1586)] = 25507, - [SMALL_STATE(1587)] = 25593, - [SMALL_STATE(1588)] = 25677, - [SMALL_STATE(1589)] = 25765, - [SMALL_STATE(1590)] = 25855, - [SMALL_STATE(1591)] = 25943, - [SMALL_STATE(1592)] = 26021, - [SMALL_STATE(1593)] = 26097, - [SMALL_STATE(1594)] = 26169, - [SMALL_STATE(1595)] = 26239, - [SMALL_STATE(1596)] = 26319, - [SMALL_STATE(1597)] = 26397, - [SMALL_STATE(1598)] = 26479, - [SMALL_STATE(1599)] = 26559, - [SMALL_STATE(1600)] = 26643, - [SMALL_STATE(1601)] = 26725, - [SMALL_STATE(1602)] = 26801, - [SMALL_STATE(1603)] = 26875, - [SMALL_STATE(1604)] = 26943, - [SMALL_STATE(1605)] = 27023, - [SMALL_STATE(1606)] = 27087, - [SMALL_STATE(1607)] = 27173, + [SMALL_STATE(1462)] = 16568, + [SMALL_STATE(1463)] = 16632, + [SMALL_STATE(1464)] = 16730, + [SMALL_STATE(1465)] = 16796, + [SMALL_STATE(1466)] = 16856, + [SMALL_STATE(1467)] = 16920, + [SMALL_STATE(1468)] = 16986, + [SMALL_STATE(1469)] = 17046, + [SMALL_STATE(1470)] = 17110, + [SMALL_STATE(1471)] = 17174, + [SMALL_STATE(1472)] = 17272, + [SMALL_STATE(1473)] = 17336, + [SMALL_STATE(1474)] = 17402, + [SMALL_STATE(1475)] = 17468, + [SMALL_STATE(1476)] = 17534, + [SMALL_STATE(1477)] = 17600, + [SMALL_STATE(1478)] = 17660, + [SMALL_STATE(1479)] = 17724, + [SMALL_STATE(1480)] = 17790, + [SMALL_STATE(1481)] = 17852, + [SMALL_STATE(1482)] = 17918, + [SMALL_STATE(1483)] = 17978, + [SMALL_STATE(1484)] = 18044, + [SMALL_STATE(1485)] = 18106, + [SMALL_STATE(1486)] = 18172, + [SMALL_STATE(1487)] = 18238, + [SMALL_STATE(1488)] = 18302, + [SMALL_STATE(1489)] = 18366, + [SMALL_STATE(1490)] = 18428, + [SMALL_STATE(1491)] = 18489, + [SMALL_STATE(1492)] = 18552, + [SMALL_STATE(1493)] = 18611, + [SMALL_STATE(1494)] = 18674, + [SMALL_STATE(1495)] = 18737, + [SMALL_STATE(1496)] = 18800, + [SMALL_STATE(1497)] = 18861, + [SMALL_STATE(1498)] = 18924, + [SMALL_STATE(1499)] = 18983, + [SMALL_STATE(1500)] = 19046, + [SMALL_STATE(1501)] = 19109, + [SMALL_STATE(1502)] = 19172, + [SMALL_STATE(1503)] = 19235, + [SMALL_STATE(1504)] = 19294, + [SMALL_STATE(1505)] = 19355, + [SMALL_STATE(1506)] = 19418, + [SMALL_STATE(1507)] = 19479, + [SMALL_STATE(1508)] = 19538, + [SMALL_STATE(1509)] = 19599, + [SMALL_STATE(1510)] = 19658, + [SMALL_STATE(1511)] = 19721, + [SMALL_STATE(1512)] = 19793, + [SMALL_STATE(1513)] = 19873, + [SMALL_STATE(1514)] = 19953, + [SMALL_STATE(1515)] = 20033, + [SMALL_STATE(1516)] = 20109, + [SMALL_STATE(1517)] = 20183, + [SMALL_STATE(1518)] = 20251, + [SMALL_STATE(1519)] = 20315, + [SMALL_STATE(1520)] = 20401, + [SMALL_STATE(1521)] = 20489, + [SMALL_STATE(1522)] = 20579, + [SMALL_STATE(1523)] = 20657, + [SMALL_STATE(1524)] = 20737, + [SMALL_STATE(1525)] = 20817, + [SMALL_STATE(1526)] = 20897, + [SMALL_STATE(1527)] = 20979, + [SMALL_STATE(1528)] = 21063, + [SMALL_STATE(1529)] = 21143, + [SMALL_STATE(1530)] = 21223, + [SMALL_STATE(1531)] = 21303, + [SMALL_STATE(1532)] = 21383, + [SMALL_STATE(1533)] = 21463, + [SMALL_STATE(1534)] = 21543, + [SMALL_STATE(1535)] = 21623, + [SMALL_STATE(1536)] = 21709, + [SMALL_STATE(1537)] = 21789, + [SMALL_STATE(1538)] = 21869, + [SMALL_STATE(1539)] = 21949, + [SMALL_STATE(1540)] = 22025, + [SMALL_STATE(1541)] = 22099, + [SMALL_STATE(1542)] = 22173, + [SMALL_STATE(1543)] = 22245, + [SMALL_STATE(1544)] = 22313, + [SMALL_STATE(1545)] = 22379, + [SMALL_STATE(1546)] = 22443, + [SMALL_STATE(1547)] = 22505, + [SMALL_STATE(1548)] = 22591, + [SMALL_STATE(1549)] = 22675, + [SMALL_STATE(1550)] = 22763, + [SMALL_STATE(1551)] = 22849, + [SMALL_STATE(1552)] = 22939, + [SMALL_STATE(1553)] = 23027, + [SMALL_STATE(1554)] = 23105, + [SMALL_STATE(1555)] = 23181, + [SMALL_STATE(1556)] = 23253, + [SMALL_STATE(1557)] = 23323, + [SMALL_STATE(1558)] = 23403, + [SMALL_STATE(1559)] = 23481, + [SMALL_STATE(1560)] = 23563, + [SMALL_STATE(1561)] = 23643, + [SMALL_STATE(1562)] = 23727, + [SMALL_STATE(1563)] = 23809, + [SMALL_STATE(1564)] = 23885, + [SMALL_STATE(1565)] = 23959, + [SMALL_STATE(1566)] = 24039, + [SMALL_STATE(1567)] = 24107, + [SMALL_STATE(1568)] = 24171, + [SMALL_STATE(1569)] = 24257, + [SMALL_STATE(1570)] = 24337, + [SMALL_STATE(1571)] = 24425, + [SMALL_STATE(1572)] = 24505, + [SMALL_STATE(1573)] = 24595, + [SMALL_STATE(1574)] = 24675, + [SMALL_STATE(1575)] = 24753, + [SMALL_STATE(1576)] = 24833, + [SMALL_STATE(1577)] = 24913, + [SMALL_STATE(1578)] = 24985, + [SMALL_STATE(1579)] = 25065, + [SMALL_STATE(1580)] = 25145, + [SMALL_STATE(1581)] = 25225, + [SMALL_STATE(1582)] = 25307, + [SMALL_STATE(1583)] = 25387, + [SMALL_STATE(1584)] = 25471, + [SMALL_STATE(1585)] = 25557, + [SMALL_STATE(1586)] = 25637, + [SMALL_STATE(1587)] = 25717, + [SMALL_STATE(1588)] = 25791, + [SMALL_STATE(1589)] = 25863, + [SMALL_STATE(1590)] = 25929, + [SMALL_STATE(1591)] = 25991, + [SMALL_STATE(1592)] = 26075, + [SMALL_STATE(1593)] = 26161, + [SMALL_STATE(1594)] = 26249, + [SMALL_STATE(1595)] = 26325, + [SMALL_STATE(1596)] = 26395, + [SMALL_STATE(1597)] = 26473, + [SMALL_STATE(1598)] = 26553, + [SMALL_STATE(1599)] = 26635, + [SMALL_STATE(1600)] = 26695, + [SMALL_STATE(1601)] = 26769, + [SMALL_STATE(1602)] = 26843, + [SMALL_STATE(1603)] = 26915, + [SMALL_STATE(1604)] = 26983, + [SMALL_STATE(1605)] = 27049, + [SMALL_STATE(1606)] = 27113, + [SMALL_STATE(1607)] = 27175, [SMALL_STATE(1608)] = 27261, - [SMALL_STATE(1609)] = 27351, - [SMALL_STATE(1610)] = 27429, - [SMALL_STATE(1611)] = 27501, - [SMALL_STATE(1612)] = 27581, - [SMALL_STATE(1613)] = 27663, - [SMALL_STATE(1614)] = 27747, - [SMALL_STATE(1615)] = 27821, - [SMALL_STATE(1616)] = 27893, - [SMALL_STATE(1617)] = 27959, - [SMALL_STATE(1618)] = 28021, - [SMALL_STATE(1619)] = 28105, - [SMALL_STATE(1620)] = 28191, - [SMALL_STATE(1621)] = 28279, - [SMALL_STATE(1622)] = 28355, - [SMALL_STATE(1623)] = 28425, - [SMALL_STATE(1624)] = 28503, - [SMALL_STATE(1625)] = 28583, - [SMALL_STATE(1626)] = 28665, - [SMALL_STATE(1627)] = 28741, - [SMALL_STATE(1628)] = 28815, - [SMALL_STATE(1629)] = 28889, - [SMALL_STATE(1630)] = 28961, - [SMALL_STATE(1631)] = 29029, - [SMALL_STATE(1632)] = 29095, - [SMALL_STATE(1633)] = 29159, - [SMALL_STATE(1634)] = 29221, - [SMALL_STATE(1635)] = 29307, - [SMALL_STATE(1636)] = 29391, - [SMALL_STATE(1637)] = 29479, - [SMALL_STATE(1638)] = 29565, - [SMALL_STATE(1639)] = 29655, - [SMALL_STATE(1640)] = 29743, - [SMALL_STATE(1641)] = 29821, - [SMALL_STATE(1642)] = 29897, - [SMALL_STATE(1643)] = 29969, - [SMALL_STATE(1644)] = 30039, - [SMALL_STATE(1645)] = 30119, - [SMALL_STATE(1646)] = 30197, - [SMALL_STATE(1647)] = 30279, - [SMALL_STATE(1648)] = 30359, - [SMALL_STATE(1649)] = 30443, - [SMALL_STATE(1650)] = 30525, - [SMALL_STATE(1651)] = 30599, - [SMALL_STATE(1652)] = 30671, - [SMALL_STATE(1653)] = 30737, - [SMALL_STATE(1654)] = 30799, - [SMALL_STATE(1655)] = 30883, - [SMALL_STATE(1656)] = 30969, - [SMALL_STATE(1657)] = 31057, - [SMALL_STATE(1658)] = 31133, - [SMALL_STATE(1659)] = 31203, - [SMALL_STATE(1660)] = 31281, - [SMALL_STATE(1661)] = 31361, - [SMALL_STATE(1662)] = 31443, - [SMALL_STATE(1663)] = 31523, - [SMALL_STATE(1664)] = 31603, - [SMALL_STATE(1665)] = 31683, - [SMALL_STATE(1666)] = 31755, + [SMALL_STATE(1609)] = 27345, + [SMALL_STATE(1610)] = 27433, + [SMALL_STATE(1611)] = 27519, + [SMALL_STATE(1612)] = 27609, + [SMALL_STATE(1613)] = 27697, + [SMALL_STATE(1614)] = 27775, + [SMALL_STATE(1615)] = 27851, + [SMALL_STATE(1616)] = 27923, + [SMALL_STATE(1617)] = 27993, + [SMALL_STATE(1618)] = 28073, + [SMALL_STATE(1619)] = 28151, + [SMALL_STATE(1620)] = 28233, + [SMALL_STATE(1621)] = 28313, + [SMALL_STATE(1622)] = 28397, + [SMALL_STATE(1623)] = 28479, + [SMALL_STATE(1624)] = 28559, + [SMALL_STATE(1625)] = 28639, + [SMALL_STATE(1626)] = 28713, + [SMALL_STATE(1627)] = 28785, + [SMALL_STATE(1628)] = 28851, + [SMALL_STATE(1629)] = 28913, + [SMALL_STATE(1630)] = 28997, + [SMALL_STATE(1631)] = 29083, + [SMALL_STATE(1632)] = 29171, + [SMALL_STATE(1633)] = 29247, + [SMALL_STATE(1634)] = 29317, + [SMALL_STATE(1635)] = 29395, + [SMALL_STATE(1636)] = 29475, + [SMALL_STATE(1637)] = 29557, + [SMALL_STATE(1638)] = 29647, + [SMALL_STATE(1639)] = 29707, + [SMALL_STATE(1640)] = 29767, + [SMALL_STATE(1641)] = 29827, + [SMALL_STATE(1642)] = 29907, + [SMALL_STATE(1643)] = 29987, + [SMALL_STATE(1644)] = 30059, + [SMALL_STATE(1645)] = 30129, + [SMALL_STATE(1646)] = 30193, + [SMALL_STATE(1647)] = 30253, + [SMALL_STATE(1648)] = 30335, + [SMALL_STATE(1649)] = 30419, + [SMALL_STATE(1650)] = 30505, + [SMALL_STATE(1651)] = 30579, + [SMALL_STATE(1652)] = 30647, + [SMALL_STATE(1653)] = 30723, + [SMALL_STATE(1654)] = 30801, + [SMALL_STATE(1655)] = 30881, + [SMALL_STATE(1656)] = 30961, + [SMALL_STATE(1657)] = 31041, + [SMALL_STATE(1658)] = 31121, + [SMALL_STATE(1659)] = 31201, + [SMALL_STATE(1660)] = 31287, + [SMALL_STATE(1661)] = 31367, + [SMALL_STATE(1662)] = 31447, + [SMALL_STATE(1663)] = 31527, + [SMALL_STATE(1664)] = 31607, + [SMALL_STATE(1665)] = 31687, + [SMALL_STATE(1666)] = 31767, [SMALL_STATE(1667)] = 31825, - [SMALL_STATE(1668)] = 31889, - [SMALL_STATE(1669)] = 31949, - [SMALL_STATE(1670)] = 32031, - [SMALL_STATE(1671)] = 32115, - [SMALL_STATE(1672)] = 32201, - [SMALL_STATE(1673)] = 32275, - [SMALL_STATE(1674)] = 32343, - [SMALL_STATE(1675)] = 32419, - [SMALL_STATE(1676)] = 32497, - [SMALL_STATE(1677)] = 32577, - [SMALL_STATE(1678)] = 32663, - [SMALL_STATE(1679)] = 32749, - [SMALL_STATE(1680)] = 32820, - [SMALL_STATE(1681)] = 32907, - [SMALL_STATE(1682)] = 32978, - [SMALL_STATE(1683)] = 33047, - [SMALL_STATE(1684)] = 33110, - [SMALL_STATE(1685)] = 33169, - [SMALL_STATE(1686)] = 33250, - [SMALL_STATE(1687)] = 33333, - [SMALL_STATE(1688)] = 33418, - [SMALL_STATE(1689)] = 33495, - [SMALL_STATE(1690)] = 33568, - [SMALL_STATE(1691)] = 33635, - [SMALL_STATE(1692)] = 33710, - [SMALL_STATE(1693)] = 33787, - [SMALL_STATE(1694)] = 33866, - [SMALL_STATE(1695)] = 33953, - [SMALL_STATE(1696)] = 34026, - [SMALL_STATE(1697)] = 34085, - [SMALL_STATE(1698)] = 34156, - [SMALL_STATE(1699)] = 34242, - [SMALL_STATE(1700)] = 34328, - [SMALL_STATE(1701)] = 34414, - [SMALL_STATE(1702)] = 34500, - [SMALL_STATE(1703)] = 34586, - [SMALL_STATE(1704)] = 34672, - [SMALL_STATE(1705)] = 34732, - [SMALL_STATE(1706)] = 34802, - [SMALL_STATE(1707)] = 34862, - [SMALL_STATE(1708)] = 34932, - [SMALL_STATE(1709)] = 35002, - [SMALL_STATE(1710)] = 35088, - [SMALL_STATE(1711)] = 35174, - [SMALL_STATE(1712)] = 35244, - [SMALL_STATE(1713)] = 35330, - [SMALL_STATE(1714)] = 35416, - [SMALL_STATE(1715)] = 35502, - [SMALL_STATE(1716)] = 35569, - [SMALL_STATE(1717)] = 35650, - [SMALL_STATE(1718)] = 35717, + [SMALL_STATE(1668)] = 31885, + [SMALL_STATE(1669)] = 31965, + [SMALL_STATE(1670)] = 32045, + [SMALL_STATE(1671)] = 32131, + [SMALL_STATE(1672)] = 32211, + [SMALL_STATE(1673)] = 32285, + [SMALL_STATE(1674)] = 32365, + [SMALL_STATE(1675)] = 32445, + [SMALL_STATE(1676)] = 32525, + [SMALL_STATE(1677)] = 32605, + [SMALL_STATE(1678)] = 32685, + [SMALL_STATE(1679)] = 32761, + [SMALL_STATE(1680)] = 32832, + [SMALL_STATE(1681)] = 32917, + [SMALL_STATE(1682)] = 32976, + [SMALL_STATE(1683)] = 33043, + [SMALL_STATE(1684)] = 33130, + [SMALL_STATE(1685)] = 33205, + [SMALL_STATE(1686)] = 33282, + [SMALL_STATE(1687)] = 33353, + [SMALL_STATE(1688)] = 33432, + [SMALL_STATE(1689)] = 33509, + [SMALL_STATE(1690)] = 33580, + [SMALL_STATE(1691)] = 33649, + [SMALL_STATE(1692)] = 33712, + [SMALL_STATE(1693)] = 33771, + [SMALL_STATE(1694)] = 33844, + [SMALL_STATE(1695)] = 33931, + [SMALL_STATE(1696)] = 34012, + [SMALL_STATE(1697)] = 34095, + [SMALL_STATE(1698)] = 34168, + [SMALL_STATE(1699)] = 34254, + [SMALL_STATE(1700)] = 34314, + [SMALL_STATE(1701)] = 34400, + [SMALL_STATE(1702)] = 34470, + [SMALL_STATE(1703)] = 34556, + [SMALL_STATE(1704)] = 34616, + [SMALL_STATE(1705)] = 34702, + [SMALL_STATE(1706)] = 34788, + [SMALL_STATE(1707)] = 34858, + [SMALL_STATE(1708)] = 34928, + [SMALL_STATE(1709)] = 35014, + [SMALL_STATE(1710)] = 35100, + [SMALL_STATE(1711)] = 35186, + [SMALL_STATE(1712)] = 35272, + [SMALL_STATE(1713)] = 35358, + [SMALL_STATE(1714)] = 35428, + [SMALL_STATE(1715)] = 35514, + [SMALL_STATE(1716)] = 35595, + [SMALL_STATE(1717)] = 35656, + [SMALL_STATE(1718)] = 35719, [SMALL_STATE(1719)] = 35786, - [SMALL_STATE(1720)] = 35857, - [SMALL_STATE(1721)] = 35916, - [SMALL_STATE(1722)] = 35997, - [SMALL_STATE(1723)] = 36054, - [SMALL_STATE(1724)] = 36121, - [SMALL_STATE(1725)] = 36202, - [SMALL_STATE(1726)] = 36259, - [SMALL_STATE(1727)] = 36330, - [SMALL_STATE(1728)] = 36393, - [SMALL_STATE(1729)] = 36460, - [SMALL_STATE(1730)] = 36527, - [SMALL_STATE(1731)] = 36594, - [SMALL_STATE(1732)] = 36665, - [SMALL_STATE(1733)] = 36736, - [SMALL_STATE(1734)] = 36797, + [SMALL_STATE(1720)] = 35845, + [SMALL_STATE(1721)] = 35904, + [SMALL_STATE(1722)] = 35971, + [SMALL_STATE(1723)] = 36040, + [SMALL_STATE(1724)] = 36111, + [SMALL_STATE(1725)] = 36192, + [SMALL_STATE(1726)] = 36249, + [SMALL_STATE(1727)] = 36320, + [SMALL_STATE(1728)] = 36383, + [SMALL_STATE(1729)] = 36450, + [SMALL_STATE(1730)] = 36517, + [SMALL_STATE(1731)] = 36584, + [SMALL_STATE(1732)] = 36651, + [SMALL_STATE(1733)] = 36732, + [SMALL_STATE(1734)] = 36789, [SMALL_STATE(1735)] = 36860, [SMALL_STATE(1736)] = 36923, - [SMALL_STATE(1737)] = 36982, - [SMALL_STATE(1738)] = 37050, - [SMALL_STATE(1739)] = 37112, - [SMALL_STATE(1740)] = 37180, - [SMALL_STATE(1741)] = 37258, - [SMALL_STATE(1742)] = 37320, - [SMALL_STATE(1743)] = 37380, - [SMALL_STATE(1744)] = 37438, - [SMALL_STATE(1745)] = 37496, - [SMALL_STATE(1746)] = 37564, - [SMALL_STATE(1747)] = 37632, - [SMALL_STATE(1748)] = 37690, - [SMALL_STATE(1749)] = 37748, - [SMALL_STATE(1750)] = 37802, - [SMALL_STATE(1751)] = 37856, - [SMALL_STATE(1752)] = 37910, - [SMALL_STATE(1753)] = 37964, - [SMALL_STATE(1754)] = 38042, - [SMALL_STATE(1755)] = 38096, - [SMALL_STATE(1756)] = 38174, - [SMALL_STATE(1757)] = 38252, - [SMALL_STATE(1758)] = 38306, - [SMALL_STATE(1759)] = 38374, - [SMALL_STATE(1760)] = 38428, - [SMALL_STATE(1761)] = 38482, - [SMALL_STATE(1762)] = 38538, - [SMALL_STATE(1763)] = 38594, - [SMALL_STATE(1764)] = 38674, - [SMALL_STATE(1765)] = 38752, - [SMALL_STATE(1766)] = 38810, - [SMALL_STATE(1767)] = 38888, - [SMALL_STATE(1768)] = 38966, - [SMALL_STATE(1769)] = 39044, - [SMALL_STATE(1770)] = 39112, - [SMALL_STATE(1771)] = 39192, - [SMALL_STATE(1772)] = 39270, - [SMALL_STATE(1773)] = 39330, - [SMALL_STATE(1774)] = 39408, - [SMALL_STATE(1775)] = 39470, - [SMALL_STATE(1776)] = 39548, - [SMALL_STATE(1777)] = 39602, - [SMALL_STATE(1778)] = 39655, - [SMALL_STATE(1779)] = 39732, - [SMALL_STATE(1780)] = 39809, - [SMALL_STATE(1781)] = 39862, - [SMALL_STATE(1782)] = 39913, - [SMALL_STATE(1783)] = 39964, - [SMALL_STATE(1784)] = 40029, - [SMALL_STATE(1785)] = 40092, - [SMALL_STATE(1786)] = 40169, - [SMALL_STATE(1787)] = 40222, - [SMALL_STATE(1788)] = 40275, - [SMALL_STATE(1789)] = 40340, - [SMALL_STATE(1790)] = 40405, - [SMALL_STATE(1791)] = 40482, - [SMALL_STATE(1792)] = 40547, - [SMALL_STATE(1793)] = 40598, - [SMALL_STATE(1794)] = 40649, - [SMALL_STATE(1795)] = 40714, - [SMALL_STATE(1796)] = 40769, - [SMALL_STATE(1797)] = 40822, - [SMALL_STATE(1798)] = 40887, - [SMALL_STATE(1799)] = 40940, - [SMALL_STATE(1800)] = 41017, - [SMALL_STATE(1801)] = 41070, - [SMALL_STATE(1802)] = 41125, - [SMALL_STATE(1803)] = 41178, - [SMALL_STATE(1804)] = 41233, - [SMALL_STATE(1805)] = 41290, - [SMALL_STATE(1806)] = 41347, - [SMALL_STATE(1807)] = 41400, - [SMALL_STATE(1808)] = 41451, - [SMALL_STATE(1809)] = 41502, - [SMALL_STATE(1810)] = 41579, - [SMALL_STATE(1811)] = 41644, - [SMALL_STATE(1812)] = 41709, - [SMALL_STATE(1813)] = 41768, - [SMALL_STATE(1814)] = 41825, - [SMALL_STATE(1815)] = 41890, - [SMALL_STATE(1816)] = 41955, - [SMALL_STATE(1817)] = 42010, - [SMALL_STATE(1818)] = 42087, - [SMALL_STATE(1819)] = 42164, - [SMALL_STATE(1820)] = 42241, - [SMALL_STATE(1821)] = 42318, - [SMALL_STATE(1822)] = 42395, - [SMALL_STATE(1823)] = 42472, - [SMALL_STATE(1824)] = 42527, - [SMALL_STATE(1825)] = 42582, - [SMALL_STATE(1826)] = 42634, - [SMALL_STATE(1827)] = 42694, - [SMALL_STATE(1828)] = 42754, - [SMALL_STATE(1829)] = 42816, - [SMALL_STATE(1830)] = 42868, - [SMALL_STATE(1831)] = 42928, - [SMALL_STATE(1832)] = 42990, - [SMALL_STATE(1833)] = 43044, - [SMALL_STATE(1834)] = 43096, - [SMALL_STATE(1835)] = 43148, - [SMALL_STATE(1836)] = 43200, - [SMALL_STATE(1837)] = 43254, - [SMALL_STATE(1838)] = 43308, - [SMALL_STATE(1839)] = 43368, - [SMALL_STATE(1840)] = 43422, - [SMALL_STATE(1841)] = 43474, - [SMALL_STATE(1842)] = 43536, - [SMALL_STATE(1843)] = 43588, - [SMALL_STATE(1844)] = 43640, - [SMALL_STATE(1845)] = 43692, - [SMALL_STATE(1846)] = 43743, - [SMALL_STATE(1847)] = 43802, - [SMALL_STATE(1848)] = 43853, - [SMALL_STATE(1849)] = 43904, - [SMALL_STATE(1850)] = 43955, - [SMALL_STATE(1851)] = 44014, - [SMALL_STATE(1852)] = 44073, - [SMALL_STATE(1853)] = 44124, - [SMALL_STATE(1854)] = 44223, - [SMALL_STATE(1855)] = 44274, - [SMALL_STATE(1856)] = 44333, - [SMALL_STATE(1857)] = 44384, - [SMALL_STATE(1858)] = 44435, - [SMALL_STATE(1859)] = 44486, - [SMALL_STATE(1860)] = 44541, - [SMALL_STATE(1861)] = 44592, - [SMALL_STATE(1862)] = 44643, - [SMALL_STATE(1863)] = 44694, - [SMALL_STATE(1864)] = 44753, - [SMALL_STATE(1865)] = 44808, - [SMALL_STATE(1866)] = 44859, - [SMALL_STATE(1867)] = 44910, - [SMALL_STATE(1868)] = 44961, - [SMALL_STATE(1869)] = 45012, - [SMALL_STATE(1870)] = 45063, - [SMALL_STATE(1871)] = 45114, - [SMALL_STATE(1872)] = 45165, - [SMALL_STATE(1873)] = 45216, - [SMALL_STATE(1874)] = 45267, - [SMALL_STATE(1875)] = 45318, - [SMALL_STATE(1876)] = 45377, - [SMALL_STATE(1877)] = 45428, - [SMALL_STATE(1878)] = 45487, - [SMALL_STATE(1879)] = 45542, - [SMALL_STATE(1880)] = 45597, - [SMALL_STATE(1881)] = 45648, - [SMALL_STATE(1882)] = 45698, - [SMALL_STATE(1883)] = 45754, - [SMALL_STATE(1884)] = 45812, - [SMALL_STATE(1885)] = 45862, - [SMALL_STATE(1886)] = 45912, - [SMALL_STATE(1887)] = 45962, - [SMALL_STATE(1888)] = 46012, - [SMALL_STATE(1889)] = 46070, - [SMALL_STATE(1890)] = 46120, - [SMALL_STATE(1891)] = 46170, - [SMALL_STATE(1892)] = 46220, - [SMALL_STATE(1893)] = 46274, - [SMALL_STATE(1894)] = 46328, - [SMALL_STATE(1895)] = 46386, - [SMALL_STATE(1896)] = 46440, - [SMALL_STATE(1897)] = 46490, - [SMALL_STATE(1898)] = 46586, - [SMALL_STATE(1899)] = 46636, - [SMALL_STATE(1900)] = 46688, - [SMALL_STATE(1901)] = 46784, - [SMALL_STATE(1902)] = 46842, - [SMALL_STATE(1903)] = 46896, - [SMALL_STATE(1904)] = 46946, - [SMALL_STATE(1905)] = 46998, - [SMALL_STATE(1906)] = 47050, - [SMALL_STATE(1907)] = 47100, - [SMALL_STATE(1908)] = 47150, - [SMALL_STATE(1909)] = 47200, - [SMALL_STATE(1910)] = 47258, - [SMALL_STATE(1911)] = 47308, - [SMALL_STATE(1912)] = 47366, - [SMALL_STATE(1913)] = 47418, - [SMALL_STATE(1914)] = 47468, - [SMALL_STATE(1915)] = 47518, - [SMALL_STATE(1916)] = 47568, - [SMALL_STATE(1917)] = 47626, - [SMALL_STATE(1918)] = 47677, - [SMALL_STATE(1919)] = 47730, - [SMALL_STATE(1920)] = 47783, - [SMALL_STATE(1921)] = 47832, - [SMALL_STATE(1922)] = 47885, - [SMALL_STATE(1923)] = 47938, - [SMALL_STATE(1924)] = 47991, - [SMALL_STATE(1925)] = 48044, - [SMALL_STATE(1926)] = 48097, - [SMALL_STATE(1927)] = 48150, - [SMALL_STATE(1928)] = 48203, - [SMALL_STATE(1929)] = 48256, - [SMALL_STATE(1930)] = 48307, - [SMALL_STATE(1931)] = 48360, - [SMALL_STATE(1932)] = 48413, - [SMALL_STATE(1933)] = 48466, - [SMALL_STATE(1934)] = 48519, - [SMALL_STATE(1935)] = 48568, - [SMALL_STATE(1936)] = 48621, - [SMALL_STATE(1937)] = 48716, - [SMALL_STATE(1938)] = 48773, - [SMALL_STATE(1939)] = 48826, - [SMALL_STATE(1940)] = 48877, - [SMALL_STATE(1941)] = 48932, - [SMALL_STATE(1942)] = 48981, - [SMALL_STATE(1943)] = 49032, - [SMALL_STATE(1944)] = 49127, + [SMALL_STATE(1737)] = 36994, + [SMALL_STATE(1738)] = 37062, + [SMALL_STATE(1739)] = 37122, + [SMALL_STATE(1740)] = 37190, + [SMALL_STATE(1741)] = 37248, + [SMALL_STATE(1742)] = 37328, + [SMALL_STATE(1743)] = 37396, + [SMALL_STATE(1744)] = 37474, + [SMALL_STATE(1745)] = 37552, + [SMALL_STATE(1746)] = 37630, + [SMALL_STATE(1747)] = 37708, + [SMALL_STATE(1748)] = 37776, + [SMALL_STATE(1749)] = 37856, + [SMALL_STATE(1750)] = 37916, + [SMALL_STATE(1751)] = 37974, + [SMALL_STATE(1752)] = 38052, + [SMALL_STATE(1753)] = 38130, + [SMALL_STATE(1754)] = 38192, + [SMALL_STATE(1755)] = 38246, + [SMALL_STATE(1756)] = 38314, + [SMALL_STATE(1757)] = 38368, + [SMALL_STATE(1758)] = 38430, + [SMALL_STATE(1759)] = 38484, + [SMALL_STATE(1760)] = 38562, + [SMALL_STATE(1761)] = 38620, + [SMALL_STATE(1762)] = 38674, + [SMALL_STATE(1763)] = 38728, + [SMALL_STATE(1764)] = 38790, + [SMALL_STATE(1765)] = 38868, + [SMALL_STATE(1766)] = 38926, + [SMALL_STATE(1767)] = 38982, + [SMALL_STATE(1768)] = 39036, + [SMALL_STATE(1769)] = 39104, + [SMALL_STATE(1770)] = 39158, + [SMALL_STATE(1771)] = 39236, + [SMALL_STATE(1772)] = 39314, + [SMALL_STATE(1773)] = 39370, + [SMALL_STATE(1774)] = 39428, + [SMALL_STATE(1775)] = 39482, + [SMALL_STATE(1776)] = 39560, + [SMALL_STATE(1777)] = 39614, + [SMALL_STATE(1778)] = 39691, + [SMALL_STATE(1779)] = 39744, + [SMALL_STATE(1780)] = 39797, + [SMALL_STATE(1781)] = 39850, + [SMALL_STATE(1782)] = 39903, + [SMALL_STATE(1783)] = 39956, + [SMALL_STATE(1784)] = 40011, + [SMALL_STATE(1785)] = 40076, + [SMALL_STATE(1786)] = 40141, + [SMALL_STATE(1787)] = 40192, + [SMALL_STATE(1788)] = 40243, + [SMALL_STATE(1789)] = 40296, + [SMALL_STATE(1790)] = 40349, + [SMALL_STATE(1791)] = 40402, + [SMALL_STATE(1792)] = 40457, + [SMALL_STATE(1793)] = 40512, + [SMALL_STATE(1794)] = 40569, + [SMALL_STATE(1795)] = 40626, + [SMALL_STATE(1796)] = 40683, + [SMALL_STATE(1797)] = 40760, + [SMALL_STATE(1798)] = 40837, + [SMALL_STATE(1799)] = 40888, + [SMALL_STATE(1800)] = 40953, + [SMALL_STATE(1801)] = 41004, + [SMALL_STATE(1802)] = 41055, + [SMALL_STATE(1803)] = 41106, + [SMALL_STATE(1804)] = 41171, + [SMALL_STATE(1805)] = 41234, + [SMALL_STATE(1806)] = 41289, + [SMALL_STATE(1807)] = 41354, + [SMALL_STATE(1808)] = 41419, + [SMALL_STATE(1809)] = 41496, + [SMALL_STATE(1810)] = 41555, + [SMALL_STATE(1811)] = 41610, + [SMALL_STATE(1812)] = 41665, + [SMALL_STATE(1813)] = 41742, + [SMALL_STATE(1814)] = 41819, + [SMALL_STATE(1815)] = 41896, + [SMALL_STATE(1816)] = 41961, + [SMALL_STATE(1817)] = 42026, + [SMALL_STATE(1818)] = 42091, + [SMALL_STATE(1819)] = 42168, + [SMALL_STATE(1820)] = 42245, + [SMALL_STATE(1821)] = 42322, + [SMALL_STATE(1822)] = 42399, + [SMALL_STATE(1823)] = 42452, + [SMALL_STATE(1824)] = 42529, + [SMALL_STATE(1825)] = 42594, + [SMALL_STATE(1826)] = 42646, + [SMALL_STATE(1827)] = 42700, + [SMALL_STATE(1828)] = 42752, + [SMALL_STATE(1829)] = 42814, + [SMALL_STATE(1830)] = 42866, + [SMALL_STATE(1831)] = 42926, + [SMALL_STATE(1832)] = 42978, + [SMALL_STATE(1833)] = 43038, + [SMALL_STATE(1834)] = 43100, + [SMALL_STATE(1835)] = 43154, + [SMALL_STATE(1836)] = 43206, + [SMALL_STATE(1837)] = 43258, + [SMALL_STATE(1838)] = 43312, + [SMALL_STATE(1839)] = 43374, + [SMALL_STATE(1840)] = 43434, + [SMALL_STATE(1841)] = 43486, + [SMALL_STATE(1842)] = 43546, + [SMALL_STATE(1843)] = 43598, + [SMALL_STATE(1844)] = 43650, + [SMALL_STATE(1845)] = 43704, + [SMALL_STATE(1846)] = 43755, + [SMALL_STATE(1847)] = 43806, + [SMALL_STATE(1848)] = 43865, + [SMALL_STATE(1849)] = 43916, + [SMALL_STATE(1850)] = 43975, + [SMALL_STATE(1851)] = 44030, + [SMALL_STATE(1852)] = 44081, + [SMALL_STATE(1853)] = 44140, + [SMALL_STATE(1854)] = 44195, + [SMALL_STATE(1855)] = 44246, + [SMALL_STATE(1856)] = 44297, + [SMALL_STATE(1857)] = 44348, + [SMALL_STATE(1858)] = 44407, + [SMALL_STATE(1859)] = 44458, + [SMALL_STATE(1860)] = 44509, + [SMALL_STATE(1861)] = 44608, + [SMALL_STATE(1862)] = 44663, + [SMALL_STATE(1863)] = 44714, + [SMALL_STATE(1864)] = 44765, + [SMALL_STATE(1865)] = 44824, + [SMALL_STATE(1866)] = 44875, + [SMALL_STATE(1867)] = 44926, + [SMALL_STATE(1868)] = 44977, + [SMALL_STATE(1869)] = 45028, + [SMALL_STATE(1870)] = 45083, + [SMALL_STATE(1871)] = 45134, + [SMALL_STATE(1872)] = 45185, + [SMALL_STATE(1873)] = 45244, + [SMALL_STATE(1874)] = 45295, + [SMALL_STATE(1875)] = 45346, + [SMALL_STATE(1876)] = 45397, + [SMALL_STATE(1877)] = 45448, + [SMALL_STATE(1878)] = 45499, + [SMALL_STATE(1879)] = 45550, + [SMALL_STATE(1880)] = 45609, + [SMALL_STATE(1881)] = 45660, + [SMALL_STATE(1882)] = 45714, + [SMALL_STATE(1883)] = 45810, + [SMALL_STATE(1884)] = 45864, + [SMALL_STATE(1885)] = 45914, + [SMALL_STATE(1886)] = 45964, + [SMALL_STATE(1887)] = 46014, + [SMALL_STATE(1888)] = 46064, + [SMALL_STATE(1889)] = 46116, + [SMALL_STATE(1890)] = 46174, + [SMALL_STATE(1891)] = 46232, + [SMALL_STATE(1892)] = 46282, + [SMALL_STATE(1893)] = 46340, + [SMALL_STATE(1894)] = 46392, + [SMALL_STATE(1895)] = 46442, + [SMALL_STATE(1896)] = 46492, + [SMALL_STATE(1897)] = 46542, + [SMALL_STATE(1898)] = 46600, + [SMALL_STATE(1899)] = 46650, + [SMALL_STATE(1900)] = 46706, + [SMALL_STATE(1901)] = 46760, + [SMALL_STATE(1902)] = 46810, + [SMALL_STATE(1903)] = 46860, + [SMALL_STATE(1904)] = 46910, + [SMALL_STATE(1905)] = 46962, + [SMALL_STATE(1906)] = 47012, + [SMALL_STATE(1907)] = 47108, + [SMALL_STATE(1908)] = 47162, + [SMALL_STATE(1909)] = 47220, + [SMALL_STATE(1910)] = 47272, + [SMALL_STATE(1911)] = 47330, + [SMALL_STATE(1912)] = 47380, + [SMALL_STATE(1913)] = 47430, + [SMALL_STATE(1914)] = 47480, + [SMALL_STATE(1915)] = 47530, + [SMALL_STATE(1916)] = 47580, + [SMALL_STATE(1917)] = 47638, + [SMALL_STATE(1918)] = 47691, + [SMALL_STATE(1919)] = 47740, + [SMALL_STATE(1920)] = 47793, + [SMALL_STATE(1921)] = 47846, + [SMALL_STATE(1922)] = 47895, + [SMALL_STATE(1923)] = 47948, + [SMALL_STATE(1924)] = 48005, + [SMALL_STATE(1925)] = 48058, + [SMALL_STATE(1926)] = 48113, + [SMALL_STATE(1927)] = 48162, + [SMALL_STATE(1928)] = 48211, + [SMALL_STATE(1929)] = 48306, + [SMALL_STATE(1930)] = 48359, + [SMALL_STATE(1931)] = 48412, + [SMALL_STATE(1932)] = 48507, + [SMALL_STATE(1933)] = 48558, + [SMALL_STATE(1934)] = 48607, + [SMALL_STATE(1935)] = 48656, + [SMALL_STATE(1936)] = 48705, + [SMALL_STATE(1937)] = 48758, + [SMALL_STATE(1938)] = 48811, + [SMALL_STATE(1939)] = 48862, + [SMALL_STATE(1940)] = 48915, + [SMALL_STATE(1941)] = 48968, + [SMALL_STATE(1942)] = 49017, + [SMALL_STATE(1943)] = 49070, + [SMALL_STATE(1944)] = 49123, [SMALL_STATE(1945)] = 49176, - [SMALL_STATE(1946)] = 49225, - [SMALL_STATE(1947)] = 49274, - [SMALL_STATE(1948)] = 49329, - [SMALL_STATE(1949)] = 49382, - [SMALL_STATE(1950)] = 49431, - [SMALL_STATE(1951)] = 49480, - [SMALL_STATE(1952)] = 49529, - [SMALL_STATE(1953)] = 49582, - [SMALL_STATE(1954)] = 49631, - [SMALL_STATE(1955)] = 49680, - [SMALL_STATE(1956)] = 49735, - [SMALL_STATE(1957)] = 49788, - [SMALL_STATE(1958)] = 49841, - [SMALL_STATE(1959)] = 49890, - [SMALL_STATE(1960)] = 49943, - [SMALL_STATE(1961)] = 49996, - [SMALL_STATE(1962)] = 50049, - [SMALL_STATE(1963)] = 50102, - [SMALL_STATE(1964)] = 50155, - [SMALL_STATE(1965)] = 50204, - [SMALL_STATE(1966)] = 50253, - [SMALL_STATE(1967)] = 50306, - [SMALL_STATE(1968)] = 50358, - [SMALL_STATE(1969)] = 50412, - [SMALL_STATE(1970)] = 50464, - [SMALL_STATE(1971)] = 50512, - [SMALL_STATE(1972)] = 50560, - [SMALL_STATE(1973)] = 50608, - [SMALL_STATE(1974)] = 50656, - [SMALL_STATE(1975)] = 50708, - [SMALL_STATE(1976)] = 50758, - [SMALL_STATE(1977)] = 50812, - [SMALL_STATE(1978)] = 50868, - [SMALL_STATE(1979)] = 50920, - [SMALL_STATE(1980)] = 50970, - [SMALL_STATE(1981)] = 51022, - [SMALL_STATE(1982)] = 51078, - [SMALL_STATE(1983)] = 51144, - [SMALL_STATE(1984)] = 51208, - [SMALL_STATE(1985)] = 51266, - [SMALL_STATE(1986)] = 51320, - [SMALL_STATE(1987)] = 51396, - [SMALL_STATE(1988)] = 51474, - [SMALL_STATE(1989)] = 51554, - [SMALL_STATE(1990)] = 51622, - [SMALL_STATE(1991)] = 51676, - [SMALL_STATE(1992)] = 51738, - [SMALL_STATE(1993)] = 51808, - [SMALL_STATE(1994)] = 51880, - [SMALL_STATE(1995)] = 51954, - [SMALL_STATE(1996)] = 52008, - [SMALL_STATE(1997)] = 52074, - [SMALL_STATE(1998)] = 52138, - [SMALL_STATE(1999)] = 52202, - [SMALL_STATE(2000)] = 52264, - [SMALL_STATE(2001)] = 52322, - [SMALL_STATE(2002)] = 52378, - [SMALL_STATE(2003)] = 52432, - [SMALL_STATE(2004)] = 52484, - [SMALL_STATE(2005)] = 52560, - [SMALL_STATE(2006)] = 52634, - [SMALL_STATE(2007)] = 52712, - [SMALL_STATE(2008)] = 52788, - [SMALL_STATE(2009)] = 52868, - [SMALL_STATE(2010)] = 52946, - [SMALL_STATE(2011)] = 53014, - [SMALL_STATE(2012)] = 53080, - [SMALL_STATE(2013)] = 53142, - [SMALL_STATE(2014)] = 53202, - [SMALL_STATE(2015)] = 53272, - [SMALL_STATE(2016)] = 53340, - [SMALL_STATE(2017)] = 53412, - [SMALL_STATE(2018)] = 53482, - [SMALL_STATE(2019)] = 53556, - [SMALL_STATE(2020)] = 53628, - [SMALL_STATE(2021)] = 53694, - [SMALL_STATE(2022)] = 53758, - [SMALL_STATE(2023)] = 53816, - [SMALL_STATE(2024)] = 53870, - [SMALL_STATE(2025)] = 53946, - [SMALL_STATE(2026)] = 54024, - [SMALL_STATE(2027)] = 54104, - [SMALL_STATE(2028)] = 54172, - [SMALL_STATE(2029)] = 54234, - [SMALL_STATE(2030)] = 54304, - [SMALL_STATE(2031)] = 54376, - [SMALL_STATE(2032)] = 54450, - [SMALL_STATE(2033)] = 54514, - [SMALL_STATE(2034)] = 54576, - [SMALL_STATE(2035)] = 54632, - [SMALL_STATE(2036)] = 54684, - [SMALL_STATE(2037)] = 54758, - [SMALL_STATE(2038)] = 54834, - [SMALL_STATE(2039)] = 54912, - [SMALL_STATE(2040)] = 54978, - [SMALL_STATE(2041)] = 55038, - [SMALL_STATE(2042)] = 55106, - [SMALL_STATE(2043)] = 55176, - [SMALL_STATE(2044)] = 55248, - [SMALL_STATE(2045)] = 55314, - [SMALL_STATE(2046)] = 55378, - [SMALL_STATE(2047)] = 55442, - [SMALL_STATE(2048)] = 55504, - [SMALL_STATE(2049)] = 55562, - [SMALL_STATE(2050)] = 55618, - [SMALL_STATE(2051)] = 55672, - [SMALL_STATE(2052)] = 55724, - [SMALL_STATE(2053)] = 55800, - [SMALL_STATE(2054)] = 55874, - [SMALL_STATE(2055)] = 55952, - [SMALL_STATE(2056)] = 56028, - [SMALL_STATE(2057)] = 56108, - [SMALL_STATE(2058)] = 56186, - [SMALL_STATE(2059)] = 56254, - [SMALL_STATE(2060)] = 56320, - [SMALL_STATE(2061)] = 56382, - [SMALL_STATE(2062)] = 56442, - [SMALL_STATE(2063)] = 56512, - [SMALL_STATE(2064)] = 56580, - [SMALL_STATE(2065)] = 56652, - [SMALL_STATE(2066)] = 56722, - [SMALL_STATE(2067)] = 56796, - [SMALL_STATE(2068)] = 56868, - [SMALL_STATE(2069)] = 56932, - [SMALL_STATE(2070)] = 56994, - [SMALL_STATE(2071)] = 57050, - [SMALL_STATE(2072)] = 57102, - [SMALL_STATE(2073)] = 57176, - [SMALL_STATE(2074)] = 57252, - [SMALL_STATE(2075)] = 57330, - [SMALL_STATE(2076)] = 57396, - [SMALL_STATE(2077)] = 57456, - [SMALL_STATE(2078)] = 57524, - [SMALL_STATE(2079)] = 57594, - [SMALL_STATE(2080)] = 57666, - [SMALL_STATE(2081)] = 57714, - [SMALL_STATE(2082)] = 57766, - [SMALL_STATE(2083)] = 57814, - [SMALL_STATE(2084)] = 57862, - [SMALL_STATE(2085)] = 57914, - [SMALL_STATE(2086)] = 57968, - [SMALL_STATE(2087)] = 58020, - [SMALL_STATE(2088)] = 58074, - [SMALL_STATE(2089)] = 58120, - [SMALL_STATE(2090)] = 58168, - [SMALL_STATE(2091)] = 58216, - [SMALL_STATE(2092)] = 58266, - [SMALL_STATE(2093)] = 58318, - [SMALL_STATE(2094)] = 58366, - [SMALL_STATE(2095)] = 58416, - [SMALL_STATE(2096)] = 58466, - [SMALL_STATE(2097)] = 58518, - [SMALL_STATE(2098)] = 58570, - [SMALL_STATE(2099)] = 58620, - [SMALL_STATE(2100)] = 58674, - [SMALL_STATE(2101)] = 58726, - [SMALL_STATE(2102)] = 58780, - [SMALL_STATE(2103)] = 58830, - [SMALL_STATE(2104)] = 58884, - [SMALL_STATE(2105)] = 58938, - [SMALL_STATE(2106)] = 58992, - [SMALL_STATE(2107)] = 59046, - [SMALL_STATE(2108)] = 59100, - [SMALL_STATE(2109)] = 59154, - [SMALL_STATE(2110)] = 59202, - [SMALL_STATE(2111)] = 59256, - [SMALL_STATE(2112)] = 59303, - [SMALL_STATE(2113)] = 59350, - [SMALL_STATE(2114)] = 59397, - [SMALL_STATE(2115)] = 59446, - [SMALL_STATE(2116)] = 59495, - [SMALL_STATE(2117)] = 59544, - [SMALL_STATE(2118)] = 59593, - [SMALL_STATE(2119)] = 59644, - [SMALL_STATE(2120)] = 59693, - [SMALL_STATE(2121)] = 59744, - [SMALL_STATE(2122)] = 59793, - [SMALL_STATE(2123)] = 59842, - [SMALL_STATE(2124)] = 59921, - [SMALL_STATE(2125)] = 60000, - [SMALL_STATE(2126)] = 60049, - [SMALL_STATE(2127)] = 60098, - [SMALL_STATE(2128)] = 60145, - [SMALL_STATE(2129)] = 60224, - [SMALL_STATE(2130)] = 60303, - [SMALL_STATE(2131)] = 60382, - [SMALL_STATE(2132)] = 60461, - [SMALL_STATE(2133)] = 60508, - [SMALL_STATE(2134)] = 60555, - [SMALL_STATE(2135)] = 60600, - [SMALL_STATE(2136)] = 60646, - [SMALL_STATE(2137)] = 60692, - [SMALL_STATE(2138)] = 60750, - [SMALL_STATE(2139)] = 60802, - [SMALL_STATE(2140)] = 60850, - [SMALL_STATE(2141)] = 60920, - [SMALL_STATE(2142)] = 60992, - [SMALL_STATE(2143)] = 61066, - [SMALL_STATE(2144)] = 61128, - [SMALL_STATE(2145)] = 61184, - [SMALL_STATE(2146)] = 61248, - [SMALL_STATE(2147)] = 61314, - [SMALL_STATE(2148)] = 61382, - [SMALL_STATE(2149)] = 61428, - [SMALL_STATE(2150)] = 61476, - [SMALL_STATE(2151)] = 61522, - [SMALL_STATE(2152)] = 61570, - [SMALL_STATE(2153)] = 61616, - [SMALL_STATE(2154)] = 61662, - [SMALL_STATE(2155)] = 61708, - [SMALL_STATE(2156)] = 61754, - [SMALL_STATE(2157)] = 61800, - [SMALL_STATE(2158)] = 61892, - [SMALL_STATE(2159)] = 61938, - [SMALL_STATE(2160)] = 62030, - [SMALL_STATE(2161)] = 62076, - [SMALL_STATE(2162)] = 62124, - [SMALL_STATE(2163)] = 62170, - [SMALL_STATE(2164)] = 62216, - [SMALL_STATE(2165)] = 62262, - [SMALL_STATE(2166)] = 62308, - [SMALL_STATE(2167)] = 62354, - [SMALL_STATE(2168)] = 62400, - [SMALL_STATE(2169)] = 62446, - [SMALL_STATE(2170)] = 62506, - [SMALL_STATE(2171)] = 62564, - [SMALL_STATE(2172)] = 62610, - [SMALL_STATE(2173)] = 62662, - [SMALL_STATE(2174)] = 62708, - [SMALL_STATE(2175)] = 62754, - [SMALL_STATE(2176)] = 62802, - [SMALL_STATE(2177)] = 62848, - [SMALL_STATE(2178)] = 62918, - [SMALL_STATE(2179)] = 62964, - [SMALL_STATE(2180)] = 63010, - [SMALL_STATE(2181)] = 63056, - [SMALL_STATE(2182)] = 63102, - [SMALL_STATE(2183)] = 63148, - [SMALL_STATE(2184)] = 63194, - [SMALL_STATE(2185)] = 63266, - [SMALL_STATE(2186)] = 63340, - [SMALL_STATE(2187)] = 63402, - [SMALL_STATE(2188)] = 63458, - [SMALL_STATE(2189)] = 63522, - [SMALL_STATE(2190)] = 63588, - [SMALL_STATE(2191)] = 63656, - [SMALL_STATE(2192)] = 63702, - [SMALL_STATE(2193)] = 63750, - [SMALL_STATE(2194)] = 63796, - [SMALL_STATE(2195)] = 63842, - [SMALL_STATE(2196)] = 63890, - [SMALL_STATE(2197)] = 63936, - [SMALL_STATE(2198)] = 63982, - [SMALL_STATE(2199)] = 64028, - [SMALL_STATE(2200)] = 64076, - [SMALL_STATE(2201)] = 64124, - [SMALL_STATE(2202)] = 64172, - [SMALL_STATE(2203)] = 64264, - [SMALL_STATE(2204)] = 64310, - [SMALL_STATE(2205)] = 64356, - [SMALL_STATE(2206)] = 64402, - [SMALL_STATE(2207)] = 64448, - [SMALL_STATE(2208)] = 64494, - [SMALL_STATE(2209)] = 64540, - [SMALL_STATE(2210)] = 64586, - [SMALL_STATE(2211)] = 64632, - [SMALL_STATE(2212)] = 64678, - [SMALL_STATE(2213)] = 64738, - [SMALL_STATE(2214)] = 64811, - [SMALL_STATE(2215)] = 64884, - [SMALL_STATE(2216)] = 64957, - [SMALL_STATE(2217)] = 65030, - [SMALL_STATE(2218)] = 65081, - [SMALL_STATE(2219)] = 65154, - [SMALL_STATE(2220)] = 65199, - [SMALL_STATE(2221)] = 65272, - [SMALL_STATE(2222)] = 65322, - [SMALL_STATE(2223)] = 65368, - [SMALL_STATE(2224)] = 65418, - [SMALL_STATE(2225)] = 65504, - [SMALL_STATE(2226)] = 65554, - [SMALL_STATE(2227)] = 65600, - [SMALL_STATE(2228)] = 65650, - [SMALL_STATE(2229)] = 65693, - [SMALL_STATE(2230)] = 65736, - [SMALL_STATE(2231)] = 65779, - [SMALL_STATE(2232)] = 65828, - [SMALL_STATE(2233)] = 65877, - [SMALL_STATE(2234)] = 65920, - [SMALL_STATE(2235)] = 65969, - [SMALL_STATE(2236)] = 66018, - [SMALL_STATE(2237)] = 66067, - [SMALL_STATE(2238)] = 66118, - [SMALL_STATE(2239)] = 66167, - [SMALL_STATE(2240)] = 66210, - [SMALL_STATE(2241)] = 66257, - [SMALL_STATE(2242)] = 66302, - [SMALL_STATE(2243)] = 66345, - [SMALL_STATE(2244)] = 66388, - [SMALL_STATE(2245)] = 66431, - [SMALL_STATE(2246)] = 66476, - [SMALL_STATE(2247)] = 66556, - [SMALL_STATE(2248)] = 66600, - [SMALL_STATE(2249)] = 66642, - [SMALL_STATE(2250)] = 66720, - [SMALL_STATE(2251)] = 66800, - [SMALL_STATE(2252)] = 66842, - [SMALL_STATE(2253)] = 66888, - [SMALL_STATE(2254)] = 66929, - [SMALL_STATE(2255)] = 66974, - [SMALL_STATE(2256)] = 67019, - [SMALL_STATE(2257)] = 67063, - [SMALL_STATE(2258)] = 67145, - [SMALL_STATE(2259)] = 67185, - [SMALL_STATE(2260)] = 67267, - [SMALL_STATE(2261)] = 67311, - [SMALL_STATE(2262)] = 67355, - [SMALL_STATE(2263)] = 67399, - [SMALL_STATE(2264)] = 67444, - [SMALL_STATE(2265)] = 67520, - [SMALL_STATE(2266)] = 67596, - [SMALL_STATE(2267)] = 67672, - [SMALL_STATE(2268)] = 67748, - [SMALL_STATE(2269)] = 67824, - [SMALL_STATE(2270)] = 67900, - [SMALL_STATE(2271)] = 67976, - [SMALL_STATE(2272)] = 68052, - [SMALL_STATE(2273)] = 68128, - [SMALL_STATE(2274)] = 68174, - [SMALL_STATE(2275)] = 68250, - [SMALL_STATE(2276)] = 68326, - [SMALL_STATE(2277)] = 68402, - [SMALL_STATE(2278)] = 68478, - [SMALL_STATE(2279)] = 68554, - [SMALL_STATE(2280)] = 68630, - [SMALL_STATE(2281)] = 68706, - [SMALL_STATE(2282)] = 68782, - [SMALL_STATE(2283)] = 68858, - [SMALL_STATE(2284)] = 68910, - [SMALL_STATE(2285)] = 68986, - [SMALL_STATE(2286)] = 69062, - [SMALL_STATE(2287)] = 69138, - [SMALL_STATE(2288)] = 69214, - [SMALL_STATE(2289)] = 69290, - [SMALL_STATE(2290)] = 69366, - [SMALL_STATE(2291)] = 69410, - [SMALL_STATE(2292)] = 69452, - [SMALL_STATE(2293)] = 69498, - [SMALL_STATE(2294)] = 69544, - [SMALL_STATE(2295)] = 69620, - [SMALL_STATE(2296)] = 69696, - [SMALL_STATE(2297)] = 69735, - [SMALL_STATE(2298)] = 69784, - [SMALL_STATE(2299)] = 69835, - [SMALL_STATE(2300)] = 69884, - [SMALL_STATE(2301)] = 69933, - [SMALL_STATE(2302)] = 69981, - [SMALL_STATE(2303)] = 70051, - [SMALL_STATE(2304)] = 70121, - [SMALL_STATE(2305)] = 70169, - [SMALL_STATE(2306)] = 70239, - [SMALL_STATE(2307)] = 70285, - [SMALL_STATE(2308)] = 70331, - [SMALL_STATE(2309)] = 70377, - [SMALL_STATE(2310)] = 70423, - [SMALL_STATE(2311)] = 70493, - [SMALL_STATE(2312)] = 70563, - [SMALL_STATE(2313)] = 70633, - [SMALL_STATE(2314)] = 70687, - [SMALL_STATE(2315)] = 70735, - [SMALL_STATE(2316)] = 70805, - [SMALL_STATE(2317)] = 70875, - [SMALL_STATE(2318)] = 70945, - [SMALL_STATE(2319)] = 71015, - [SMALL_STATE(2320)] = 71085, - [SMALL_STATE(2321)] = 71155, - [SMALL_STATE(2322)] = 71195, - [SMALL_STATE(2323)] = 71235, - [SMALL_STATE(2324)] = 71280, - [SMALL_STATE(2325)] = 71317, - [SMALL_STATE(2326)] = 71368, - [SMALL_STATE(2327)] = 71421, - [SMALL_STATE(2328)] = 71460, - [SMALL_STATE(2329)] = 71499, - [SMALL_STATE(2330)] = 71550, - [SMALL_STATE(2331)] = 71601, - [SMALL_STATE(2332)] = 71648, - [SMALL_STATE(2333)] = 71693, - [SMALL_STATE(2334)] = 71738, - [SMALL_STATE(2335)] = 71783, - [SMALL_STATE(2336)] = 71820, - [SMALL_STATE(2337)] = 71854, - [SMALL_STATE(2338)] = 71892, - [SMALL_STATE(2339)] = 71938, - [SMALL_STATE(2340)] = 71972, - [SMALL_STATE(2341)] = 72022, - [SMALL_STATE(2342)] = 72070, - [SMALL_STATE(2343)] = 72104, - [SMALL_STATE(2344)] = 72152, + [SMALL_STATE(1946)] = 49229, + [SMALL_STATE(1947)] = 49282, + [SMALL_STATE(1948)] = 49335, + [SMALL_STATE(1949)] = 49388, + [SMALL_STATE(1950)] = 49437, + [SMALL_STATE(1951)] = 49490, + [SMALL_STATE(1952)] = 49543, + [SMALL_STATE(1953)] = 49592, + [SMALL_STATE(1954)] = 49645, + [SMALL_STATE(1955)] = 49694, + [SMALL_STATE(1956)] = 49749, + [SMALL_STATE(1957)] = 49802, + [SMALL_STATE(1958)] = 49853, + [SMALL_STATE(1959)] = 49902, + [SMALL_STATE(1960)] = 49955, + [SMALL_STATE(1961)] = 50008, + [SMALL_STATE(1962)] = 50061, + [SMALL_STATE(1963)] = 50110, + [SMALL_STATE(1964)] = 50163, + [SMALL_STATE(1965)] = 50212, + [SMALL_STATE(1966)] = 50263, + [SMALL_STATE(1967)] = 50318, + [SMALL_STATE(1968)] = 50370, + [SMALL_STATE(1969)] = 50420, + [SMALL_STATE(1970)] = 50468, + [SMALL_STATE(1971)] = 50532, + [SMALL_STATE(1972)] = 50582, + [SMALL_STATE(1973)] = 50636, + [SMALL_STATE(1974)] = 50686, + [SMALL_STATE(1975)] = 50748, + [SMALL_STATE(1976)] = 50804, + [SMALL_STATE(1977)] = 50884, + [SMALL_STATE(1978)] = 50938, + [SMALL_STATE(1979)] = 51012, + [SMALL_STATE(1980)] = 51066, + [SMALL_STATE(1981)] = 51122, + [SMALL_STATE(1982)] = 51198, + [SMALL_STATE(1983)] = 51276, + [SMALL_STATE(1984)] = 51326, + [SMALL_STATE(1985)] = 51392, + [SMALL_STATE(1986)] = 51444, + [SMALL_STATE(1987)] = 51504, + [SMALL_STATE(1988)] = 51572, + [SMALL_STATE(1989)] = 51642, + [SMALL_STATE(1990)] = 51696, + [SMALL_STATE(1991)] = 51746, + [SMALL_STATE(1992)] = 51818, + [SMALL_STATE(1993)] = 51884, + [SMALL_STATE(1994)] = 51948, + [SMALL_STATE(1995)] = 52000, + [SMALL_STATE(1996)] = 52052, + [SMALL_STATE(1997)] = 52104, + [SMALL_STATE(1998)] = 52168, + [SMALL_STATE(1999)] = 52230, + [SMALL_STATE(2000)] = 52288, + [SMALL_STATE(2001)] = 52344, + [SMALL_STATE(2002)] = 52394, + [SMALL_STATE(2003)] = 52448, + [SMALL_STATE(2004)] = 52500, + [SMALL_STATE(2005)] = 52554, + [SMALL_STATE(2006)] = 52608, + [SMALL_STATE(2007)] = 52660, + [SMALL_STATE(2008)] = 52714, + [SMALL_STATE(2009)] = 52790, + [SMALL_STATE(2010)] = 52864, + [SMALL_STATE(2011)] = 52930, + [SMALL_STATE(2012)] = 53008, + [SMALL_STATE(2013)] = 53072, + [SMALL_STATE(2014)] = 53148, + [SMALL_STATE(2015)] = 53228, + [SMALL_STATE(2016)] = 53286, + [SMALL_STATE(2017)] = 53340, + [SMALL_STATE(2018)] = 53394, + [SMALL_STATE(2019)] = 53472, + [SMALL_STATE(2020)] = 53540, + [SMALL_STATE(2021)] = 53606, + [SMALL_STATE(2022)] = 53668, + [SMALL_STATE(2023)] = 53744, + [SMALL_STATE(2024)] = 53804, + [SMALL_STATE(2025)] = 53852, + [SMALL_STATE(2026)] = 53922, + [SMALL_STATE(2027)] = 53990, + [SMALL_STATE(2028)] = 54042, + [SMALL_STATE(2029)] = 54120, + [SMALL_STATE(2030)] = 54200, + [SMALL_STATE(2031)] = 54272, + [SMALL_STATE(2032)] = 54350, + [SMALL_STATE(2033)] = 54420, + [SMALL_STATE(2034)] = 54482, + [SMALL_STATE(2035)] = 54556, + [SMALL_STATE(2036)] = 54626, + [SMALL_STATE(2037)] = 54698, + [SMALL_STATE(2038)] = 54770, + [SMALL_STATE(2039)] = 54846, + [SMALL_STATE(2040)] = 54920, + [SMALL_STATE(2041)] = 54968, + [SMALL_STATE(2042)] = 55016, + [SMALL_STATE(2043)] = 55084, + [SMALL_STATE(2044)] = 55136, + [SMALL_STATE(2045)] = 55214, + [SMALL_STATE(2046)] = 55268, + [SMALL_STATE(2047)] = 55340, + [SMALL_STATE(2048)] = 55420, + [SMALL_STATE(2049)] = 55468, + [SMALL_STATE(2050)] = 55522, + [SMALL_STATE(2051)] = 55592, + [SMALL_STATE(2052)] = 55640, + [SMALL_STATE(2053)] = 55688, + [SMALL_STATE(2054)] = 55736, + [SMALL_STATE(2055)] = 55790, + [SMALL_STATE(2056)] = 55858, + [SMALL_STATE(2057)] = 55932, + [SMALL_STATE(2058)] = 56004, + [SMALL_STATE(2059)] = 56056, + [SMALL_STATE(2060)] = 56110, + [SMALL_STATE(2061)] = 56174, + [SMALL_STATE(2062)] = 56226, + [SMALL_STATE(2063)] = 56288, + [SMALL_STATE(2064)] = 56344, + [SMALL_STATE(2065)] = 56396, + [SMALL_STATE(2066)] = 56450, + [SMALL_STATE(2067)] = 56496, + [SMALL_STATE(2068)] = 56570, + [SMALL_STATE(2069)] = 56646, + [SMALL_STATE(2070)] = 56724, + [SMALL_STATE(2071)] = 56772, + [SMALL_STATE(2072)] = 56838, + [SMALL_STATE(2073)] = 56898, + [SMALL_STATE(2074)] = 56966, + [SMALL_STATE(2075)] = 57036, + [SMALL_STATE(2076)] = 57108, + [SMALL_STATE(2077)] = 57170, + [SMALL_STATE(2078)] = 57238, + [SMALL_STATE(2079)] = 57294, + [SMALL_STATE(2080)] = 57364, + [SMALL_STATE(2081)] = 57430, + [SMALL_STATE(2082)] = 57502, + [SMALL_STATE(2083)] = 57556, + [SMALL_STATE(2084)] = 57604, + [SMALL_STATE(2085)] = 57678, + [SMALL_STATE(2086)] = 57732, + [SMALL_STATE(2087)] = 57798, + [SMALL_STATE(2088)] = 57850, + [SMALL_STATE(2089)] = 57900, + [SMALL_STATE(2090)] = 57952, + [SMALL_STATE(2091)] = 58018, + [SMALL_STATE(2092)] = 58082, + [SMALL_STATE(2093)] = 58146, + [SMALL_STATE(2094)] = 58210, + [SMALL_STATE(2095)] = 58272, + [SMALL_STATE(2096)] = 58330, + [SMALL_STATE(2097)] = 58382, + [SMALL_STATE(2098)] = 58442, + [SMALL_STATE(2099)] = 58504, + [SMALL_STATE(2100)] = 58562, + [SMALL_STATE(2101)] = 58618, + [SMALL_STATE(2102)] = 58672, + [SMALL_STATE(2103)] = 58724, + [SMALL_STATE(2104)] = 58776, + [SMALL_STATE(2105)] = 58852, + [SMALL_STATE(2106)] = 58926, + [SMALL_STATE(2107)] = 59004, + [SMALL_STATE(2108)] = 59058, + [SMALL_STATE(2109)] = 59128, + [SMALL_STATE(2110)] = 59204, + [SMALL_STATE(2111)] = 59252, + [SMALL_STATE(2112)] = 59320, + [SMALL_STATE(2113)] = 59369, + [SMALL_STATE(2114)] = 59448, + [SMALL_STATE(2115)] = 59497, + [SMALL_STATE(2116)] = 59576, + [SMALL_STATE(2117)] = 59625, + [SMALL_STATE(2118)] = 59674, + [SMALL_STATE(2119)] = 59725, + [SMALL_STATE(2120)] = 59774, + [SMALL_STATE(2121)] = 59821, + [SMALL_STATE(2122)] = 59868, + [SMALL_STATE(2123)] = 59917, + [SMALL_STATE(2124)] = 59964, + [SMALL_STATE(2125)] = 60043, + [SMALL_STATE(2126)] = 60090, + [SMALL_STATE(2127)] = 60169, + [SMALL_STATE(2128)] = 60218, + [SMALL_STATE(2129)] = 60265, + [SMALL_STATE(2130)] = 60316, + [SMALL_STATE(2131)] = 60395, + [SMALL_STATE(2132)] = 60474, + [SMALL_STATE(2133)] = 60523, + [SMALL_STATE(2134)] = 60570, + [SMALL_STATE(2135)] = 60615, + [SMALL_STATE(2136)] = 60664, + [SMALL_STATE(2137)] = 60710, + [SMALL_STATE(2138)] = 60758, + [SMALL_STATE(2139)] = 60804, + [SMALL_STATE(2140)] = 60868, + [SMALL_STATE(2141)] = 60914, + [SMALL_STATE(2142)] = 60960, + [SMALL_STATE(2143)] = 61026, + [SMALL_STATE(2144)] = 61084, + [SMALL_STATE(2145)] = 61130, + [SMALL_STATE(2146)] = 61198, + [SMALL_STATE(2147)] = 61250, + [SMALL_STATE(2148)] = 61298, + [SMALL_STATE(2149)] = 61344, + [SMALL_STATE(2150)] = 61390, + [SMALL_STATE(2151)] = 61438, + [SMALL_STATE(2152)] = 61508, + [SMALL_STATE(2153)] = 61554, + [SMALL_STATE(2154)] = 61616, + [SMALL_STATE(2155)] = 61664, + [SMALL_STATE(2156)] = 61756, + [SMALL_STATE(2157)] = 61804, + [SMALL_STATE(2158)] = 61850, + [SMALL_STATE(2159)] = 61896, + [SMALL_STATE(2160)] = 61944, + [SMALL_STATE(2161)] = 62016, + [SMALL_STATE(2162)] = 62062, + [SMALL_STATE(2163)] = 62136, + [SMALL_STATE(2164)] = 62182, + [SMALL_STATE(2165)] = 62256, + [SMALL_STATE(2166)] = 62318, + [SMALL_STATE(2167)] = 62364, + [SMALL_STATE(2168)] = 62410, + [SMALL_STATE(2169)] = 62456, + [SMALL_STATE(2170)] = 62502, + [SMALL_STATE(2171)] = 62550, + [SMALL_STATE(2172)] = 62596, + [SMALL_STATE(2173)] = 62642, + [SMALL_STATE(2174)] = 62688, + [SMALL_STATE(2175)] = 62734, + [SMALL_STATE(2176)] = 62780, + [SMALL_STATE(2177)] = 62852, + [SMALL_STATE(2178)] = 62944, + [SMALL_STATE(2179)] = 62990, + [SMALL_STATE(2180)] = 63046, + [SMALL_STATE(2181)] = 63092, + [SMALL_STATE(2182)] = 63138, + [SMALL_STATE(2183)] = 63184, + [SMALL_STATE(2184)] = 63242, + [SMALL_STATE(2185)] = 63288, + [SMALL_STATE(2186)] = 63352, + [SMALL_STATE(2187)] = 63404, + [SMALL_STATE(2188)] = 63450, + [SMALL_STATE(2189)] = 63496, + [SMALL_STATE(2190)] = 63562, + [SMALL_STATE(2191)] = 63608, + [SMALL_STATE(2192)] = 63656, + [SMALL_STATE(2193)] = 63724, + [SMALL_STATE(2194)] = 63770, + [SMALL_STATE(2195)] = 63816, + [SMALL_STATE(2196)] = 63908, + [SMALL_STATE(2197)] = 63954, + [SMALL_STATE(2198)] = 64010, + [SMALL_STATE(2199)] = 64056, + [SMALL_STATE(2200)] = 64102, + [SMALL_STATE(2201)] = 64148, + [SMALL_STATE(2202)] = 64194, + [SMALL_STATE(2203)] = 64240, + [SMALL_STATE(2204)] = 64286, + [SMALL_STATE(2205)] = 64332, + [SMALL_STATE(2206)] = 64392, + [SMALL_STATE(2207)] = 64440, + [SMALL_STATE(2208)] = 64486, + [SMALL_STATE(2209)] = 64532, + [SMALL_STATE(2210)] = 64602, + [SMALL_STATE(2211)] = 64648, + [SMALL_STATE(2212)] = 64694, + [SMALL_STATE(2213)] = 64742, + [SMALL_STATE(2214)] = 64802, + [SMALL_STATE(2215)] = 64853, + [SMALL_STATE(2216)] = 64926, + [SMALL_STATE(2217)] = 64999, + [SMALL_STATE(2218)] = 65072, + [SMALL_STATE(2219)] = 65145, + [SMALL_STATE(2220)] = 65218, + [SMALL_STATE(2221)] = 65263, + [SMALL_STATE(2222)] = 65336, + [SMALL_STATE(2223)] = 65382, + [SMALL_STATE(2224)] = 65428, + [SMALL_STATE(2225)] = 65514, + [SMALL_STATE(2226)] = 65564, + [SMALL_STATE(2227)] = 65614, + [SMALL_STATE(2228)] = 65664, + [SMALL_STATE(2229)] = 65714, + [SMALL_STATE(2230)] = 65759, + [SMALL_STATE(2231)] = 65802, + [SMALL_STATE(2232)] = 65845, + [SMALL_STATE(2233)] = 65888, + [SMALL_STATE(2234)] = 65931, + [SMALL_STATE(2235)] = 65974, + [SMALL_STATE(2236)] = 66023, + [SMALL_STATE(2237)] = 66072, + [SMALL_STATE(2238)] = 66121, + [SMALL_STATE(2239)] = 66172, + [SMALL_STATE(2240)] = 66219, + [SMALL_STATE(2241)] = 66264, + [SMALL_STATE(2242)] = 66313, + [SMALL_STATE(2243)] = 66362, + [SMALL_STATE(2244)] = 66405, + [SMALL_STATE(2245)] = 66448, + [SMALL_STATE(2246)] = 66497, + [SMALL_STATE(2247)] = 66540, + [SMALL_STATE(2248)] = 66620, + [SMALL_STATE(2249)] = 66700, + [SMALL_STATE(2250)] = 66778, + [SMALL_STATE(2251)] = 66824, + [SMALL_STATE(2252)] = 66866, + [SMALL_STATE(2253)] = 66910, + [SMALL_STATE(2254)] = 66952, + [SMALL_STATE(2255)] = 66993, + [SMALL_STATE(2256)] = 67038, + [SMALL_STATE(2257)] = 67083, + [SMALL_STATE(2258)] = 67127, + [SMALL_STATE(2259)] = 67209, + [SMALL_STATE(2260)] = 67291, + [SMALL_STATE(2261)] = 67335, + [SMALL_STATE(2262)] = 67379, + [SMALL_STATE(2263)] = 67419, + [SMALL_STATE(2264)] = 67463, + [SMALL_STATE(2265)] = 67508, + [SMALL_STATE(2266)] = 67584, + [SMALL_STATE(2267)] = 67636, + [SMALL_STATE(2268)] = 67712, + [SMALL_STATE(2269)] = 67788, + [SMALL_STATE(2270)] = 67864, + [SMALL_STATE(2271)] = 67940, + [SMALL_STATE(2272)] = 68016, + [SMALL_STATE(2273)] = 68092, + [SMALL_STATE(2274)] = 68168, + [SMALL_STATE(2275)] = 68244, + [SMALL_STATE(2276)] = 68320, + [SMALL_STATE(2277)] = 68396, + [SMALL_STATE(2278)] = 68472, + [SMALL_STATE(2279)] = 68548, + [SMALL_STATE(2280)] = 68594, + [SMALL_STATE(2281)] = 68670, + [SMALL_STATE(2282)] = 68746, + [SMALL_STATE(2283)] = 68822, + [SMALL_STATE(2284)] = 68898, + [SMALL_STATE(2285)] = 68974, + [SMALL_STATE(2286)] = 69020, + [SMALL_STATE(2287)] = 69096, + [SMALL_STATE(2288)] = 69172, + [SMALL_STATE(2289)] = 69248, + [SMALL_STATE(2290)] = 69324, + [SMALL_STATE(2291)] = 69400, + [SMALL_STATE(2292)] = 69476, + [SMALL_STATE(2293)] = 69552, + [SMALL_STATE(2294)] = 69596, + [SMALL_STATE(2295)] = 69638, + [SMALL_STATE(2296)] = 69684, + [SMALL_STATE(2297)] = 69760, + [SMALL_STATE(2298)] = 69811, + [SMALL_STATE(2299)] = 69860, + [SMALL_STATE(2300)] = 69909, + [SMALL_STATE(2301)] = 69948, + [SMALL_STATE(2302)] = 69997, + [SMALL_STATE(2303)] = 70067, + [SMALL_STATE(2304)] = 70115, + [SMALL_STATE(2305)] = 70185, + [SMALL_STATE(2306)] = 70233, + [SMALL_STATE(2307)] = 70303, + [SMALL_STATE(2308)] = 70373, + [SMALL_STATE(2309)] = 70443, + [SMALL_STATE(2310)] = 70513, + [SMALL_STATE(2311)] = 70583, + [SMALL_STATE(2312)] = 70653, + [SMALL_STATE(2313)] = 70723, + [SMALL_STATE(2314)] = 70769, + [SMALL_STATE(2315)] = 70815, + [SMALL_STATE(2316)] = 70861, + [SMALL_STATE(2317)] = 70915, + [SMALL_STATE(2318)] = 70963, + [SMALL_STATE(2319)] = 71033, + [SMALL_STATE(2320)] = 71073, + [SMALL_STATE(2321)] = 71113, + [SMALL_STATE(2322)] = 71183, + [SMALL_STATE(2323)] = 71253, + [SMALL_STATE(2324)] = 71299, + [SMALL_STATE(2325)] = 71350, + [SMALL_STATE(2326)] = 71387, + [SMALL_STATE(2327)] = 71432, + [SMALL_STATE(2328)] = 71477, + [SMALL_STATE(2329)] = 71522, + [SMALL_STATE(2330)] = 71567, + [SMALL_STATE(2331)] = 71604, + [SMALL_STATE(2332)] = 71655, + [SMALL_STATE(2333)] = 71694, + [SMALL_STATE(2334)] = 71733, + [SMALL_STATE(2335)] = 71786, + [SMALL_STATE(2336)] = 71833, + [SMALL_STATE(2337)] = 71884, + [SMALL_STATE(2338)] = 71918, + [SMALL_STATE(2339)] = 71952, + [SMALL_STATE(2340)] = 72002, + [SMALL_STATE(2341)] = 72038, + [SMALL_STATE(2342)] = 72076, + [SMALL_STATE(2343)] = 72112, + [SMALL_STATE(2344)] = 72150, [SMALL_STATE(2345)] = 72200, - [SMALL_STATE(2346)] = 72248, - [SMALL_STATE(2347)] = 72298, + [SMALL_STATE(2346)] = 72246, + [SMALL_STATE(2347)] = 72296, [SMALL_STATE(2348)] = 72334, - [SMALL_STATE(2349)] = 72372, - [SMALL_STATE(2350)] = 72412, - [SMALL_STATE(2351)] = 72450, - [SMALL_STATE(2352)] = 72490, - [SMALL_STATE(2353)] = 72528, - [SMALL_STATE(2354)] = 72578, - [SMALL_STATE(2355)] = 72614, - [SMALL_STATE(2356)] = 72647, - [SMALL_STATE(2357)] = 72694, - [SMALL_STATE(2358)] = 72731, - [SMALL_STATE(2359)] = 72778, - [SMALL_STATE(2360)] = 72817, - [SMALL_STATE(2361)] = 72852, - [SMALL_STATE(2362)] = 72887, - [SMALL_STATE(2363)] = 72926, - [SMALL_STATE(2364)] = 72973, - [SMALL_STATE(2365)] = 73014, - [SMALL_STATE(2366)] = 73051, - [SMALL_STATE(2367)] = 73086, - [SMALL_STATE(2368)] = 73127, - [SMALL_STATE(2369)] = 73164, - [SMALL_STATE(2370)] = 73201, - [SMALL_STATE(2371)] = 73240, - [SMALL_STATE(2372)] = 73275, - [SMALL_STATE(2373)] = 73314, - [SMALL_STATE(2374)] = 73353, - [SMALL_STATE(2375)] = 73392, - [SMALL_STATE(2376)] = 73425, - [SMALL_STATE(2377)] = 73464, - [SMALL_STATE(2378)] = 73511, - [SMALL_STATE(2379)] = 73562, - [SMALL_STATE(2380)] = 73595, - [SMALL_STATE(2381)] = 73630, - [SMALL_STATE(2382)] = 73677, - [SMALL_STATE(2383)] = 73718, - [SMALL_STATE(2384)] = 73766, - [SMALL_STATE(2385)] = 73802, - [SMALL_STATE(2386)] = 73834, - [SMALL_STATE(2387)] = 73868, - [SMALL_STATE(2388)] = 73906, - [SMALL_STATE(2389)] = 73946, - [SMALL_STATE(2390)] = 73984, - [SMALL_STATE(2391)] = 74016, - [SMALL_STATE(2392)] = 74048, - [SMALL_STATE(2393)] = 74096, - [SMALL_STATE(2394)] = 74130, - [SMALL_STATE(2395)] = 74170, - [SMALL_STATE(2396)] = 74206, - [SMALL_STATE(2397)] = 74242, - [SMALL_STATE(2398)] = 74288, - [SMALL_STATE(2399)] = 74320, - [SMALL_STATE(2400)] = 74354, - [SMALL_STATE(2401)] = 74386, - [SMALL_STATE(2402)] = 74418, - [SMALL_STATE(2403)] = 74454, - [SMALL_STATE(2404)] = 74486, - [SMALL_STATE(2405)] = 74524, - [SMALL_STATE(2406)] = 74558, - [SMALL_STATE(2407)] = 74596, - [SMALL_STATE(2408)] = 74632, - [SMALL_STATE(2409)] = 74664, - [SMALL_STATE(2410)] = 74702, - [SMALL_STATE(2411)] = 74734, - [SMALL_STATE(2412)] = 74766, - [SMALL_STATE(2413)] = 74806, - [SMALL_STATE(2414)] = 74844, - [SMALL_STATE(2415)] = 74882, - [SMALL_STATE(2416)] = 74920, - [SMALL_STATE(2417)] = 74958, - [SMALL_STATE(2418)] = 74996, - [SMALL_STATE(2419)] = 75044, + [SMALL_STATE(2349)] = 72382, + [SMALL_STATE(2350)] = 72430, + [SMALL_STATE(2351)] = 72478, + [SMALL_STATE(2352)] = 72518, + [SMALL_STATE(2353)] = 72566, + [SMALL_STATE(2354)] = 72604, + [SMALL_STATE(2355)] = 72644, + [SMALL_STATE(2356)] = 72678, + [SMALL_STATE(2357)] = 72725, + [SMALL_STATE(2358)] = 72776, + [SMALL_STATE(2359)] = 72811, + [SMALL_STATE(2360)] = 72844, + [SMALL_STATE(2361)] = 72883, + [SMALL_STATE(2362)] = 72922, + [SMALL_STATE(2363)] = 72957, + [SMALL_STATE(2364)] = 72994, + [SMALL_STATE(2365)] = 73029, + [SMALL_STATE(2366)] = 73066, + [SMALL_STATE(2367)] = 73113, + [SMALL_STATE(2368)] = 73160, + [SMALL_STATE(2369)] = 73201, + [SMALL_STATE(2370)] = 73236, + [SMALL_STATE(2371)] = 73283, + [SMALL_STATE(2372)] = 73320, + [SMALL_STATE(2373)] = 73359, + [SMALL_STATE(2374)] = 73392, + [SMALL_STATE(2375)] = 73431, + [SMALL_STATE(2376)] = 73472, + [SMALL_STATE(2377)] = 73511, + [SMALL_STATE(2378)] = 73550, + [SMALL_STATE(2379)] = 73589, + [SMALL_STATE(2380)] = 73630, + [SMALL_STATE(2381)] = 73667, + [SMALL_STATE(2382)] = 73714, + [SMALL_STATE(2383)] = 73747, + [SMALL_STATE(2384)] = 73782, + [SMALL_STATE(2385)] = 73820, + [SMALL_STATE(2386)] = 73854, + [SMALL_STATE(2387)] = 73892, + [SMALL_STATE(2388)] = 73928, + [SMALL_STATE(2389)] = 73960, + [SMALL_STATE(2390)] = 73992, + [SMALL_STATE(2391)] = 74024, + [SMALL_STATE(2392)] = 74056, + [SMALL_STATE(2393)] = 74088, + [SMALL_STATE(2394)] = 74120, + [SMALL_STATE(2395)] = 74156, + [SMALL_STATE(2396)] = 74196, + [SMALL_STATE(2397)] = 74228, + [SMALL_STATE(2398)] = 74260, + [SMALL_STATE(2399)] = 74292, + [SMALL_STATE(2400)] = 74326, + [SMALL_STATE(2401)] = 74372, + [SMALL_STATE(2402)] = 74410, + [SMALL_STATE(2403)] = 74446, + [SMALL_STATE(2404)] = 74480, + [SMALL_STATE(2405)] = 74528, + [SMALL_STATE(2406)] = 74566, + [SMALL_STATE(2407)] = 74602, + [SMALL_STATE(2408)] = 74638, + [SMALL_STATE(2409)] = 74670, + [SMALL_STATE(2410)] = 74706, + [SMALL_STATE(2411)] = 74738, + [SMALL_STATE(2412)] = 74776, + [SMALL_STATE(2413)] = 74816, + [SMALL_STATE(2414)] = 74848, + [SMALL_STATE(2415)] = 74880, + [SMALL_STATE(2416)] = 74914, + [SMALL_STATE(2417)] = 74954, + [SMALL_STATE(2418)] = 75002, + [SMALL_STATE(2419)] = 75040, [SMALL_STATE(2420)] = 75078, - [SMALL_STATE(2421)] = 75110, - [SMALL_STATE(2422)] = 75142, - [SMALL_STATE(2423)] = 75174, - [SMALL_STATE(2424)] = 75210, - [SMALL_STATE(2425)] = 75241, - [SMALL_STATE(2426)] = 75280, - [SMALL_STATE(2427)] = 75311, - [SMALL_STATE(2428)] = 75356, - [SMALL_STATE(2429)] = 75401, - [SMALL_STATE(2430)] = 75446, - [SMALL_STATE(2431)] = 75483, - [SMALL_STATE(2432)] = 75518, - [SMALL_STATE(2433)] = 75557, - [SMALL_STATE(2434)] = 75594, - [SMALL_STATE(2435)] = 75629, - [SMALL_STATE(2436)] = 75664, - [SMALL_STATE(2437)] = 75701, - [SMALL_STATE(2438)] = 75746, - [SMALL_STATE(2439)] = 75777, - [SMALL_STATE(2440)] = 75808, - [SMALL_STATE(2441)] = 75839, - [SMALL_STATE(2442)] = 75870, - [SMALL_STATE(2443)] = 75903, - [SMALL_STATE(2444)] = 75938, - [SMALL_STATE(2445)] = 75983, - [SMALL_STATE(2446)] = 76016, - [SMALL_STATE(2447)] = 76047, - [SMALL_STATE(2448)] = 76082, - [SMALL_STATE(2449)] = 76123, - [SMALL_STATE(2450)] = 76156, - [SMALL_STATE(2451)] = 76187, - [SMALL_STATE(2452)] = 76218, - [SMALL_STATE(2453)] = 76251, - [SMALL_STATE(2454)] = 76282, - [SMALL_STATE(2455)] = 76313, - [SMALL_STATE(2456)] = 76350, - [SMALL_STATE(2457)] = 76389, - [SMALL_STATE(2458)] = 76420, - [SMALL_STATE(2459)] = 76451, - [SMALL_STATE(2460)] = 76484, - [SMALL_STATE(2461)] = 76517, - [SMALL_STATE(2462)] = 76550, - [SMALL_STATE(2463)] = 76580, - [SMALL_STATE(2464)] = 76610, - [SMALL_STATE(2465)] = 76662, - [SMALL_STATE(2466)] = 76692, - [SMALL_STATE(2467)] = 76728, - [SMALL_STATE(2468)] = 76778, - [SMALL_STATE(2469)] = 76808, - [SMALL_STATE(2470)] = 76848, - [SMALL_STATE(2471)] = 76884, - [SMALL_STATE(2472)] = 76916, - [SMALL_STATE(2473)] = 76946, - [SMALL_STATE(2474)] = 76976, - [SMALL_STATE(2475)] = 77012, - [SMALL_STATE(2476)] = 77044, - [SMALL_STATE(2477)] = 77074, - [SMALL_STATE(2478)] = 77110, - [SMALL_STATE(2479)] = 77142, - [SMALL_STATE(2480)] = 77178, - [SMALL_STATE(2481)] = 77212, - [SMALL_STATE(2482)] = 77244, - [SMALL_STATE(2483)] = 77278, - [SMALL_STATE(2484)] = 77308, - [SMALL_STATE(2485)] = 77360, - [SMALL_STATE(2486)] = 77412, - [SMALL_STATE(2487)] = 77442, - [SMALL_STATE(2488)] = 77472, - [SMALL_STATE(2489)] = 77506, - [SMALL_STATE(2490)] = 77542, - [SMALL_STATE(2491)] = 77572, - [SMALL_STATE(2492)] = 77610, - [SMALL_STATE(2493)] = 77644, - [SMALL_STATE(2494)] = 77676, - [SMALL_STATE(2495)] = 77714, - [SMALL_STATE(2496)] = 77766, - [SMALL_STATE(2497)] = 77796, - [SMALL_STATE(2498)] = 77828, - [SMALL_STATE(2499)] = 77866, - [SMALL_STATE(2500)] = 77898, - [SMALL_STATE(2501)] = 77930, - [SMALL_STATE(2502)] = 77962, - [SMALL_STATE(2503)] = 77994, - [SMALL_STATE(2504)] = 78026, - [SMALL_STATE(2505)] = 78060, - [SMALL_STATE(2506)] = 78098, - [SMALL_STATE(2507)] = 78130, - [SMALL_STATE(2508)] = 78160, - [SMALL_STATE(2509)] = 78190, - [SMALL_STATE(2510)] = 78228, - [SMALL_STATE(2511)] = 78260, - [SMALL_STATE(2512)] = 78290, - [SMALL_STATE(2513)] = 78322, - [SMALL_STATE(2514)] = 78358, - [SMALL_STATE(2515)] = 78388, - [SMALL_STATE(2516)] = 78419, - [SMALL_STATE(2517)] = 78456, - [SMALL_STATE(2518)] = 78485, - [SMALL_STATE(2519)] = 78516, - [SMALL_STATE(2520)] = 78553, - [SMALL_STATE(2521)] = 78584, - [SMALL_STATE(2522)] = 78621, - [SMALL_STATE(2523)] = 78650, - [SMALL_STATE(2524)] = 78681, - [SMALL_STATE(2525)] = 78712, - [SMALL_STATE(2526)] = 78743, - [SMALL_STATE(2527)] = 78772, - [SMALL_STATE(2528)] = 78803, - [SMALL_STATE(2529)] = 78834, - [SMALL_STATE(2530)] = 78863, - [SMALL_STATE(2531)] = 78892, - [SMALL_STATE(2532)] = 78921, - [SMALL_STATE(2533)] = 78950, - [SMALL_STATE(2534)] = 78981, - [SMALL_STATE(2535)] = 79012, - [SMALL_STATE(2536)] = 79043, - [SMALL_STATE(2537)] = 79072, - [SMALL_STATE(2538)] = 79105, - [SMALL_STATE(2539)] = 79142, - [SMALL_STATE(2540)] = 79179, - [SMALL_STATE(2541)] = 79208, - [SMALL_STATE(2542)] = 79237, - [SMALL_STATE(2543)] = 79266, - [SMALL_STATE(2544)] = 79299, - [SMALL_STATE(2545)] = 79328, - [SMALL_STATE(2546)] = 79365, - [SMALL_STATE(2547)] = 79396, - [SMALL_STATE(2548)] = 79427, - [SMALL_STATE(2549)] = 79456, - [SMALL_STATE(2550)] = 79493, - [SMALL_STATE(2551)] = 79526, - [SMALL_STATE(2552)] = 79557, - [SMALL_STATE(2553)] = 79586, - [SMALL_STATE(2554)] = 79623, - [SMALL_STATE(2555)] = 79660, - [SMALL_STATE(2556)] = 79691, - [SMALL_STATE(2557)] = 79726, - [SMALL_STATE(2558)] = 79763, - [SMALL_STATE(2559)] = 79792, - [SMALL_STATE(2560)] = 79821, - [SMALL_STATE(2561)] = 79858, - [SMALL_STATE(2562)] = 79887, - [SMALL_STATE(2563)] = 79918, - [SMALL_STATE(2564)] = 79951, - [SMALL_STATE(2565)] = 79982, - [SMALL_STATE(2566)] = 80019, - [SMALL_STATE(2567)] = 80048, - [SMALL_STATE(2568)] = 80079, - [SMALL_STATE(2569)] = 80108, - [SMALL_STATE(2570)] = 80137, - [SMALL_STATE(2571)] = 80166, - [SMALL_STATE(2572)] = 80195, - [SMALL_STATE(2573)] = 80226, - [SMALL_STATE(2574)] = 80263, - [SMALL_STATE(2575)] = 80294, - [SMALL_STATE(2576)] = 80327, - [SMALL_STATE(2577)] = 80358, - [SMALL_STATE(2578)] = 80389, - [SMALL_STATE(2579)] = 80420, - [SMALL_STATE(2580)] = 80451, - [SMALL_STATE(2581)] = 80482, - [SMALL_STATE(2582)] = 80513, - [SMALL_STATE(2583)] = 80545, - [SMALL_STATE(2584)] = 80573, - [SMALL_STATE(2585)] = 80617, - [SMALL_STATE(2586)] = 80653, - [SMALL_STATE(2587)] = 80683, - [SMALL_STATE(2588)] = 80713, - [SMALL_STATE(2589)] = 80741, - [SMALL_STATE(2590)] = 80769, - [SMALL_STATE(2591)] = 80807, - [SMALL_STATE(2592)] = 80835, - [SMALL_STATE(2593)] = 80879, - [SMALL_STATE(2594)] = 80909, - [SMALL_STATE(2595)] = 80945, - [SMALL_STATE(2596)] = 80973, - [SMALL_STATE(2597)] = 81001, - [SMALL_STATE(2598)] = 81035, - [SMALL_STATE(2599)] = 81067, - [SMALL_STATE(2600)] = 81103, - [SMALL_STATE(2601)] = 81133, - [SMALL_STATE(2602)] = 81161, - [SMALL_STATE(2603)] = 81197, - [SMALL_STATE(2604)] = 81227, - [SMALL_STATE(2605)] = 81259, - [SMALL_STATE(2606)] = 81291, - [SMALL_STATE(2607)] = 81323, - [SMALL_STATE(2608)] = 81355, - [SMALL_STATE(2609)] = 81387, - [SMALL_STATE(2610)] = 81415, - [SMALL_STATE(2611)] = 81443, - [SMALL_STATE(2612)] = 81471, - [SMALL_STATE(2613)] = 81507, - [SMALL_STATE(2614)] = 81537, - [SMALL_STATE(2615)] = 81567, - [SMALL_STATE(2616)] = 81595, - [SMALL_STATE(2617)] = 81623, - [SMALL_STATE(2618)] = 81659, - [SMALL_STATE(2619)] = 81689, - [SMALL_STATE(2620)] = 81719, - [SMALL_STATE(2621)] = 81747, - [SMALL_STATE(2622)] = 81791, - [SMALL_STATE(2623)] = 81819, - [SMALL_STATE(2624)] = 81863, - [SMALL_STATE(2625)] = 81891, - [SMALL_STATE(2626)] = 81927, - [SMALL_STATE(2627)] = 81957, - [SMALL_STATE(2628)] = 81985, - [SMALL_STATE(2629)] = 82021, - [SMALL_STATE(2630)] = 82053, - [SMALL_STATE(2631)] = 82089, - [SMALL_STATE(2632)] = 82133, - [SMALL_STATE(2633)] = 82163, - [SMALL_STATE(2634)] = 82199, - [SMALL_STATE(2635)] = 82233, - [SMALL_STATE(2636)] = 82269, - [SMALL_STATE(2637)] = 82305, - [SMALL_STATE(2638)] = 82341, - [SMALL_STATE(2639)] = 82371, - [SMALL_STATE(2640)] = 82401, - [SMALL_STATE(2641)] = 82429, - [SMALL_STATE(2642)] = 82459, - [SMALL_STATE(2643)] = 82487, - [SMALL_STATE(2644)] = 82514, - [SMALL_STATE(2645)] = 82541, - [SMALL_STATE(2646)] = 82572, - [SMALL_STATE(2647)] = 82605, - [SMALL_STATE(2648)] = 82636, - [SMALL_STATE(2649)] = 82667, - [SMALL_STATE(2650)] = 82694, - [SMALL_STATE(2651)] = 82721, - [SMALL_STATE(2652)] = 82752, - [SMALL_STATE(2653)] = 82779, - [SMALL_STATE(2654)] = 82806, - [SMALL_STATE(2655)] = 82837, - [SMALL_STATE(2656)] = 82868, - [SMALL_STATE(2657)] = 82897, - [SMALL_STATE(2658)] = 82926, - [SMALL_STATE(2659)] = 82959, - [SMALL_STATE(2660)] = 82992, - [SMALL_STATE(2661)] = 83023, - [SMALL_STATE(2662)] = 83054, - [SMALL_STATE(2663)] = 83081, - [SMALL_STATE(2664)] = 83108, - [SMALL_STATE(2665)] = 83137, - [SMALL_STATE(2666)] = 83166, - [SMALL_STATE(2667)] = 83197, - [SMALL_STATE(2668)] = 83228, - [SMALL_STATE(2669)] = 83255, - [SMALL_STATE(2670)] = 83282, - [SMALL_STATE(2671)] = 83309, - [SMALL_STATE(2672)] = 83336, - [SMALL_STATE(2673)] = 83367, - [SMALL_STATE(2674)] = 83398, - [SMALL_STATE(2675)] = 83427, - [SMALL_STATE(2676)] = 83456, - [SMALL_STATE(2677)] = 83489, - [SMALL_STATE(2678)] = 83522, - [SMALL_STATE(2679)] = 83553, - [SMALL_STATE(2680)] = 83584, - [SMALL_STATE(2681)] = 83617, - [SMALL_STATE(2682)] = 83648, - [SMALL_STATE(2683)] = 83679, - [SMALL_STATE(2684)] = 83710, - [SMALL_STATE(2685)] = 83737, - [SMALL_STATE(2686)] = 83766, - [SMALL_STATE(2687)] = 83795, - [SMALL_STATE(2688)] = 83826, - [SMALL_STATE(2689)] = 83857, - [SMALL_STATE(2690)] = 83884, - [SMALL_STATE(2691)] = 83911, - [SMALL_STATE(2692)] = 83940, - [SMALL_STATE(2693)] = 83969, - [SMALL_STATE(2694)] = 84000, - [SMALL_STATE(2695)] = 84031, - [SMALL_STATE(2696)] = 84062, - [SMALL_STATE(2697)] = 84091, - [SMALL_STATE(2698)] = 84118, - [SMALL_STATE(2699)] = 84145, - [SMALL_STATE(2700)] = 84176, - [SMALL_STATE(2701)] = 84203, - [SMALL_STATE(2702)] = 84230, - [SMALL_STATE(2703)] = 84257, - [SMALL_STATE(2704)] = 84288, - [SMALL_STATE(2705)] = 84319, - [SMALL_STATE(2706)] = 84350, - [SMALL_STATE(2707)] = 84381, - [SMALL_STATE(2708)] = 84412, - [SMALL_STATE(2709)] = 84443, - [SMALL_STATE(2710)] = 84472, - [SMALL_STATE(2711)] = 84503, - [SMALL_STATE(2712)] = 84534, - [SMALL_STATE(2713)] = 84565, - [SMALL_STATE(2714)] = 84596, - [SMALL_STATE(2715)] = 84625, - [SMALL_STATE(2716)] = 84654, - [SMALL_STATE(2717)] = 84681, - [SMALL_STATE(2718)] = 84712, - [SMALL_STATE(2719)] = 84745, - [SMALL_STATE(2720)] = 84778, - [SMALL_STATE(2721)] = 84809, - [SMALL_STATE(2722)] = 84842, - [SMALL_STATE(2723)] = 84873, - [SMALL_STATE(2724)] = 84904, - [SMALL_STATE(2725)] = 84935, - [SMALL_STATE(2726)] = 84968, - [SMALL_STATE(2727)] = 85001, - [SMALL_STATE(2728)] = 85028, - [SMALL_STATE(2729)] = 85059, - [SMALL_STATE(2730)] = 85086, - [SMALL_STATE(2731)] = 85113, - [SMALL_STATE(2732)] = 85140, - [SMALL_STATE(2733)] = 85171, - [SMALL_STATE(2734)] = 85202, - [SMALL_STATE(2735)] = 85233, - [SMALL_STATE(2736)] = 85266, - [SMALL_STATE(2737)] = 85297, - [SMALL_STATE(2738)] = 85328, - [SMALL_STATE(2739)] = 85359, - [SMALL_STATE(2740)] = 85390, - [SMALL_STATE(2741)] = 85421, - [SMALL_STATE(2742)] = 85454, - [SMALL_STATE(2743)] = 85487, - [SMALL_STATE(2744)] = 85518, - [SMALL_STATE(2745)] = 85549, - [SMALL_STATE(2746)] = 85574, - [SMALL_STATE(2747)] = 85607, - [SMALL_STATE(2748)] = 85634, - [SMALL_STATE(2749)] = 85661, - [SMALL_STATE(2750)] = 85692, - [SMALL_STATE(2751)] = 85723, - [SMALL_STATE(2752)] = 85756, - [SMALL_STATE(2753)] = 85789, - [SMALL_STATE(2754)] = 85822, - [SMALL_STATE(2755)] = 85849, - [SMALL_STATE(2756)] = 85876, - [SMALL_STATE(2757)] = 85903, - [SMALL_STATE(2758)] = 85930, - [SMALL_STATE(2759)] = 85957, - [SMALL_STATE(2760)] = 85988, - [SMALL_STATE(2761)] = 86021, - [SMALL_STATE(2762)] = 86048, - [SMALL_STATE(2763)] = 86079, - [SMALL_STATE(2764)] = 86114, - [SMALL_STATE(2765)] = 86141, - [SMALL_STATE(2766)] = 86172, - [SMALL_STATE(2767)] = 86201, - [SMALL_STATE(2768)] = 86230, - [SMALL_STATE(2769)] = 86257, - [SMALL_STATE(2770)] = 86284, - [SMALL_STATE(2771)] = 86319, - [SMALL_STATE(2772)] = 86352, - [SMALL_STATE(2773)] = 86385, - [SMALL_STATE(2774)] = 86416, - [SMALL_STATE(2775)] = 86447, - [SMALL_STATE(2776)] = 86474, - [SMALL_STATE(2777)] = 86509, - [SMALL_STATE(2778)] = 86544, - [SMALL_STATE(2779)] = 86577, - [SMALL_STATE(2780)] = 86602, - [SMALL_STATE(2781)] = 86627, - [SMALL_STATE(2782)] = 86654, - [SMALL_STATE(2783)] = 86679, - [SMALL_STATE(2784)] = 86704, - [SMALL_STATE(2785)] = 86731, - [SMALL_STATE(2786)] = 86766, - [SMALL_STATE(2787)] = 86791, - [SMALL_STATE(2788)] = 86828, - [SMALL_STATE(2789)] = 86859, - [SMALL_STATE(2790)] = 86890, - [SMALL_STATE(2791)] = 86921, - [SMALL_STATE(2792)] = 86956, - [SMALL_STATE(2793)] = 86991, - [SMALL_STATE(2794)] = 87026, - [SMALL_STATE(2795)] = 87061, - [SMALL_STATE(2796)] = 87096, - [SMALL_STATE(2797)] = 87131, - [SMALL_STATE(2798)] = 87156, - [SMALL_STATE(2799)] = 87181, - [SMALL_STATE(2800)] = 87206, - [SMALL_STATE(2801)] = 87233, - [SMALL_STATE(2802)] = 87260, - [SMALL_STATE(2803)] = 87289, - [SMALL_STATE(2804)] = 87318, - [SMALL_STATE(2805)] = 87349, - [SMALL_STATE(2806)] = 87374, - [SMALL_STATE(2807)] = 87401, - [SMALL_STATE(2808)] = 87428, - [SMALL_STATE(2809)] = 87453, - [SMALL_STATE(2810)] = 87480, - [SMALL_STATE(2811)] = 87507, - [SMALL_STATE(2812)] = 87536, - [SMALL_STATE(2813)] = 87565, - [SMALL_STATE(2814)] = 87594, - [SMALL_STATE(2815)] = 87623, - [SMALL_STATE(2816)] = 87650, - [SMALL_STATE(2817)] = 87680, - [SMALL_STATE(2818)] = 87706, - [SMALL_STATE(2819)] = 87738, - [SMALL_STATE(2820)] = 87764, - [SMALL_STATE(2821)] = 87790, - [SMALL_STATE(2822)] = 87820, - [SMALL_STATE(2823)] = 87846, - [SMALL_STATE(2824)] = 87876, - [SMALL_STATE(2825)] = 87906, - [SMALL_STATE(2826)] = 87934, - [SMALL_STATE(2827)] = 87960, - [SMALL_STATE(2828)] = 87990, - [SMALL_STATE(2829)] = 88036, - [SMALL_STATE(2830)] = 88062, - [SMALL_STATE(2831)] = 88092, - [SMALL_STATE(2832)] = 88116, - [SMALL_STATE(2833)] = 88146, - [SMALL_STATE(2834)] = 88172, - [SMALL_STATE(2835)] = 88202, - [SMALL_STATE(2836)] = 88228, - [SMALL_STATE(2837)] = 88254, - [SMALL_STATE(2838)] = 88284, - [SMALL_STATE(2839)] = 88314, - [SMALL_STATE(2840)] = 88342, - [SMALL_STATE(2841)] = 88370, - [SMALL_STATE(2842)] = 88394, - [SMALL_STATE(2843)] = 88420, - [SMALL_STATE(2844)] = 88446, - [SMALL_STATE(2845)] = 88470, - [SMALL_STATE(2846)] = 88494, - [SMALL_STATE(2847)] = 88526, - [SMALL_STATE(2848)] = 88578, - [SMALL_STATE(2849)] = 88622, - [SMALL_STATE(2850)] = 88646, - [SMALL_STATE(2851)] = 88670, - [SMALL_STATE(2852)] = 88694, - [SMALL_STATE(2853)] = 88746, - [SMALL_STATE(2854)] = 88770, - [SMALL_STATE(2855)] = 88794, - [SMALL_STATE(2856)] = 88818, - [SMALL_STATE(2857)] = 88844, - [SMALL_STATE(2858)] = 88870, - [SMALL_STATE(2859)] = 88896, - [SMALL_STATE(2860)] = 88924, - [SMALL_STATE(2861)] = 88952, - [SMALL_STATE(2862)] = 88976, - [SMALL_STATE(2863)] = 89000, - [SMALL_STATE(2864)] = 89026, - [SMALL_STATE(2865)] = 89052, - [SMALL_STATE(2866)] = 89078, - [SMALL_STATE(2867)] = 89108, - [SMALL_STATE(2868)] = 89136, - [SMALL_STATE(2869)] = 89162, - [SMALL_STATE(2870)] = 89188, - [SMALL_STATE(2871)] = 89214, - [SMALL_STATE(2872)] = 89244, - [SMALL_STATE(2873)] = 89274, - [SMALL_STATE(2874)] = 89304, - [SMALL_STATE(2875)] = 89330, - [SMALL_STATE(2876)] = 89360, - [SMALL_STATE(2877)] = 89390, - [SMALL_STATE(2878)] = 89420, - [SMALL_STATE(2879)] = 89450, - [SMALL_STATE(2880)] = 89502, - [SMALL_STATE(2881)] = 89554, - [SMALL_STATE(2882)] = 89582, - [SMALL_STATE(2883)] = 89612, - [SMALL_STATE(2884)] = 89640, - [SMALL_STATE(2885)] = 89670, - [SMALL_STATE(2886)] = 89696, - [SMALL_STATE(2887)] = 89726, - [SMALL_STATE(2888)] = 89778, - [SMALL_STATE(2889)] = 89808, - [SMALL_STATE(2890)] = 89860, - [SMALL_STATE(2891)] = 89888, - [SMALL_STATE(2892)] = 89912, - [SMALL_STATE(2893)] = 89952, - [SMALL_STATE(2894)] = 89982, - [SMALL_STATE(2895)] = 90012, - [SMALL_STATE(2896)] = 90044, - [SMALL_STATE(2897)] = 90072, - [SMALL_STATE(2898)] = 90098, - [SMALL_STATE(2899)] = 90126, - [SMALL_STATE(2900)] = 90152, - [SMALL_STATE(2901)] = 90178, - [SMALL_STATE(2902)] = 90230, - [SMALL_STATE(2903)] = 90282, - [SMALL_STATE(2904)] = 90308, - [SMALL_STATE(2905)] = 90334, - [SMALL_STATE(2906)] = 90362, - [SMALL_STATE(2907)] = 90392, - [SMALL_STATE(2908)] = 90418, - [SMALL_STATE(2909)] = 90444, - [SMALL_STATE(2910)] = 90474, - [SMALL_STATE(2911)] = 90526, - [SMALL_STATE(2912)] = 90558, - [SMALL_STATE(2913)] = 90610, - [SMALL_STATE(2914)] = 90640, - [SMALL_STATE(2915)] = 90666, - [SMALL_STATE(2916)] = 90694, - [SMALL_STATE(2917)] = 90723, - [SMALL_STATE(2918)] = 90752, - [SMALL_STATE(2919)] = 90783, - [SMALL_STATE(2920)] = 90812, - [SMALL_STATE(2921)] = 90837, - [SMALL_STATE(2922)] = 90862, - [SMALL_STATE(2923)] = 90887, - [SMALL_STATE(2924)] = 90916, - [SMALL_STATE(2925)] = 90941, - [SMALL_STATE(2926)] = 90966, - [SMALL_STATE(2927)] = 90993, - [SMALL_STATE(2928)] = 91022, - [SMALL_STATE(2929)] = 91051, - [SMALL_STATE(2930)] = 91080, - [SMALL_STATE(2931)] = 91105, - [SMALL_STATE(2932)] = 91130, - [SMALL_STATE(2933)] = 91155, - [SMALL_STATE(2934)] = 91180, - [SMALL_STATE(2935)] = 91205, - [SMALL_STATE(2936)] = 91230, - [SMALL_STATE(2937)] = 91255, - [SMALL_STATE(2938)] = 91284, - [SMALL_STATE(2939)] = 91315, - [SMALL_STATE(2940)] = 91338, - [SMALL_STATE(2941)] = 91363, - [SMALL_STATE(2942)] = 91400, - [SMALL_STATE(2943)] = 91425, - [SMALL_STATE(2944)] = 91450, - [SMALL_STATE(2945)] = 91479, - [SMALL_STATE(2946)] = 91508, - [SMALL_STATE(2947)] = 91537, - [SMALL_STATE(2948)] = 91562, - [SMALL_STATE(2949)] = 91591, - [SMALL_STATE(2950)] = 91634, - [SMALL_STATE(2951)] = 91663, - [SMALL_STATE(2952)] = 91688, - [SMALL_STATE(2953)] = 91713, - [SMALL_STATE(2954)] = 91744, - [SMALL_STATE(2955)] = 91769, - [SMALL_STATE(2956)] = 91794, - [SMALL_STATE(2957)] = 91819, - [SMALL_STATE(2958)] = 91848, - [SMALL_STATE(2959)] = 91873, - [SMALL_STATE(2960)] = 91898, - [SMALL_STATE(2961)] = 91941, - [SMALL_STATE(2962)] = 91970, - [SMALL_STATE(2963)] = 91999, - [SMALL_STATE(2964)] = 92028, - [SMALL_STATE(2965)] = 92057, - [SMALL_STATE(2966)] = 92082, - [SMALL_STATE(2967)] = 92111, - [SMALL_STATE(2968)] = 92136, - [SMALL_STATE(2969)] = 92161, - [SMALL_STATE(2970)] = 92190, - [SMALL_STATE(2971)] = 92215, - [SMALL_STATE(2972)] = 92240, - [SMALL_STATE(2973)] = 92265, - [SMALL_STATE(2974)] = 92290, - [SMALL_STATE(2975)] = 92315, - [SMALL_STATE(2976)] = 92340, - [SMALL_STATE(2977)] = 92371, - [SMALL_STATE(2978)] = 92396, - [SMALL_STATE(2979)] = 92421, - [SMALL_STATE(2980)] = 92446, - [SMALL_STATE(2981)] = 92475, - [SMALL_STATE(2982)] = 92500, - [SMALL_STATE(2983)] = 92525, - [SMALL_STATE(2984)] = 92554, - [SMALL_STATE(2985)] = 92579, - [SMALL_STATE(2986)] = 92604, - [SMALL_STATE(2987)] = 92629, - [SMALL_STATE(2988)] = 92654, - [SMALL_STATE(2989)] = 92679, - [SMALL_STATE(2990)] = 92708, - [SMALL_STATE(2991)] = 92735, - [SMALL_STATE(2992)] = 92764, - [SMALL_STATE(2993)] = 92791, - [SMALL_STATE(2994)] = 92820, - [SMALL_STATE(2995)] = 92849, - [SMALL_STATE(2996)] = 92874, - [SMALL_STATE(2997)] = 92899, - [SMALL_STATE(2998)] = 92924, - [SMALL_STATE(2999)] = 92949, - [SMALL_STATE(3000)] = 92988, - [SMALL_STATE(3001)] = 93013, - [SMALL_STATE(3002)] = 93040, - [SMALL_STATE(3003)] = 93065, - [SMALL_STATE(3004)] = 93090, - [SMALL_STATE(3005)] = 93127, - [SMALL_STATE(3006)] = 93152, - [SMALL_STATE(3007)] = 93177, - [SMALL_STATE(3008)] = 93206, - [SMALL_STATE(3009)] = 93231, - [SMALL_STATE(3010)] = 93260, - [SMALL_STATE(3011)] = 93285, - [SMALL_STATE(3012)] = 93310, - [SMALL_STATE(3013)] = 93335, - [SMALL_STATE(3014)] = 93360, - [SMALL_STATE(3015)] = 93389, - [SMALL_STATE(3016)] = 93418, - [SMALL_STATE(3017)] = 93443, - [SMALL_STATE(3018)] = 93468, - [SMALL_STATE(3019)] = 93493, - [SMALL_STATE(3020)] = 93518, - [SMALL_STATE(3021)] = 93543, - [SMALL_STATE(3022)] = 93568, - [SMALL_STATE(3023)] = 93593, - [SMALL_STATE(3024)] = 93618, - [SMALL_STATE(3025)] = 93647, - [SMALL_STATE(3026)] = 93672, - [SMALL_STATE(3027)] = 93701, - [SMALL_STATE(3028)] = 93726, - [SMALL_STATE(3029)] = 93755, - [SMALL_STATE(3030)] = 93778, - [SMALL_STATE(3031)] = 93803, - [SMALL_STATE(3032)] = 93832, - [SMALL_STATE(3033)] = 93857, - [SMALL_STATE(3034)] = 93886, - [SMALL_STATE(3035)] = 93911, - [SMALL_STATE(3036)] = 93936, - [SMALL_STATE(3037)] = 93961, - [SMALL_STATE(3038)] = 93986, - [SMALL_STATE(3039)] = 94011, - [SMALL_STATE(3040)] = 94048, - [SMALL_STATE(3041)] = 94077, - [SMALL_STATE(3042)] = 94106, - [SMALL_STATE(3043)] = 94135, - [SMALL_STATE(3044)] = 94162, - [SMALL_STATE(3045)] = 94191, - [SMALL_STATE(3046)] = 94216, - [SMALL_STATE(3047)] = 94241, - [SMALL_STATE(3048)] = 94270, - [SMALL_STATE(3049)] = 94299, - [SMALL_STATE(3050)] = 94324, - [SMALL_STATE(3051)] = 94349, - [SMALL_STATE(3052)] = 94374, - [SMALL_STATE(3053)] = 94399, - [SMALL_STATE(3054)] = 94428, - [SMALL_STATE(3055)] = 94457, - [SMALL_STATE(3056)] = 94482, - [SMALL_STATE(3057)] = 94507, - [SMALL_STATE(3058)] = 94536, - [SMALL_STATE(3059)] = 94561, - [SMALL_STATE(3060)] = 94586, - [SMALL_STATE(3061)] = 94611, - [SMALL_STATE(3062)] = 94636, - [SMALL_STATE(3063)] = 94661, - [SMALL_STATE(3064)] = 94686, - [SMALL_STATE(3065)] = 94713, - [SMALL_STATE(3066)] = 94740, - [SMALL_STATE(3067)] = 94765, - [SMALL_STATE(3068)] = 94790, - [SMALL_STATE(3069)] = 94815, - [SMALL_STATE(3070)] = 94844, - [SMALL_STATE(3071)] = 94869, - [SMALL_STATE(3072)] = 94898, - [SMALL_STATE(3073)] = 94923, - [SMALL_STATE(3074)] = 94948, - [SMALL_STATE(3075)] = 94973, - [SMALL_STATE(3076)] = 95007, - [SMALL_STATE(3077)] = 95031, - [SMALL_STATE(3078)] = 95077, - [SMALL_STATE(3079)] = 95101, - [SMALL_STATE(3080)] = 95123, - [SMALL_STATE(3081)] = 95165, - [SMALL_STATE(3082)] = 95189, - [SMALL_STATE(3083)] = 95223, - [SMALL_STATE(3084)] = 95269, - [SMALL_STATE(3085)] = 95293, - [SMALL_STATE(3086)] = 95317, - [SMALL_STATE(3087)] = 95341, - [SMALL_STATE(3088)] = 95363, - [SMALL_STATE(3089)] = 95409, - [SMALL_STATE(3090)] = 95433, - [SMALL_STATE(3091)] = 95473, - [SMALL_STATE(3092)] = 95497, - [SMALL_STATE(3093)] = 95521, - [SMALL_STATE(3094)] = 95545, - [SMALL_STATE(3095)] = 95569, - [SMALL_STATE(3096)] = 95593, - [SMALL_STATE(3097)] = 95617, - [SMALL_STATE(3098)] = 95641, - [SMALL_STATE(3099)] = 95665, - [SMALL_STATE(3100)] = 95705, - [SMALL_STATE(3101)] = 95729, - [SMALL_STATE(3102)] = 95753, - [SMALL_STATE(3103)] = 95775, - [SMALL_STATE(3104)] = 95799, - [SMALL_STATE(3105)] = 95823, - [SMALL_STATE(3106)] = 95847, - [SMALL_STATE(3107)] = 95871, - [SMALL_STATE(3108)] = 95895, - [SMALL_STATE(3109)] = 95935, - [SMALL_STATE(3110)] = 95957, - [SMALL_STATE(3111)] = 95981, - [SMALL_STATE(3112)] = 96005, - [SMALL_STATE(3113)] = 96029, - [SMALL_STATE(3114)] = 96051, - [SMALL_STATE(3115)] = 96073, - [SMALL_STATE(3116)] = 96095, - [SMALL_STATE(3117)] = 96119, - [SMALL_STATE(3118)] = 96145, - [SMALL_STATE(3119)] = 96167, - [SMALL_STATE(3120)] = 96207, - [SMALL_STATE(3121)] = 96231, - [SMALL_STATE(3122)] = 96255, - [SMALL_STATE(3123)] = 96279, - [SMALL_STATE(3124)] = 96303, - [SMALL_STATE(3125)] = 96327, - [SMALL_STATE(3126)] = 96351, - [SMALL_STATE(3127)] = 96375, - [SMALL_STATE(3128)] = 96415, - [SMALL_STATE(3129)] = 96441, - [SMALL_STATE(3130)] = 96465, - [SMALL_STATE(3131)] = 96489, - [SMALL_STATE(3132)] = 96513, - [SMALL_STATE(3133)] = 96537, - [SMALL_STATE(3134)] = 96561, - [SMALL_STATE(3135)] = 96585, - [SMALL_STATE(3136)] = 96609, - [SMALL_STATE(3137)] = 96631, - [SMALL_STATE(3138)] = 96655, - [SMALL_STATE(3139)] = 96679, - [SMALL_STATE(3140)] = 96703, - [SMALL_STATE(3141)] = 96727, - [SMALL_STATE(3142)] = 96751, - [SMALL_STATE(3143)] = 96775, - [SMALL_STATE(3144)] = 96799, - [SMALL_STATE(3145)] = 96823, - [SMALL_STATE(3146)] = 96845, - [SMALL_STATE(3147)] = 96867, - [SMALL_STATE(3148)] = 96891, - [SMALL_STATE(3149)] = 96915, - [SMALL_STATE(3150)] = 96951, - [SMALL_STATE(3151)] = 96975, - [SMALL_STATE(3152)] = 97021, - [SMALL_STATE(3153)] = 97045, - [SMALL_STATE(3154)] = 97069, - [SMALL_STATE(3155)] = 97103, - [SMALL_STATE(3156)] = 97127, - [SMALL_STATE(3157)] = 97151, - [SMALL_STATE(3158)] = 97175, - [SMALL_STATE(3159)] = 97199, - [SMALL_STATE(3160)] = 97223, - [SMALL_STATE(3161)] = 97257, - [SMALL_STATE(3162)] = 97279, - [SMALL_STATE(3163)] = 97303, - [SMALL_STATE(3164)] = 97327, - [SMALL_STATE(3165)] = 97363, - [SMALL_STATE(3166)] = 97387, - [SMALL_STATE(3167)] = 97411, - [SMALL_STATE(3168)] = 97433, - [SMALL_STATE(3169)] = 97457, - [SMALL_STATE(3170)] = 97479, - [SMALL_STATE(3171)] = 97503, - [SMALL_STATE(3172)] = 97549, - [SMALL_STATE(3173)] = 97595, - [SMALL_STATE(3174)] = 97619, - [SMALL_STATE(3175)] = 97665, - [SMALL_STATE(3176)] = 97705, - [SMALL_STATE(3177)] = 97729, - [SMALL_STATE(3178)] = 97753, - [SMALL_STATE(3179)] = 97795, - [SMALL_STATE(3180)] = 97841, - [SMALL_STATE(3181)] = 97865, - [SMALL_STATE(3182)] = 97889, - [SMALL_STATE(3183)] = 97913, - [SMALL_STATE(3184)] = 97941, - [SMALL_STATE(3185)] = 97969, - [SMALL_STATE(3186)] = 97997, - [SMALL_STATE(3187)] = 98025, - [SMALL_STATE(3188)] = 98053, - [SMALL_STATE(3189)] = 98081, - [SMALL_STATE(3190)] = 98109, - [SMALL_STATE(3191)] = 98137, - [SMALL_STATE(3192)] = 98165, - [SMALL_STATE(3193)] = 98193, - [SMALL_STATE(3194)] = 98221, - [SMALL_STATE(3195)] = 98249, - [SMALL_STATE(3196)] = 98273, - [SMALL_STATE(3197)] = 98297, - [SMALL_STATE(3198)] = 98321, - [SMALL_STATE(3199)] = 98367, - [SMALL_STATE(3200)] = 98391, - [SMALL_STATE(3201)] = 98431, - [SMALL_STATE(3202)] = 98455, - [SMALL_STATE(3203)] = 98501, - [SMALL_STATE(3204)] = 98525, - [SMALL_STATE(3205)] = 98549, - [SMALL_STATE(3206)] = 98573, - [SMALL_STATE(3207)] = 98597, - [SMALL_STATE(3208)] = 98619, - [SMALL_STATE(3209)] = 98643, - [SMALL_STATE(3210)] = 98665, - [SMALL_STATE(3211)] = 98689, - [SMALL_STATE(3212)] = 98713, - [SMALL_STATE(3213)] = 98737, - [SMALL_STATE(3214)] = 98761, - [SMALL_STATE(3215)] = 98788, - [SMALL_STATE(3216)] = 98809, - [SMALL_STATE(3217)] = 98848, - [SMALL_STATE(3218)] = 98869, - [SMALL_STATE(3219)] = 98890, - [SMALL_STATE(3220)] = 98913, - [SMALL_STATE(3221)] = 98936, - [SMALL_STATE(3222)] = 98959, - [SMALL_STATE(3223)] = 98980, - [SMALL_STATE(3224)] = 99001, - [SMALL_STATE(3225)] = 99022, - [SMALL_STATE(3226)] = 99043, - [SMALL_STATE(3227)] = 99066, - [SMALL_STATE(3228)] = 99093, - [SMALL_STATE(3229)] = 99120, - [SMALL_STATE(3230)] = 99141, - [SMALL_STATE(3231)] = 99162, - [SMALL_STATE(3232)] = 99185, - [SMALL_STATE(3233)] = 99206, - [SMALL_STATE(3234)] = 99229, - [SMALL_STATE(3235)] = 99252, - [SMALL_STATE(3236)] = 99289, - [SMALL_STATE(3237)] = 99326, - [SMALL_STATE(3238)] = 99363, - [SMALL_STATE(3239)] = 99400, - [SMALL_STATE(3240)] = 99423, - [SMALL_STATE(3241)] = 99460, - [SMALL_STATE(3242)] = 99483, - [SMALL_STATE(3243)] = 99506, - [SMALL_STATE(3244)] = 99529, - [SMALL_STATE(3245)] = 99552, - [SMALL_STATE(3246)] = 99573, - [SMALL_STATE(3247)] = 99594, - [SMALL_STATE(3248)] = 99615, - [SMALL_STATE(3249)] = 99642, - [SMALL_STATE(3250)] = 99663, - [SMALL_STATE(3251)] = 99684, - [SMALL_STATE(3252)] = 99707, - [SMALL_STATE(3253)] = 99728, - [SMALL_STATE(3254)] = 99755, - [SMALL_STATE(3255)] = 99782, - [SMALL_STATE(3256)] = 99803, - [SMALL_STATE(3257)] = 99826, - [SMALL_STATE(3258)] = 99847, - [SMALL_STATE(3259)] = 99868, - [SMALL_STATE(3260)] = 99889, - [SMALL_STATE(3261)] = 99912, - [SMALL_STATE(3262)] = 99933, - [SMALL_STATE(3263)] = 99954, - [SMALL_STATE(3264)] = 99975, - [SMALL_STATE(3265)] = 100012, - [SMALL_STATE(3266)] = 100033, - [SMALL_STATE(3267)] = 100054, - [SMALL_STATE(3268)] = 100081, - [SMALL_STATE(3269)] = 100110, - [SMALL_STATE(3270)] = 100133, - [SMALL_STATE(3271)] = 100160, - [SMALL_STATE(3272)] = 100183, - [SMALL_STATE(3273)] = 100204, - [SMALL_STATE(3274)] = 100243, - [SMALL_STATE(3275)] = 100266, - [SMALL_STATE(3276)] = 100289, - [SMALL_STATE(3277)] = 100316, - [SMALL_STATE(3278)] = 100353, - [SMALL_STATE(3279)] = 100374, - [SMALL_STATE(3280)] = 100397, - [SMALL_STATE(3281)] = 100418, - [SMALL_STATE(3282)] = 100439, - [SMALL_STATE(3283)] = 100460, - [SMALL_STATE(3284)] = 100481, - [SMALL_STATE(3285)] = 100504, - [SMALL_STATE(3286)] = 100527, - [SMALL_STATE(3287)] = 100566, - [SMALL_STATE(3288)] = 100587, - [SMALL_STATE(3289)] = 100608, - [SMALL_STATE(3290)] = 100629, - [SMALL_STATE(3291)] = 100652, - [SMALL_STATE(3292)] = 100673, - [SMALL_STATE(3293)] = 100710, - [SMALL_STATE(3294)] = 100741, - [SMALL_STATE(3295)] = 100762, - [SMALL_STATE(3296)] = 100783, - [SMALL_STATE(3297)] = 100804, - [SMALL_STATE(3298)] = 100825, - [SMALL_STATE(3299)] = 100852, - [SMALL_STATE(3300)] = 100873, - [SMALL_STATE(3301)] = 100896, - [SMALL_STATE(3302)] = 100917, - [SMALL_STATE(3303)] = 100938, - [SMALL_STATE(3304)] = 100959, - [SMALL_STATE(3305)] = 100982, - [SMALL_STATE(3306)] = 101005, - [SMALL_STATE(3307)] = 101030, - [SMALL_STATE(3308)] = 101051, - [SMALL_STATE(3309)] = 101072, - [SMALL_STATE(3310)] = 101093, - [SMALL_STATE(3311)] = 101114, - [SMALL_STATE(3312)] = 101135, - [SMALL_STATE(3313)] = 101156, - [SMALL_STATE(3314)] = 101177, - [SMALL_STATE(3315)] = 101200, - [SMALL_STATE(3316)] = 101221, - [SMALL_STATE(3317)] = 101242, - [SMALL_STATE(3318)] = 101269, - [SMALL_STATE(3319)] = 101296, - [SMALL_STATE(3320)] = 101323, - [SMALL_STATE(3321)] = 101350, - [SMALL_STATE(3322)] = 101377, - [SMALL_STATE(3323)] = 101404, - [SMALL_STATE(3324)] = 101431, - [SMALL_STATE(3325)] = 101458, - [SMALL_STATE(3326)] = 101485, - [SMALL_STATE(3327)] = 101512, - [SMALL_STATE(3328)] = 101539, - [SMALL_STATE(3329)] = 101562, - [SMALL_STATE(3330)] = 101583, - [SMALL_STATE(3331)] = 101604, - [SMALL_STATE(3332)] = 101641, - [SMALL_STATE(3333)] = 101662, - [SMALL_STATE(3334)] = 101683, - [SMALL_STATE(3335)] = 101704, - [SMALL_STATE(3336)] = 101741, - [SMALL_STATE(3337)] = 101778, - [SMALL_STATE(3338)] = 101815, - [SMALL_STATE(3339)] = 101852, - [SMALL_STATE(3340)] = 101891, - [SMALL_STATE(3341)] = 101912, - [SMALL_STATE(3342)] = 101933, - [SMALL_STATE(3343)] = 101972, - [SMALL_STATE(3344)] = 101995, - [SMALL_STATE(3345)] = 102034, - [SMALL_STATE(3346)] = 102057, - [SMALL_STATE(3347)] = 102080, - [SMALL_STATE(3348)] = 102103, - [SMALL_STATE(3349)] = 102130, - [SMALL_STATE(3350)] = 102151, - [SMALL_STATE(3351)] = 102178, - [SMALL_STATE(3352)] = 102201, - [SMALL_STATE(3353)] = 102222, - [SMALL_STATE(3354)] = 102261, - [SMALL_STATE(3355)] = 102282, - [SMALL_STATE(3356)] = 102314, - [SMALL_STATE(3357)] = 102336, - [SMALL_STATE(3358)] = 102372, - [SMALL_STATE(3359)] = 102396, - [SMALL_STATE(3360)] = 102428, - [SMALL_STATE(3361)] = 102452, - [SMALL_STATE(3362)] = 102486, - [SMALL_STATE(3363)] = 102512, - [SMALL_STATE(3364)] = 102538, - [SMALL_STATE(3365)] = 102564, - [SMALL_STATE(3366)] = 102588, - [SMALL_STATE(3367)] = 102624, - [SMALL_STATE(3368)] = 102650, - [SMALL_STATE(3369)] = 102674, - [SMALL_STATE(3370)] = 102704, - [SMALL_STATE(3371)] = 102728, - [SMALL_STATE(3372)] = 102752, - [SMALL_STATE(3373)] = 102774, - [SMALL_STATE(3374)] = 102798, - [SMALL_STATE(3375)] = 102824, - [SMALL_STATE(3376)] = 102858, - [SMALL_STATE(3377)] = 102880, - [SMALL_STATE(3378)] = 102902, - [SMALL_STATE(3379)] = 102930, - [SMALL_STATE(3380)] = 102952, - [SMALL_STATE(3381)] = 102978, - [SMALL_STATE(3382)] = 103010, - [SMALL_STATE(3383)] = 103032, - [SMALL_STATE(3384)] = 103054, - [SMALL_STATE(3385)] = 103080, - [SMALL_STATE(3386)] = 103114, - [SMALL_STATE(3387)] = 103144, - [SMALL_STATE(3388)] = 103180, - [SMALL_STATE(3389)] = 103204, - [SMALL_STATE(3390)] = 103240, - [SMALL_STATE(3391)] = 103266, - [SMALL_STATE(3392)] = 103292, - [SMALL_STATE(3393)] = 103318, - [SMALL_STATE(3394)] = 103350, - [SMALL_STATE(3395)] = 103376, - [SMALL_STATE(3396)] = 103398, - [SMALL_STATE(3397)] = 103430, - [SMALL_STATE(3398)] = 103456, - [SMALL_STATE(3399)] = 103480, - [SMALL_STATE(3400)] = 103504, - [SMALL_STATE(3401)] = 103530, - [SMALL_STATE(3402)] = 103563, - [SMALL_STATE(3403)] = 103594, - [SMALL_STATE(3404)] = 103625, - [SMALL_STATE(3405)] = 103656, - [SMALL_STATE(3406)] = 103689, - [SMALL_STATE(3407)] = 103722, - [SMALL_STATE(3408)] = 103743, - [SMALL_STATE(3409)] = 103774, - [SMALL_STATE(3410)] = 103807, - [SMALL_STATE(3411)] = 103840, - [SMALL_STATE(3412)] = 103873, - [SMALL_STATE(3413)] = 103896, - [SMALL_STATE(3414)] = 103921, - [SMALL_STATE(3415)] = 103942, - [SMALL_STATE(3416)] = 103973, - [SMALL_STATE(3417)] = 103998, - [SMALL_STATE(3418)] = 104019, - [SMALL_STATE(3419)] = 104054, - [SMALL_STATE(3420)] = 104077, - [SMALL_STATE(3421)] = 104110, - [SMALL_STATE(3422)] = 104143, - [SMALL_STATE(3423)] = 104174, - [SMALL_STATE(3424)] = 104199, - [SMALL_STATE(3425)] = 104220, - [SMALL_STATE(3426)] = 104241, - [SMALL_STATE(3427)] = 104266, - [SMALL_STATE(3428)] = 104297, - [SMALL_STATE(3429)] = 104328, - [SMALL_STATE(3430)] = 104349, - [SMALL_STATE(3431)] = 104382, - [SMALL_STATE(3432)] = 104415, - [SMALL_STATE(3433)] = 104446, - [SMALL_STATE(3434)] = 104477, - [SMALL_STATE(3435)] = 104508, - [SMALL_STATE(3436)] = 104531, - [SMALL_STATE(3437)] = 104564, - [SMALL_STATE(3438)] = 104597, - [SMALL_STATE(3439)] = 104628, - [SMALL_STATE(3440)] = 104653, - [SMALL_STATE(3441)] = 104676, - [SMALL_STATE(3442)] = 104707, - [SMALL_STATE(3443)] = 104740, - [SMALL_STATE(3444)] = 104773, - [SMALL_STATE(3445)] = 104804, - [SMALL_STATE(3446)] = 104827, - [SMALL_STATE(3447)] = 104860, - [SMALL_STATE(3448)] = 104893, - [SMALL_STATE(3449)] = 104914, - [SMALL_STATE(3450)] = 104947, - [SMALL_STATE(3451)] = 104970, - [SMALL_STATE(3452)] = 105003, - [SMALL_STATE(3453)] = 105024, - [SMALL_STATE(3454)] = 105057, - [SMALL_STATE(3455)] = 105088, - [SMALL_STATE(3456)] = 105121, - [SMALL_STATE(3457)] = 105156, - [SMALL_STATE(3458)] = 105189, - [SMALL_STATE(3459)] = 105222, - [SMALL_STATE(3460)] = 105253, - [SMALL_STATE(3461)] = 105276, - [SMALL_STATE(3462)] = 105309, - [SMALL_STATE(3463)] = 105342, - [SMALL_STATE(3464)] = 105375, - [SMALL_STATE(3465)] = 105408, - [SMALL_STATE(3466)] = 105441, - [SMALL_STATE(3467)] = 105474, - [SMALL_STATE(3468)] = 105505, - [SMALL_STATE(3469)] = 105538, - [SMALL_STATE(3470)] = 105571, - [SMALL_STATE(3471)] = 105596, - [SMALL_STATE(3472)] = 105629, - [SMALL_STATE(3473)] = 105662, - [SMALL_STATE(3474)] = 105695, - [SMALL_STATE(3475)] = 105728, - [SMALL_STATE(3476)] = 105761, - [SMALL_STATE(3477)] = 105792, - [SMALL_STATE(3478)] = 105823, - [SMALL_STATE(3479)] = 105856, - [SMALL_STATE(3480)] = 105887, - [SMALL_STATE(3481)] = 105912, - [SMALL_STATE(3482)] = 105933, - [SMALL_STATE(3483)] = 105958, - [SMALL_STATE(3484)] = 105989, - [SMALL_STATE(3485)] = 106010, - [SMALL_STATE(3486)] = 106031, - [SMALL_STATE(3487)] = 106062, - [SMALL_STATE(3488)] = 106091, - [SMALL_STATE(3489)] = 106112, - [SMALL_STATE(3490)] = 106133, - [SMALL_STATE(3491)] = 106164, - [SMALL_STATE(3492)] = 106184, - [SMALL_STATE(3493)] = 106204, - [SMALL_STATE(3494)] = 106230, - [SMALL_STATE(3495)] = 106258, - [SMALL_STATE(3496)] = 106286, - [SMALL_STATE(3497)] = 106312, - [SMALL_STATE(3498)] = 106332, - [SMALL_STATE(3499)] = 106360, - [SMALL_STATE(3500)] = 106388, - [SMALL_STATE(3501)] = 106410, - [SMALL_STATE(3502)] = 106438, - [SMALL_STATE(3503)] = 106466, - [SMALL_STATE(3504)] = 106494, - [SMALL_STATE(3505)] = 106522, - [SMALL_STATE(3506)] = 106542, - [SMALL_STATE(3507)] = 106570, - [SMALL_STATE(3508)] = 106598, - [SMALL_STATE(3509)] = 106618, - [SMALL_STATE(3510)] = 106646, - [SMALL_STATE(3511)] = 106674, - [SMALL_STATE(3512)] = 106694, - [SMALL_STATE(3513)] = 106722, - [SMALL_STATE(3514)] = 106750, - [SMALL_STATE(3515)] = 106774, - [SMALL_STATE(3516)] = 106802, - [SMALL_STATE(3517)] = 106830, - [SMALL_STATE(3518)] = 106858, - [SMALL_STATE(3519)] = 106882, - [SMALL_STATE(3520)] = 106910, - [SMALL_STATE(3521)] = 106938, - [SMALL_STATE(3522)] = 106966, - [SMALL_STATE(3523)] = 106994, - [SMALL_STATE(3524)] = 107022, - [SMALL_STATE(3525)] = 107050, + [SMALL_STATE(2421)] = 75116, + [SMALL_STATE(2422)] = 75154, + [SMALL_STATE(2423)] = 75192, + [SMALL_STATE(2424)] = 75240, + [SMALL_STATE(2425)] = 75274, + [SMALL_STATE(2426)] = 75307, + [SMALL_STATE(2427)] = 75344, + [SMALL_STATE(2428)] = 75381, + [SMALL_STATE(2429)] = 75412, + [SMALL_STATE(2430)] = 75451, + [SMALL_STATE(2431)] = 75490, + [SMALL_STATE(2432)] = 75521, + [SMALL_STATE(2433)] = 75554, + [SMALL_STATE(2434)] = 75585, + [SMALL_STATE(2435)] = 75616, + [SMALL_STATE(2436)] = 75649, + [SMALL_STATE(2437)] = 75690, + [SMALL_STATE(2438)] = 75721, + [SMALL_STATE(2439)] = 75752, + [SMALL_STATE(2440)] = 75785, + [SMALL_STATE(2441)] = 75818, + [SMALL_STATE(2442)] = 75851, + [SMALL_STATE(2443)] = 75896, + [SMALL_STATE(2444)] = 75929, + [SMALL_STATE(2445)] = 75964, + [SMALL_STATE(2446)] = 75999, + [SMALL_STATE(2447)] = 76044, + [SMALL_STATE(2448)] = 76089, + [SMALL_STATE(2449)] = 76134, + [SMALL_STATE(2450)] = 76165, + [SMALL_STATE(2451)] = 76204, + [SMALL_STATE(2452)] = 76235, + [SMALL_STATE(2453)] = 76266, + [SMALL_STATE(2454)] = 76311, + [SMALL_STATE(2455)] = 76346, + [SMALL_STATE(2456)] = 76383, + [SMALL_STATE(2457)] = 76414, + [SMALL_STATE(2458)] = 76449, + [SMALL_STATE(2459)] = 76480, + [SMALL_STATE(2460)] = 76511, + [SMALL_STATE(2461)] = 76542, + [SMALL_STATE(2462)] = 76577, + [SMALL_STATE(2463)] = 76614, + [SMALL_STATE(2464)] = 76644, + [SMALL_STATE(2465)] = 76678, + [SMALL_STATE(2466)] = 76730, + [SMALL_STATE(2467)] = 76760, + [SMALL_STATE(2468)] = 76790, + [SMALL_STATE(2469)] = 76826, + [SMALL_STATE(2470)] = 76856, + [SMALL_STATE(2471)] = 76892, + [SMALL_STATE(2472)] = 76926, + [SMALL_STATE(2473)] = 76956, + [SMALL_STATE(2474)] = 76986, + [SMALL_STATE(2475)] = 77016, + [SMALL_STATE(2476)] = 77052, + [SMALL_STATE(2477)] = 77084, + [SMALL_STATE(2478)] = 77114, + [SMALL_STATE(2479)] = 77144, + [SMALL_STATE(2480)] = 77174, + [SMALL_STATE(2481)] = 77204, + [SMALL_STATE(2482)] = 77234, + [SMALL_STATE(2483)] = 77266, + [SMALL_STATE(2484)] = 77316, + [SMALL_STATE(2485)] = 77348, + [SMALL_STATE(2486)] = 77384, + [SMALL_STATE(2487)] = 77414, + [SMALL_STATE(2488)] = 77450, + [SMALL_STATE(2489)] = 77484, + [SMALL_STATE(2490)] = 77536, + [SMALL_STATE(2491)] = 77568, + [SMALL_STATE(2492)] = 77604, + [SMALL_STATE(2493)] = 77634, + [SMALL_STATE(2494)] = 77672, + [SMALL_STATE(2495)] = 77710, + [SMALL_STATE(2496)] = 77748, + [SMALL_STATE(2497)] = 77782, + [SMALL_STATE(2498)] = 77814, + [SMALL_STATE(2499)] = 77850, + [SMALL_STATE(2500)] = 77890, + [SMALL_STATE(2501)] = 77928, + [SMALL_STATE(2502)] = 77960, + [SMALL_STATE(2503)] = 77992, + [SMALL_STATE(2504)] = 78024, + [SMALL_STATE(2505)] = 78056, + [SMALL_STATE(2506)] = 78086, + [SMALL_STATE(2507)] = 78116, + [SMALL_STATE(2508)] = 78168, + [SMALL_STATE(2509)] = 78202, + [SMALL_STATE(2510)] = 78254, + [SMALL_STATE(2511)] = 78292, + [SMALL_STATE(2512)] = 78324, + [SMALL_STATE(2513)] = 78356, + [SMALL_STATE(2514)] = 78388, + [SMALL_STATE(2515)] = 78420, + [SMALL_STATE(2516)] = 78452, + [SMALL_STATE(2517)] = 78481, + [SMALL_STATE(2518)] = 78512, + [SMALL_STATE(2519)] = 78541, + [SMALL_STATE(2520)] = 78570, + [SMALL_STATE(2521)] = 78599, + [SMALL_STATE(2522)] = 78628, + [SMALL_STATE(2523)] = 78657, + [SMALL_STATE(2524)] = 78694, + [SMALL_STATE(2525)] = 78725, + [SMALL_STATE(2526)] = 78754, + [SMALL_STATE(2527)] = 78783, + [SMALL_STATE(2528)] = 78820, + [SMALL_STATE(2529)] = 78851, + [SMALL_STATE(2530)] = 78886, + [SMALL_STATE(2531)] = 78915, + [SMALL_STATE(2532)] = 78944, + [SMALL_STATE(2533)] = 78973, + [SMALL_STATE(2534)] = 79002, + [SMALL_STATE(2535)] = 79039, + [SMALL_STATE(2536)] = 79070, + [SMALL_STATE(2537)] = 79107, + [SMALL_STATE(2538)] = 79138, + [SMALL_STATE(2539)] = 79175, + [SMALL_STATE(2540)] = 79206, + [SMALL_STATE(2541)] = 79235, + [SMALL_STATE(2542)] = 79266, + [SMALL_STATE(2543)] = 79303, + [SMALL_STATE(2544)] = 79334, + [SMALL_STATE(2545)] = 79365, + [SMALL_STATE(2546)] = 79396, + [SMALL_STATE(2547)] = 79429, + [SMALL_STATE(2548)] = 79460, + [SMALL_STATE(2549)] = 79491, + [SMALL_STATE(2550)] = 79522, + [SMALL_STATE(2551)] = 79559, + [SMALL_STATE(2552)] = 79590, + [SMALL_STATE(2553)] = 79619, + [SMALL_STATE(2554)] = 79650, + [SMALL_STATE(2555)] = 79683, + [SMALL_STATE(2556)] = 79720, + [SMALL_STATE(2557)] = 79757, + [SMALL_STATE(2558)] = 79790, + [SMALL_STATE(2559)] = 79819, + [SMALL_STATE(2560)] = 79856, + [SMALL_STATE(2561)] = 79885, + [SMALL_STATE(2562)] = 79916, + [SMALL_STATE(2563)] = 79953, + [SMALL_STATE(2564)] = 79982, + [SMALL_STATE(2565)] = 80011, + [SMALL_STATE(2566)] = 80044, + [SMALL_STATE(2567)] = 80077, + [SMALL_STATE(2568)] = 80106, + [SMALL_STATE(2569)] = 80137, + [SMALL_STATE(2570)] = 80174, + [SMALL_STATE(2571)] = 80205, + [SMALL_STATE(2572)] = 80234, + [SMALL_STATE(2573)] = 80265, + [SMALL_STATE(2574)] = 80302, + [SMALL_STATE(2575)] = 80333, + [SMALL_STATE(2576)] = 80362, + [SMALL_STATE(2577)] = 80393, + [SMALL_STATE(2578)] = 80424, + [SMALL_STATE(2579)] = 80455, + [SMALL_STATE(2580)] = 80486, + [SMALL_STATE(2581)] = 80517, + [SMALL_STATE(2582)] = 80546, + [SMALL_STATE(2583)] = 80577, + [SMALL_STATE(2584)] = 80605, + [SMALL_STATE(2585)] = 80641, + [SMALL_STATE(2586)] = 80669, + [SMALL_STATE(2587)] = 80697, + [SMALL_STATE(2588)] = 80727, + [SMALL_STATE(2589)] = 80755, + [SMALL_STATE(2590)] = 80785, + [SMALL_STATE(2591)] = 80829, + [SMALL_STATE(2592)] = 80865, + [SMALL_STATE(2593)] = 80893, + [SMALL_STATE(2594)] = 80937, + [SMALL_STATE(2595)] = 80967, + [SMALL_STATE(2596)] = 80997, + [SMALL_STATE(2597)] = 81027, + [SMALL_STATE(2598)] = 81055, + [SMALL_STATE(2599)] = 81099, + [SMALL_STATE(2600)] = 81143, + [SMALL_STATE(2601)] = 81173, + [SMALL_STATE(2602)] = 81205, + [SMALL_STATE(2603)] = 81235, + [SMALL_STATE(2604)] = 81263, + [SMALL_STATE(2605)] = 81293, + [SMALL_STATE(2606)] = 81321, + [SMALL_STATE(2607)] = 81351, + [SMALL_STATE(2608)] = 81381, + [SMALL_STATE(2609)] = 81409, + [SMALL_STATE(2610)] = 81439, + [SMALL_STATE(2611)] = 81473, + [SMALL_STATE(2612)] = 81507, + [SMALL_STATE(2613)] = 81537, + [SMALL_STATE(2614)] = 81573, + [SMALL_STATE(2615)] = 81609, + [SMALL_STATE(2616)] = 81637, + [SMALL_STATE(2617)] = 81673, + [SMALL_STATE(2618)] = 81705, + [SMALL_STATE(2619)] = 81737, + [SMALL_STATE(2620)] = 81769, + [SMALL_STATE(2621)] = 81801, + [SMALL_STATE(2622)] = 81833, + [SMALL_STATE(2623)] = 81863, + [SMALL_STATE(2624)] = 81901, + [SMALL_STATE(2625)] = 81929, + [SMALL_STATE(2626)] = 81965, + [SMALL_STATE(2627)] = 82001, + [SMALL_STATE(2628)] = 82029, + [SMALL_STATE(2629)] = 82073, + [SMALL_STATE(2630)] = 82109, + [SMALL_STATE(2631)] = 82141, + [SMALL_STATE(2632)] = 82169, + [SMALL_STATE(2633)] = 82197, + [SMALL_STATE(2634)] = 82225, + [SMALL_STATE(2635)] = 82253, + [SMALL_STATE(2636)] = 82281, + [SMALL_STATE(2637)] = 82317, + [SMALL_STATE(2638)] = 82345, + [SMALL_STATE(2639)] = 82381, + [SMALL_STATE(2640)] = 82411, + [SMALL_STATE(2641)] = 82447, + [SMALL_STATE(2642)] = 82483, + [SMALL_STATE(2643)] = 82519, + [SMALL_STATE(2644)] = 82551, + [SMALL_STATE(2645)] = 82582, + [SMALL_STATE(2646)] = 82613, + [SMALL_STATE(2647)] = 82646, + [SMALL_STATE(2648)] = 82679, + [SMALL_STATE(2649)] = 82710, + [SMALL_STATE(2650)] = 82743, + [SMALL_STATE(2651)] = 82780, + [SMALL_STATE(2652)] = 82813, + [SMALL_STATE(2653)] = 82838, + [SMALL_STATE(2654)] = 82869, + [SMALL_STATE(2655)] = 82900, + [SMALL_STATE(2656)] = 82933, + [SMALL_STATE(2657)] = 82964, + [SMALL_STATE(2658)] = 82995, + [SMALL_STATE(2659)] = 83022, + [SMALL_STATE(2660)] = 83049, + [SMALL_STATE(2661)] = 83078, + [SMALL_STATE(2662)] = 83107, + [SMALL_STATE(2663)] = 83138, + [SMALL_STATE(2664)] = 83169, + [SMALL_STATE(2665)] = 83196, + [SMALL_STATE(2666)] = 83227, + [SMALL_STATE(2667)] = 83258, + [SMALL_STATE(2668)] = 83289, + [SMALL_STATE(2669)] = 83316, + [SMALL_STATE(2670)] = 83343, + [SMALL_STATE(2671)] = 83370, + [SMALL_STATE(2672)] = 83401, + [SMALL_STATE(2673)] = 83432, + [SMALL_STATE(2674)] = 83463, + [SMALL_STATE(2675)] = 83492, + [SMALL_STATE(2676)] = 83521, + [SMALL_STATE(2677)] = 83554, + [SMALL_STATE(2678)] = 83587, + [SMALL_STATE(2679)] = 83618, + [SMALL_STATE(2680)] = 83649, + [SMALL_STATE(2681)] = 83676, + [SMALL_STATE(2682)] = 83707, + [SMALL_STATE(2683)] = 83738, + [SMALL_STATE(2684)] = 83765, + [SMALL_STATE(2685)] = 83796, + [SMALL_STATE(2686)] = 83827, + [SMALL_STATE(2687)] = 83856, + [SMALL_STATE(2688)] = 83885, + [SMALL_STATE(2689)] = 83916, + [SMALL_STATE(2690)] = 83947, + [SMALL_STATE(2691)] = 83974, + [SMALL_STATE(2692)] = 84001, + [SMALL_STATE(2693)] = 84028, + [SMALL_STATE(2694)] = 84055, + [SMALL_STATE(2695)] = 84086, + [SMALL_STATE(2696)] = 84117, + [SMALL_STATE(2697)] = 84146, + [SMALL_STATE(2698)] = 84175, + [SMALL_STATE(2699)] = 84208, + [SMALL_STATE(2700)] = 84241, + [SMALL_STATE(2701)] = 84272, + [SMALL_STATE(2702)] = 84303, + [SMALL_STATE(2703)] = 84330, + [SMALL_STATE(2704)] = 84357, + [SMALL_STATE(2705)] = 84388, + [SMALL_STATE(2706)] = 84415, + [SMALL_STATE(2707)] = 84442, + [SMALL_STATE(2708)] = 84469, + [SMALL_STATE(2709)] = 84504, + [SMALL_STATE(2710)] = 84531, + [SMALL_STATE(2711)] = 84566, + [SMALL_STATE(2712)] = 84593, + [SMALL_STATE(2713)] = 84620, + [SMALL_STATE(2714)] = 84647, + [SMALL_STATE(2715)] = 84678, + [SMALL_STATE(2716)] = 84709, + [SMALL_STATE(2717)] = 84734, + [SMALL_STATE(2718)] = 84765, + [SMALL_STATE(2719)] = 84794, + [SMALL_STATE(2720)] = 84819, + [SMALL_STATE(2721)] = 84844, + [SMALL_STATE(2722)] = 84873, + [SMALL_STATE(2723)] = 84900, + [SMALL_STATE(2724)] = 84927, + [SMALL_STATE(2725)] = 84956, + [SMALL_STATE(2726)] = 84981, + [SMALL_STATE(2727)] = 85010, + [SMALL_STATE(2728)] = 85035, + [SMALL_STATE(2729)] = 85062, + [SMALL_STATE(2730)] = 85093, + [SMALL_STATE(2731)] = 85120, + [SMALL_STATE(2732)] = 85153, + [SMALL_STATE(2733)] = 85178, + [SMALL_STATE(2734)] = 85203, + [SMALL_STATE(2735)] = 85230, + [SMALL_STATE(2736)] = 85259, + [SMALL_STATE(2737)] = 85288, + [SMALL_STATE(2738)] = 85319, + [SMALL_STATE(2739)] = 85344, + [SMALL_STATE(2740)] = 85371, + [SMALL_STATE(2741)] = 85402, + [SMALL_STATE(2742)] = 85429, + [SMALL_STATE(2743)] = 85456, + [SMALL_STATE(2744)] = 85485, + [SMALL_STATE(2745)] = 85514, + [SMALL_STATE(2746)] = 85539, + [SMALL_STATE(2747)] = 85564, + [SMALL_STATE(2748)] = 85597, + [SMALL_STATE(2749)] = 85624, + [SMALL_STATE(2750)] = 85651, + [SMALL_STATE(2751)] = 85680, + [SMALL_STATE(2752)] = 85709, + [SMALL_STATE(2753)] = 85740, + [SMALL_STATE(2754)] = 85771, + [SMALL_STATE(2755)] = 85798, + [SMALL_STATE(2756)] = 85829, + [SMALL_STATE(2757)] = 85856, + [SMALL_STATE(2758)] = 85887, + [SMALL_STATE(2759)] = 85918, + [SMALL_STATE(2760)] = 85949, + [SMALL_STATE(2761)] = 85982, + [SMALL_STATE(2762)] = 86015, + [SMALL_STATE(2763)] = 86046, + [SMALL_STATE(2764)] = 86075, + [SMALL_STATE(2765)] = 86106, + [SMALL_STATE(2766)] = 86141, + [SMALL_STATE(2767)] = 86172, + [SMALL_STATE(2768)] = 86207, + [SMALL_STATE(2769)] = 86240, + [SMALL_STATE(2770)] = 86267, + [SMALL_STATE(2771)] = 86300, + [SMALL_STATE(2772)] = 86333, + [SMALL_STATE(2773)] = 86360, + [SMALL_STATE(2774)] = 86387, + [SMALL_STATE(2775)] = 86414, + [SMALL_STATE(2776)] = 86445, + [SMALL_STATE(2777)] = 86480, + [SMALL_STATE(2778)] = 86511, + [SMALL_STATE(2779)] = 86538, + [SMALL_STATE(2780)] = 86565, + [SMALL_STATE(2781)] = 86592, + [SMALL_STATE(2782)] = 86625, + [SMALL_STATE(2783)] = 86658, + [SMALL_STATE(2784)] = 86685, + [SMALL_STATE(2785)] = 86716, + [SMALL_STATE(2786)] = 86747, + [SMALL_STATE(2787)] = 86774, + [SMALL_STATE(2788)] = 86805, + [SMALL_STATE(2789)] = 86832, + [SMALL_STATE(2790)] = 86861, + [SMALL_STATE(2791)] = 86892, + [SMALL_STATE(2792)] = 86921, + [SMALL_STATE(2793)] = 86954, + [SMALL_STATE(2794)] = 86989, + [SMALL_STATE(2795)] = 87024, + [SMALL_STATE(2796)] = 87059, + [SMALL_STATE(2797)] = 87094, + [SMALL_STATE(2798)] = 87129, + [SMALL_STATE(2799)] = 87164, + [SMALL_STATE(2800)] = 87197, + [SMALL_STATE(2801)] = 87228, + [SMALL_STATE(2802)] = 87259, + [SMALL_STATE(2803)] = 87290, + [SMALL_STATE(2804)] = 87319, + [SMALL_STATE(2805)] = 87350, + [SMALL_STATE(2806)] = 87381, + [SMALL_STATE(2807)] = 87412, + [SMALL_STATE(2808)] = 87443, + [SMALL_STATE(2809)] = 87476, + [SMALL_STATE(2810)] = 87509, + [SMALL_STATE(2811)] = 87536, + [SMALL_STATE(2812)] = 87567, + [SMALL_STATE(2813)] = 87594, + [SMALL_STATE(2814)] = 87621, + [SMALL_STATE(2815)] = 87652, + [SMALL_STATE(2816)] = 87683, + [SMALL_STATE(2817)] = 87714, + [SMALL_STATE(2818)] = 87742, + [SMALL_STATE(2819)] = 87788, + [SMALL_STATE(2820)] = 87818, + [SMALL_STATE(2821)] = 87846, + [SMALL_STATE(2822)] = 87872, + [SMALL_STATE(2823)] = 87902, + [SMALL_STATE(2824)] = 87934, + [SMALL_STATE(2825)] = 87962, + [SMALL_STATE(2826)] = 87990, + [SMALL_STATE(2827)] = 88020, + [SMALL_STATE(2828)] = 88050, + [SMALL_STATE(2829)] = 88082, + [SMALL_STATE(2830)] = 88134, + [SMALL_STATE(2831)] = 88174, + [SMALL_STATE(2832)] = 88226, + [SMALL_STATE(2833)] = 88256, + [SMALL_STATE(2834)] = 88282, + [SMALL_STATE(2835)] = 88308, + [SMALL_STATE(2836)] = 88332, + [SMALL_STATE(2837)] = 88364, + [SMALL_STATE(2838)] = 88394, + [SMALL_STATE(2839)] = 88424, + [SMALL_STATE(2840)] = 88454, + [SMALL_STATE(2841)] = 88484, + [SMALL_STATE(2842)] = 88514, + [SMALL_STATE(2843)] = 88538, + [SMALL_STATE(2844)] = 88564, + [SMALL_STATE(2845)] = 88594, + [SMALL_STATE(2846)] = 88622, + [SMALL_STATE(2847)] = 88648, + [SMALL_STATE(2848)] = 88672, + [SMALL_STATE(2849)] = 88698, + [SMALL_STATE(2850)] = 88728, + [SMALL_STATE(2851)] = 88754, + [SMALL_STATE(2852)] = 88780, + [SMALL_STATE(2853)] = 88806, + [SMALL_STATE(2854)] = 88834, + [SMALL_STATE(2855)] = 88860, + [SMALL_STATE(2856)] = 88888, + [SMALL_STATE(2857)] = 88918, + [SMALL_STATE(2858)] = 88948, + [SMALL_STATE(2859)] = 88972, + [SMALL_STATE(2860)] = 88998, + [SMALL_STATE(2861)] = 89024, + [SMALL_STATE(2862)] = 89050, + [SMALL_STATE(2863)] = 89074, + [SMALL_STATE(2864)] = 89100, + [SMALL_STATE(2865)] = 89144, + [SMALL_STATE(2866)] = 89170, + [SMALL_STATE(2867)] = 89200, + [SMALL_STATE(2868)] = 89230, + [SMALL_STATE(2869)] = 89282, + [SMALL_STATE(2870)] = 89312, + [SMALL_STATE(2871)] = 89336, + [SMALL_STATE(2872)] = 89366, + [SMALL_STATE(2873)] = 89392, + [SMALL_STATE(2874)] = 89444, + [SMALL_STATE(2875)] = 89470, + [SMALL_STATE(2876)] = 89494, + [SMALL_STATE(2877)] = 89520, + [SMALL_STATE(2878)] = 89546, + [SMALL_STATE(2879)] = 89574, + [SMALL_STATE(2880)] = 89626, + [SMALL_STATE(2881)] = 89654, + [SMALL_STATE(2882)] = 89680, + [SMALL_STATE(2883)] = 89708, + [SMALL_STATE(2884)] = 89734, + [SMALL_STATE(2885)] = 89758, + [SMALL_STATE(2886)] = 89790, + [SMALL_STATE(2887)] = 89820, + [SMALL_STATE(2888)] = 89844, + [SMALL_STATE(2889)] = 89868, + [SMALL_STATE(2890)] = 89892, + [SMALL_STATE(2891)] = 89944, + [SMALL_STATE(2892)] = 89974, + [SMALL_STATE(2893)] = 90004, + [SMALL_STATE(2894)] = 90034, + [SMALL_STATE(2895)] = 90064, + [SMALL_STATE(2896)] = 90094, + [SMALL_STATE(2897)] = 90146, + [SMALL_STATE(2898)] = 90172, + [SMALL_STATE(2899)] = 90198, + [SMALL_STATE(2900)] = 90250, + [SMALL_STATE(2901)] = 90280, + [SMALL_STATE(2902)] = 90332, + [SMALL_STATE(2903)] = 90358, + [SMALL_STATE(2904)] = 90386, + [SMALL_STATE(2905)] = 90416, + [SMALL_STATE(2906)] = 90442, + [SMALL_STATE(2907)] = 90468, + [SMALL_STATE(2908)] = 90494, + [SMALL_STATE(2909)] = 90518, + [SMALL_STATE(2910)] = 90544, + [SMALL_STATE(2911)] = 90570, + [SMALL_STATE(2912)] = 90596, + [SMALL_STATE(2913)] = 90620, + [SMALL_STATE(2914)] = 90672, + [SMALL_STATE(2915)] = 90700, + [SMALL_STATE(2916)] = 90728, + [SMALL_STATE(2917)] = 90758, + [SMALL_STATE(2918)] = 90783, + [SMALL_STATE(2919)] = 90808, + [SMALL_STATE(2920)] = 90833, + [SMALL_STATE(2921)] = 90858, + [SMALL_STATE(2922)] = 90883, + [SMALL_STATE(2923)] = 90914, + [SMALL_STATE(2924)] = 90939, + [SMALL_STATE(2925)] = 90964, + [SMALL_STATE(2926)] = 90989, + [SMALL_STATE(2927)] = 91014, + [SMALL_STATE(2928)] = 91043, + [SMALL_STATE(2929)] = 91072, + [SMALL_STATE(2930)] = 91103, + [SMALL_STATE(2931)] = 91128, + [SMALL_STATE(2932)] = 91171, + [SMALL_STATE(2933)] = 91196, + [SMALL_STATE(2934)] = 91221, + [SMALL_STATE(2935)] = 91246, + [SMALL_STATE(2936)] = 91271, + [SMALL_STATE(2937)] = 91300, + [SMALL_STATE(2938)] = 91325, + [SMALL_STATE(2939)] = 91352, + [SMALL_STATE(2940)] = 91381, + [SMALL_STATE(2941)] = 91406, + [SMALL_STATE(2942)] = 91435, + [SMALL_STATE(2943)] = 91460, + [SMALL_STATE(2944)] = 91485, + [SMALL_STATE(2945)] = 91512, + [SMALL_STATE(2946)] = 91535, + [SMALL_STATE(2947)] = 91560, + [SMALL_STATE(2948)] = 91585, + [SMALL_STATE(2949)] = 91614, + [SMALL_STATE(2950)] = 91639, + [SMALL_STATE(2951)] = 91664, + [SMALL_STATE(2952)] = 91689, + [SMALL_STATE(2953)] = 91718, + [SMALL_STATE(2954)] = 91743, + [SMALL_STATE(2955)] = 91774, + [SMALL_STATE(2956)] = 91799, + [SMALL_STATE(2957)] = 91828, + [SMALL_STATE(2958)] = 91857, + [SMALL_STATE(2959)] = 91882, + [SMALL_STATE(2960)] = 91907, + [SMALL_STATE(2961)] = 91936, + [SMALL_STATE(2962)] = 91961, + [SMALL_STATE(2963)] = 91986, + [SMALL_STATE(2964)] = 92015, + [SMALL_STATE(2965)] = 92040, + [SMALL_STATE(2966)] = 92065, + [SMALL_STATE(2967)] = 92102, + [SMALL_STATE(2968)] = 92127, + [SMALL_STATE(2969)] = 92152, + [SMALL_STATE(2970)] = 92177, + [SMALL_STATE(2971)] = 92202, + [SMALL_STATE(2972)] = 92231, + [SMALL_STATE(2973)] = 92260, + [SMALL_STATE(2974)] = 92285, + [SMALL_STATE(2975)] = 92310, + [SMALL_STATE(2976)] = 92335, + [SMALL_STATE(2977)] = 92360, + [SMALL_STATE(2978)] = 92387, + [SMALL_STATE(2979)] = 92416, + [SMALL_STATE(2980)] = 92443, + [SMALL_STATE(2981)] = 92472, + [SMALL_STATE(2982)] = 92497, + [SMALL_STATE(2983)] = 92522, + [SMALL_STATE(2984)] = 92547, + [SMALL_STATE(2985)] = 92576, + [SMALL_STATE(2986)] = 92605, + [SMALL_STATE(2987)] = 92634, + [SMALL_STATE(2988)] = 92663, + [SMALL_STATE(2989)] = 92688, + [SMALL_STATE(2990)] = 92717, + [SMALL_STATE(2991)] = 92746, + [SMALL_STATE(2992)] = 92775, + [SMALL_STATE(2993)] = 92800, + [SMALL_STATE(2994)] = 92829, + [SMALL_STATE(2995)] = 92854, + [SMALL_STATE(2996)] = 92879, + [SMALL_STATE(2997)] = 92908, + [SMALL_STATE(2998)] = 92937, + [SMALL_STATE(2999)] = 92962, + [SMALL_STATE(3000)] = 92989, + [SMALL_STATE(3001)] = 93014, + [SMALL_STATE(3002)] = 93039, + [SMALL_STATE(3003)] = 93068, + [SMALL_STATE(3004)] = 93093, + [SMALL_STATE(3005)] = 93118, + [SMALL_STATE(3006)] = 93155, + [SMALL_STATE(3007)] = 93184, + [SMALL_STATE(3008)] = 93209, + [SMALL_STATE(3009)] = 93234, + [SMALL_STATE(3010)] = 93259, + [SMALL_STATE(3011)] = 93284, + [SMALL_STATE(3012)] = 93309, + [SMALL_STATE(3013)] = 93338, + [SMALL_STATE(3014)] = 93367, + [SMALL_STATE(3015)] = 93396, + [SMALL_STATE(3016)] = 93423, + [SMALL_STATE(3017)] = 93452, + [SMALL_STATE(3018)] = 93477, + [SMALL_STATE(3019)] = 93502, + [SMALL_STATE(3020)] = 93527, + [SMALL_STATE(3021)] = 93552, + [SMALL_STATE(3022)] = 93577, + [SMALL_STATE(3023)] = 93602, + [SMALL_STATE(3024)] = 93625, + [SMALL_STATE(3025)] = 93654, + [SMALL_STATE(3026)] = 93683, + [SMALL_STATE(3027)] = 93712, + [SMALL_STATE(3028)] = 93737, + [SMALL_STATE(3029)] = 93762, + [SMALL_STATE(3030)] = 93787, + [SMALL_STATE(3031)] = 93816, + [SMALL_STATE(3032)] = 93841, + [SMALL_STATE(3033)] = 93870, + [SMALL_STATE(3034)] = 93899, + [SMALL_STATE(3035)] = 93924, + [SMALL_STATE(3036)] = 93949, + [SMALL_STATE(3037)] = 93978, + [SMALL_STATE(3038)] = 94003, + [SMALL_STATE(3039)] = 94028, + [SMALL_STATE(3040)] = 94053, + [SMALL_STATE(3041)] = 94080, + [SMALL_STATE(3042)] = 94105, + [SMALL_STATE(3043)] = 94130, + [SMALL_STATE(3044)] = 94155, + [SMALL_STATE(3045)] = 94184, + [SMALL_STATE(3046)] = 94209, + [SMALL_STATE(3047)] = 94234, + [SMALL_STATE(3048)] = 94271, + [SMALL_STATE(3049)] = 94296, + [SMALL_STATE(3050)] = 94321, + [SMALL_STATE(3051)] = 94346, + [SMALL_STATE(3052)] = 94371, + [SMALL_STATE(3053)] = 94400, + [SMALL_STATE(3054)] = 94425, + [SMALL_STATE(3055)] = 94450, + [SMALL_STATE(3056)] = 94475, + [SMALL_STATE(3057)] = 94500, + [SMALL_STATE(3058)] = 94529, + [SMALL_STATE(3059)] = 94554, + [SMALL_STATE(3060)] = 94579, + [SMALL_STATE(3061)] = 94610, + [SMALL_STATE(3062)] = 94635, + [SMALL_STATE(3063)] = 94660, + [SMALL_STATE(3064)] = 94685, + [SMALL_STATE(3065)] = 94724, + [SMALL_STATE(3066)] = 94753, + [SMALL_STATE(3067)] = 94778, + [SMALL_STATE(3068)] = 94807, + [SMALL_STATE(3069)] = 94832, + [SMALL_STATE(3070)] = 94857, + [SMALL_STATE(3071)] = 94886, + [SMALL_STATE(3072)] = 94915, + [SMALL_STATE(3073)] = 94958, + [SMALL_STATE(3074)] = 94983, + [SMALL_STATE(3075)] = 95008, + [SMALL_STATE(3076)] = 95037, + [SMALL_STATE(3077)] = 95061, + [SMALL_STATE(3078)] = 95085, + [SMALL_STATE(3079)] = 95109, + [SMALL_STATE(3080)] = 95133, + [SMALL_STATE(3081)] = 95157, + [SMALL_STATE(3082)] = 95181, + [SMALL_STATE(3083)] = 95205, + [SMALL_STATE(3084)] = 95229, + [SMALL_STATE(3085)] = 95269, + [SMALL_STATE(3086)] = 95293, + [SMALL_STATE(3087)] = 95317, + [SMALL_STATE(3088)] = 95339, + [SMALL_STATE(3089)] = 95363, + [SMALL_STATE(3090)] = 95387, + [SMALL_STATE(3091)] = 95411, + [SMALL_STATE(3092)] = 95435, + [SMALL_STATE(3093)] = 95459, + [SMALL_STATE(3094)] = 95483, + [SMALL_STATE(3095)] = 95507, + [SMALL_STATE(3096)] = 95531, + [SMALL_STATE(3097)] = 95555, + [SMALL_STATE(3098)] = 95577, + [SMALL_STATE(3099)] = 95599, + [SMALL_STATE(3100)] = 95621, + [SMALL_STATE(3101)] = 95643, + [SMALL_STATE(3102)] = 95665, + [SMALL_STATE(3103)] = 95689, + [SMALL_STATE(3104)] = 95713, + [SMALL_STATE(3105)] = 95737, + [SMALL_STATE(3106)] = 95771, + [SMALL_STATE(3107)] = 95795, + [SMALL_STATE(3108)] = 95819, + [SMALL_STATE(3109)] = 95843, + [SMALL_STATE(3110)] = 95867, + [SMALL_STATE(3111)] = 95891, + [SMALL_STATE(3112)] = 95915, + [SMALL_STATE(3113)] = 95951, + [SMALL_STATE(3114)] = 95985, + [SMALL_STATE(3115)] = 96019, + [SMALL_STATE(3116)] = 96053, + [SMALL_STATE(3117)] = 96075, + [SMALL_STATE(3118)] = 96099, + [SMALL_STATE(3119)] = 96123, + [SMALL_STATE(3120)] = 96145, + [SMALL_STATE(3121)] = 96169, + [SMALL_STATE(3122)] = 96193, + [SMALL_STATE(3123)] = 96229, + [SMALL_STATE(3124)] = 96251, + [SMALL_STATE(3125)] = 96275, + [SMALL_STATE(3126)] = 96297, + [SMALL_STATE(3127)] = 96321, + [SMALL_STATE(3128)] = 96367, + [SMALL_STATE(3129)] = 96389, + [SMALL_STATE(3130)] = 96413, + [SMALL_STATE(3131)] = 96453, + [SMALL_STATE(3132)] = 96477, + [SMALL_STATE(3133)] = 96501, + [SMALL_STATE(3134)] = 96525, + [SMALL_STATE(3135)] = 96549, + [SMALL_STATE(3136)] = 96591, + [SMALL_STATE(3137)] = 96637, + [SMALL_STATE(3138)] = 96659, + [SMALL_STATE(3139)] = 96683, + [SMALL_STATE(3140)] = 96705, + [SMALL_STATE(3141)] = 96751, + [SMALL_STATE(3142)] = 96797, + [SMALL_STATE(3143)] = 96821, + [SMALL_STATE(3144)] = 96861, + [SMALL_STATE(3145)] = 96885, + [SMALL_STATE(3146)] = 96909, + [SMALL_STATE(3147)] = 96949, + [SMALL_STATE(3148)] = 96973, + [SMALL_STATE(3149)] = 96997, + [SMALL_STATE(3150)] = 97021, + [SMALL_STATE(3151)] = 97043, + [SMALL_STATE(3152)] = 97089, + [SMALL_STATE(3153)] = 97113, + [SMALL_STATE(3154)] = 97137, + [SMALL_STATE(3155)] = 97161, + [SMALL_STATE(3156)] = 97185, + [SMALL_STATE(3157)] = 97225, + [SMALL_STATE(3158)] = 97249, + [SMALL_STATE(3159)] = 97273, + [SMALL_STATE(3160)] = 97297, + [SMALL_STATE(3161)] = 97321, + [SMALL_STATE(3162)] = 97345, + [SMALL_STATE(3163)] = 97369, + [SMALL_STATE(3164)] = 97415, + [SMALL_STATE(3165)] = 97441, + [SMALL_STATE(3166)] = 97487, + [SMALL_STATE(3167)] = 97509, + [SMALL_STATE(3168)] = 97533, + [SMALL_STATE(3169)] = 97575, + [SMALL_STATE(3170)] = 97599, + [SMALL_STATE(3171)] = 97623, + [SMALL_STATE(3172)] = 97649, + [SMALL_STATE(3173)] = 97673, + [SMALL_STATE(3174)] = 97695, + [SMALL_STATE(3175)] = 97719, + [SMALL_STATE(3176)] = 97743, + [SMALL_STATE(3177)] = 97767, + [SMALL_STATE(3178)] = 97791, + [SMALL_STATE(3179)] = 97815, + [SMALL_STATE(3180)] = 97839, + [SMALL_STATE(3181)] = 97879, + [SMALL_STATE(3182)] = 97903, + [SMALL_STATE(3183)] = 97949, + [SMALL_STATE(3184)] = 97973, + [SMALL_STATE(3185)] = 97997, + [SMALL_STATE(3186)] = 98043, + [SMALL_STATE(3187)] = 98083, + [SMALL_STATE(3188)] = 98107, + [SMALL_STATE(3189)] = 98131, + [SMALL_STATE(3190)] = 98155, + [SMALL_STATE(3191)] = 98179, + [SMALL_STATE(3192)] = 98203, + [SMALL_STATE(3193)] = 98231, + [SMALL_STATE(3194)] = 98259, + [SMALL_STATE(3195)] = 98287, + [SMALL_STATE(3196)] = 98315, + [SMALL_STATE(3197)] = 98343, + [SMALL_STATE(3198)] = 98371, + [SMALL_STATE(3199)] = 98399, + [SMALL_STATE(3200)] = 98427, + [SMALL_STATE(3201)] = 98455, + [SMALL_STATE(3202)] = 98483, + [SMALL_STATE(3203)] = 98511, + [SMALL_STATE(3204)] = 98539, + [SMALL_STATE(3205)] = 98563, + [SMALL_STATE(3206)] = 98587, + [SMALL_STATE(3207)] = 98611, + [SMALL_STATE(3208)] = 98635, + [SMALL_STATE(3209)] = 98659, + [SMALL_STATE(3210)] = 98683, + [SMALL_STATE(3211)] = 98707, + [SMALL_STATE(3212)] = 98731, + [SMALL_STATE(3213)] = 98777, + [SMALL_STATE(3214)] = 98801, + [SMALL_STATE(3215)] = 98825, + [SMALL_STATE(3216)] = 98846, + [SMALL_STATE(3217)] = 98869, + [SMALL_STATE(3218)] = 98890, + [SMALL_STATE(3219)] = 98911, + [SMALL_STATE(3220)] = 98950, + [SMALL_STATE(3221)] = 98987, + [SMALL_STATE(3222)] = 99010, + [SMALL_STATE(3223)] = 99031, + [SMALL_STATE(3224)] = 99052, + [SMALL_STATE(3225)] = 99075, + [SMALL_STATE(3226)] = 99096, + [SMALL_STATE(3227)] = 99117, + [SMALL_STATE(3228)] = 99138, + [SMALL_STATE(3229)] = 99161, + [SMALL_STATE(3230)] = 99200, + [SMALL_STATE(3231)] = 99221, + [SMALL_STATE(3232)] = 99242, + [SMALL_STATE(3233)] = 99263, + [SMALL_STATE(3234)] = 99284, + [SMALL_STATE(3235)] = 99305, + [SMALL_STATE(3236)] = 99332, + [SMALL_STATE(3237)] = 99369, + [SMALL_STATE(3238)] = 99392, + [SMALL_STATE(3239)] = 99413, + [SMALL_STATE(3240)] = 99434, + [SMALL_STATE(3241)] = 99455, + [SMALL_STATE(3242)] = 99492, + [SMALL_STATE(3243)] = 99513, + [SMALL_STATE(3244)] = 99534, + [SMALL_STATE(3245)] = 99555, + [SMALL_STATE(3246)] = 99576, + [SMALL_STATE(3247)] = 99597, + [SMALL_STATE(3248)] = 99620, + [SMALL_STATE(3249)] = 99657, + [SMALL_STATE(3250)] = 99684, + [SMALL_STATE(3251)] = 99705, + [SMALL_STATE(3252)] = 99726, + [SMALL_STATE(3253)] = 99747, + [SMALL_STATE(3254)] = 99768, + [SMALL_STATE(3255)] = 99791, + [SMALL_STATE(3256)] = 99816, + [SMALL_STATE(3257)] = 99837, + [SMALL_STATE(3258)] = 99858, + [SMALL_STATE(3259)] = 99879, + [SMALL_STATE(3260)] = 99900, + [SMALL_STATE(3261)] = 99939, + [SMALL_STATE(3262)] = 99962, + [SMALL_STATE(3263)] = 99983, + [SMALL_STATE(3264)] = 100004, + [SMALL_STATE(3265)] = 100025, + [SMALL_STATE(3266)] = 100046, + [SMALL_STATE(3267)] = 100067, + [SMALL_STATE(3268)] = 100094, + [SMALL_STATE(3269)] = 100115, + [SMALL_STATE(3270)] = 100136, + [SMALL_STATE(3271)] = 100175, + [SMALL_STATE(3272)] = 100198, + [SMALL_STATE(3273)] = 100237, + [SMALL_STATE(3274)] = 100258, + [SMALL_STATE(3275)] = 100285, + [SMALL_STATE(3276)] = 100324, + [SMALL_STATE(3277)] = 100345, + [SMALL_STATE(3278)] = 100366, + [SMALL_STATE(3279)] = 100387, + [SMALL_STATE(3280)] = 100410, + [SMALL_STATE(3281)] = 100447, + [SMALL_STATE(3282)] = 100474, + [SMALL_STATE(3283)] = 100511, + [SMALL_STATE(3284)] = 100532, + [SMALL_STATE(3285)] = 100553, + [SMALL_STATE(3286)] = 100580, + [SMALL_STATE(3287)] = 100607, + [SMALL_STATE(3288)] = 100634, + [SMALL_STATE(3289)] = 100661, + [SMALL_STATE(3290)] = 100688, + [SMALL_STATE(3291)] = 100715, + [SMALL_STATE(3292)] = 100738, + [SMALL_STATE(3293)] = 100765, + [SMALL_STATE(3294)] = 100792, + [SMALL_STATE(3295)] = 100819, + [SMALL_STATE(3296)] = 100846, + [SMALL_STATE(3297)] = 100867, + [SMALL_STATE(3298)] = 100894, + [SMALL_STATE(3299)] = 100915, + [SMALL_STATE(3300)] = 100936, + [SMALL_STATE(3301)] = 100957, + [SMALL_STATE(3302)] = 100978, + [SMALL_STATE(3303)] = 101017, + [SMALL_STATE(3304)] = 101054, + [SMALL_STATE(3305)] = 101077, + [SMALL_STATE(3306)] = 101098, + [SMALL_STATE(3307)] = 101119, + [SMALL_STATE(3308)] = 101140, + [SMALL_STATE(3309)] = 101161, + [SMALL_STATE(3310)] = 101182, + [SMALL_STATE(3311)] = 101203, + [SMALL_STATE(3312)] = 101224, + [SMALL_STATE(3313)] = 101245, + [SMALL_STATE(3314)] = 101266, + [SMALL_STATE(3315)] = 101289, + [SMALL_STATE(3316)] = 101316, + [SMALL_STATE(3317)] = 101337, + [SMALL_STATE(3318)] = 101368, + [SMALL_STATE(3319)] = 101397, + [SMALL_STATE(3320)] = 101418, + [SMALL_STATE(3321)] = 101439, + [SMALL_STATE(3322)] = 101466, + [SMALL_STATE(3323)] = 101493, + [SMALL_STATE(3324)] = 101514, + [SMALL_STATE(3325)] = 101541, + [SMALL_STATE(3326)] = 101564, + [SMALL_STATE(3327)] = 101587, + [SMALL_STATE(3328)] = 101610, + [SMALL_STATE(3329)] = 101633, + [SMALL_STATE(3330)] = 101670, + [SMALL_STATE(3331)] = 101693, + [SMALL_STATE(3332)] = 101716, + [SMALL_STATE(3333)] = 101739, + [SMALL_STATE(3334)] = 101776, + [SMALL_STATE(3335)] = 101813, + [SMALL_STATE(3336)] = 101850, + [SMALL_STATE(3337)] = 101887, + [SMALL_STATE(3338)] = 101924, + [SMALL_STATE(3339)] = 101945, + [SMALL_STATE(3340)] = 101966, + [SMALL_STATE(3341)] = 101989, + [SMALL_STATE(3342)] = 102012, + [SMALL_STATE(3343)] = 102035, + [SMALL_STATE(3344)] = 102058, + [SMALL_STATE(3345)] = 102081, + [SMALL_STATE(3346)] = 102104, + [SMALL_STATE(3347)] = 102127, + [SMALL_STATE(3348)] = 102150, + [SMALL_STATE(3349)] = 102173, + [SMALL_STATE(3350)] = 102196, + [SMALL_STATE(3351)] = 102219, + [SMALL_STATE(3352)] = 102242, + [SMALL_STATE(3353)] = 102269, + [SMALL_STATE(3354)] = 102292, + [SMALL_STATE(3355)] = 102319, + [SMALL_STATE(3356)] = 102346, + [SMALL_STATE(3357)] = 102378, + [SMALL_STATE(3358)] = 102402, + [SMALL_STATE(3359)] = 102436, + [SMALL_STATE(3360)] = 102462, + [SMALL_STATE(3361)] = 102484, + [SMALL_STATE(3362)] = 102510, + [SMALL_STATE(3363)] = 102532, + [SMALL_STATE(3364)] = 102558, + [SMALL_STATE(3365)] = 102584, + [SMALL_STATE(3366)] = 102610, + [SMALL_STATE(3367)] = 102646, + [SMALL_STATE(3368)] = 102672, + [SMALL_STATE(3369)] = 102704, + [SMALL_STATE(3370)] = 102730, + [SMALL_STATE(3371)] = 102764, + [SMALL_STATE(3372)] = 102796, + [SMALL_STATE(3373)] = 102818, + [SMALL_STATE(3374)] = 102840, + [SMALL_STATE(3375)] = 102866, + [SMALL_STATE(3376)] = 102890, + [SMALL_STATE(3377)] = 102914, + [SMALL_STATE(3378)] = 102946, + [SMALL_STATE(3379)] = 102968, + [SMALL_STATE(3380)] = 102990, + [SMALL_STATE(3381)] = 103014, + [SMALL_STATE(3382)] = 103036, + [SMALL_STATE(3383)] = 103066, + [SMALL_STATE(3384)] = 103100, + [SMALL_STATE(3385)] = 103136, + [SMALL_STATE(3386)] = 103164, + [SMALL_STATE(3387)] = 103190, + [SMALL_STATE(3388)] = 103216, + [SMALL_STATE(3389)] = 103246, + [SMALL_STATE(3390)] = 103270, + [SMALL_STATE(3391)] = 103294, + [SMALL_STATE(3392)] = 103330, + [SMALL_STATE(3393)] = 103356, + [SMALL_STATE(3394)] = 103380, + [SMALL_STATE(3395)] = 103412, + [SMALL_STATE(3396)] = 103434, + [SMALL_STATE(3397)] = 103470, + [SMALL_STATE(3398)] = 103494, + [SMALL_STATE(3399)] = 103520, + [SMALL_STATE(3400)] = 103544, + [SMALL_STATE(3401)] = 103570, + [SMALL_STATE(3402)] = 103594, + [SMALL_STATE(3403)] = 103627, + [SMALL_STATE(3404)] = 103658, + [SMALL_STATE(3405)] = 103681, + [SMALL_STATE(3406)] = 103704, + [SMALL_STATE(3407)] = 103737, + [SMALL_STATE(3408)] = 103770, + [SMALL_STATE(3409)] = 103803, + [SMALL_STATE(3410)] = 103836, + [SMALL_STATE(3411)] = 103867, + [SMALL_STATE(3412)] = 103900, + [SMALL_STATE(3413)] = 103933, + [SMALL_STATE(3414)] = 103966, + [SMALL_STATE(3415)] = 103991, + [SMALL_STATE(3416)] = 104024, + [SMALL_STATE(3417)] = 104057, + [SMALL_STATE(3418)] = 104088, + [SMALL_STATE(3419)] = 104121, + [SMALL_STATE(3420)] = 104154, + [SMALL_STATE(3421)] = 104185, + [SMALL_STATE(3422)] = 104218, + [SMALL_STATE(3423)] = 104251, + [SMALL_STATE(3424)] = 104282, + [SMALL_STATE(3425)] = 104315, + [SMALL_STATE(3426)] = 104348, + [SMALL_STATE(3427)] = 104379, + [SMALL_STATE(3428)] = 104412, + [SMALL_STATE(3429)] = 104445, + [SMALL_STATE(3430)] = 104476, + [SMALL_STATE(3431)] = 104509, + [SMALL_STATE(3432)] = 104542, + [SMALL_STATE(3433)] = 104573, + [SMALL_STATE(3434)] = 104606, + [SMALL_STATE(3435)] = 104639, + [SMALL_STATE(3436)] = 104670, + [SMALL_STATE(3437)] = 104701, + [SMALL_STATE(3438)] = 104732, + [SMALL_STATE(3439)] = 104763, + [SMALL_STATE(3440)] = 104794, + [SMALL_STATE(3441)] = 104825, + [SMALL_STATE(3442)] = 104856, + [SMALL_STATE(3443)] = 104879, + [SMALL_STATE(3444)] = 104910, + [SMALL_STATE(3445)] = 104943, + [SMALL_STATE(3446)] = 104976, + [SMALL_STATE(3447)] = 105007, + [SMALL_STATE(3448)] = 105028, + [SMALL_STATE(3449)] = 105059, + [SMALL_STATE(3450)] = 105080, + [SMALL_STATE(3451)] = 105101, + [SMALL_STATE(3452)] = 105132, + [SMALL_STATE(3453)] = 105167, + [SMALL_STATE(3454)] = 105198, + [SMALL_STATE(3455)] = 105223, + [SMALL_STATE(3456)] = 105248, + [SMALL_STATE(3457)] = 105269, + [SMALL_STATE(3458)] = 105292, + [SMALL_STATE(3459)] = 105317, + [SMALL_STATE(3460)] = 105342, + [SMALL_STATE(3461)] = 105363, + [SMALL_STATE(3462)] = 105384, + [SMALL_STATE(3463)] = 105409, + [SMALL_STATE(3464)] = 105430, + [SMALL_STATE(3465)] = 105463, + [SMALL_STATE(3466)] = 105484, + [SMALL_STATE(3467)] = 105517, + [SMALL_STATE(3468)] = 105548, + [SMALL_STATE(3469)] = 105569, + [SMALL_STATE(3470)] = 105602, + [SMALL_STATE(3471)] = 105635, + [SMALL_STATE(3472)] = 105658, + [SMALL_STATE(3473)] = 105691, + [SMALL_STATE(3474)] = 105714, + [SMALL_STATE(3475)] = 105735, + [SMALL_STATE(3476)] = 105760, + [SMALL_STATE(3477)] = 105791, + [SMALL_STATE(3478)] = 105812, + [SMALL_STATE(3479)] = 105845, + [SMALL_STATE(3480)] = 105866, + [SMALL_STATE(3481)] = 105889, + [SMALL_STATE(3482)] = 105922, + [SMALL_STATE(3483)] = 105943, + [SMALL_STATE(3484)] = 105968, + [SMALL_STATE(3485)] = 106003, + [SMALL_STATE(3486)] = 106036, + [SMALL_STATE(3487)] = 106069, + [SMALL_STATE(3488)] = 106102, + [SMALL_STATE(3489)] = 106131, + [SMALL_STATE(3490)] = 106164, + [SMALL_STATE(3491)] = 106197, + [SMALL_STATE(3492)] = 106228, + [SMALL_STATE(3493)] = 106256, + [SMALL_STATE(3494)] = 106276, + [SMALL_STATE(3495)] = 106304, + [SMALL_STATE(3496)] = 106324, + [SMALL_STATE(3497)] = 106352, + [SMALL_STATE(3498)] = 106374, + [SMALL_STATE(3499)] = 106402, + [SMALL_STATE(3500)] = 106430, + [SMALL_STATE(3501)] = 106458, + [SMALL_STATE(3502)] = 106484, + [SMALL_STATE(3503)] = 106504, + [SMALL_STATE(3504)] = 106532, + [SMALL_STATE(3505)] = 106552, + [SMALL_STATE(3506)] = 106578, + [SMALL_STATE(3507)] = 106602, + [SMALL_STATE(3508)] = 106630, + [SMALL_STATE(3509)] = 106658, + [SMALL_STATE(3510)] = 106686, + [SMALL_STATE(3511)] = 106714, + [SMALL_STATE(3512)] = 106734, + [SMALL_STATE(3513)] = 106752, + [SMALL_STATE(3514)] = 106772, + [SMALL_STATE(3515)] = 106800, + [SMALL_STATE(3516)] = 106822, + [SMALL_STATE(3517)] = 106842, + [SMALL_STATE(3518)] = 106870, + [SMALL_STATE(3519)] = 106898, + [SMALL_STATE(3520)] = 106926, + [SMALL_STATE(3521)] = 106946, + [SMALL_STATE(3522)] = 106974, + [SMALL_STATE(3523)] = 107002, + [SMALL_STATE(3524)] = 107030, + [SMALL_STATE(3525)] = 107056, [SMALL_STATE(3526)] = 107078, - [SMALL_STATE(3527)] = 107108, - [SMALL_STATE(3528)] = 107136, - [SMALL_STATE(3529)] = 107156, - [SMALL_STATE(3530)] = 107184, - [SMALL_STATE(3531)] = 107212, - [SMALL_STATE(3532)] = 107240, - [SMALL_STATE(3533)] = 107258, - [SMALL_STATE(3534)] = 107286, - [SMALL_STATE(3535)] = 107308, - [SMALL_STATE(3536)] = 107336, - [SMALL_STATE(3537)] = 107358, - [SMALL_STATE(3538)] = 107386, - [SMALL_STATE(3539)] = 107406, - [SMALL_STATE(3540)] = 107434, - [SMALL_STATE(3541)] = 107462, - [SMALL_STATE(3542)] = 107482, - [SMALL_STATE(3543)] = 107502, - [SMALL_STATE(3544)] = 107530, - [SMALL_STATE(3545)] = 107558, - [SMALL_STATE(3546)] = 107586, - [SMALL_STATE(3547)] = 107606, - [SMALL_STATE(3548)] = 107634, - [SMALL_STATE(3549)] = 107656, - [SMALL_STATE(3550)] = 107676, - [SMALL_STATE(3551)] = 107704, - [SMALL_STATE(3552)] = 107732, - [SMALL_STATE(3553)] = 107760, - [SMALL_STATE(3554)] = 107782, - [SMALL_STATE(3555)] = 107806, - [SMALL_STATE(3556)] = 107836, - [SMALL_STATE(3557)] = 107864, + [SMALL_STATE(3527)] = 107100, + [SMALL_STATE(3528)] = 107120, + [SMALL_STATE(3529)] = 107148, + [SMALL_STATE(3530)] = 107176, + [SMALL_STATE(3531)] = 107204, + [SMALL_STATE(3532)] = 107228, + [SMALL_STATE(3533)] = 107248, + [SMALL_STATE(3534)] = 107268, + [SMALL_STATE(3535)] = 107296, + [SMALL_STATE(3536)] = 107324, + [SMALL_STATE(3537)] = 107352, + [SMALL_STATE(3538)] = 107370, + [SMALL_STATE(3539)] = 107398, + [SMALL_STATE(3540)] = 107418, + [SMALL_STATE(3541)] = 107446, + [SMALL_STATE(3542)] = 107474, + [SMALL_STATE(3543)] = 107496, + [SMALL_STATE(3544)] = 107520, + [SMALL_STATE(3545)] = 107548, + [SMALL_STATE(3546)] = 107576, + [SMALL_STATE(3547)] = 107604, + [SMALL_STATE(3548)] = 107626, + [SMALL_STATE(3549)] = 107654, + [SMALL_STATE(3550)] = 107682, + [SMALL_STATE(3551)] = 107710, + [SMALL_STATE(3552)] = 107738, + [SMALL_STATE(3553)] = 107766, + [SMALL_STATE(3554)] = 107788, + [SMALL_STATE(3555)] = 107816, + [SMALL_STATE(3556)] = 107846, + [SMALL_STATE(3557)] = 107868, [SMALL_STATE(3558)] = 107892, [SMALL_STATE(3559)] = 107920, - [SMALL_STATE(3560)] = 107944, - [SMALL_STATE(3561)] = 107964, - [SMALL_STATE(3562)] = 107984, - [SMALL_STATE(3563)] = 108010, - [SMALL_STATE(3564)] = 108032, - [SMALL_STATE(3565)] = 108056, - [SMALL_STATE(3566)] = 108078, - [SMALL_STATE(3567)] = 108106, - [SMALL_STATE(3568)] = 108134, - [SMALL_STATE(3569)] = 108154, - [SMALL_STATE(3570)] = 108176, - [SMALL_STATE(3571)] = 108194, - [SMALL_STATE(3572)] = 108218, - [SMALL_STATE(3573)] = 108244, - [SMALL_STATE(3574)] = 108269, - [SMALL_STATE(3575)] = 108294, - [SMALL_STATE(3576)] = 108315, - [SMALL_STATE(3577)] = 108340, - [SMALL_STATE(3578)] = 108363, - [SMALL_STATE(3579)] = 108382, - [SMALL_STATE(3580)] = 108401, - [SMALL_STATE(3581)] = 108426, - [SMALL_STATE(3582)] = 108455, - [SMALL_STATE(3583)] = 108474, - [SMALL_STATE(3584)] = 108493, - [SMALL_STATE(3585)] = 108512, - [SMALL_STATE(3586)] = 108531, - [SMALL_STATE(3587)] = 108556, - [SMALL_STATE(3588)] = 108581, - [SMALL_STATE(3589)] = 108600, - [SMALL_STATE(3590)] = 108621, - [SMALL_STATE(3591)] = 108642, - [SMALL_STATE(3592)] = 108667, - [SMALL_STATE(3593)] = 108690, - [SMALL_STATE(3594)] = 108711, - [SMALL_STATE(3595)] = 108736, - [SMALL_STATE(3596)] = 108757, - [SMALL_STATE(3597)] = 108776, - [SMALL_STATE(3598)] = 108795, - [SMALL_STATE(3599)] = 108822, - [SMALL_STATE(3600)] = 108853, - [SMALL_STATE(3601)] = 108876, - [SMALL_STATE(3602)] = 108897, - [SMALL_STATE(3603)] = 108922, - [SMALL_STATE(3604)] = 108949, - [SMALL_STATE(3605)] = 108970, - [SMALL_STATE(3606)] = 108995, - [SMALL_STATE(3607)] = 109022, - [SMALL_STATE(3608)] = 109047, - [SMALL_STATE(3609)] = 109074, - [SMALL_STATE(3610)] = 109097, - [SMALL_STATE(3611)] = 109122, - [SMALL_STATE(3612)] = 109145, - [SMALL_STATE(3613)] = 109170, - [SMALL_STATE(3614)] = 109195, - [SMALL_STATE(3615)] = 109214, - [SMALL_STATE(3616)] = 109239, - [SMALL_STATE(3617)] = 109258, - [SMALL_STATE(3618)] = 109277, - [SMALL_STATE(3619)] = 109296, - [SMALL_STATE(3620)] = 109321, - [SMALL_STATE(3621)] = 109348, - [SMALL_STATE(3622)] = 109375, - [SMALL_STATE(3623)] = 109397, - [SMALL_STATE(3624)] = 109425, - [SMALL_STATE(3625)] = 109447, - [SMALL_STATE(3626)] = 109467, - [SMALL_STATE(3627)] = 109485, - [SMALL_STATE(3628)] = 109513, - [SMALL_STATE(3629)] = 109541, - [SMALL_STATE(3630)] = 109569, - [SMALL_STATE(3631)] = 109591, - [SMALL_STATE(3632)] = 109613, - [SMALL_STATE(3633)] = 109639, - [SMALL_STATE(3634)] = 109667, - [SMALL_STATE(3635)] = 109687, - [SMALL_STATE(3636)] = 109707, - [SMALL_STATE(3637)] = 109727, - [SMALL_STATE(3638)] = 109749, - [SMALL_STATE(3639)] = 109767, - [SMALL_STATE(3640)] = 109793, - [SMALL_STATE(3641)] = 109817, - [SMALL_STATE(3642)] = 109845, - [SMALL_STATE(3643)] = 109873, - [SMALL_STATE(3644)] = 109897, - [SMALL_STATE(3645)] = 109917, - [SMALL_STATE(3646)] = 109935, - [SMALL_STATE(3647)] = 109963, - [SMALL_STATE(3648)] = 109989, - [SMALL_STATE(3649)] = 110017, - [SMALL_STATE(3650)] = 110035, - [SMALL_STATE(3651)] = 110063, - [SMALL_STATE(3652)] = 110091, - [SMALL_STATE(3653)] = 110109, - [SMALL_STATE(3654)] = 110133, - [SMALL_STATE(3655)] = 110161, - [SMALL_STATE(3656)] = 110187, - [SMALL_STATE(3657)] = 110215, - [SMALL_STATE(3658)] = 110243, - [SMALL_STATE(3659)] = 110271, - [SMALL_STATE(3660)] = 110299, - [SMALL_STATE(3661)] = 110323, - [SMALL_STATE(3662)] = 110341, - [SMALL_STATE(3663)] = 110369, - [SMALL_STATE(3664)] = 110387, - [SMALL_STATE(3665)] = 110413, - [SMALL_STATE(3666)] = 110441, - [SMALL_STATE(3667)] = 110469, - [SMALL_STATE(3668)] = 110495, - [SMALL_STATE(3669)] = 110521, - [SMALL_STATE(3670)] = 110547, - [SMALL_STATE(3671)] = 110575, - [SMALL_STATE(3672)] = 110603, - [SMALL_STATE(3673)] = 110629, - [SMALL_STATE(3674)] = 110655, - [SMALL_STATE(3675)] = 110683, - [SMALL_STATE(3676)] = 110711, - [SMALL_STATE(3677)] = 110737, - [SMALL_STATE(3678)] = 110759, - [SMALL_STATE(3679)] = 110781, - [SMALL_STATE(3680)] = 110803, - [SMALL_STATE(3681)] = 110825, - [SMALL_STATE(3682)] = 110847, - [SMALL_STATE(3683)] = 110873, - [SMALL_STATE(3684)] = 110891, - [SMALL_STATE(3685)] = 110917, - [SMALL_STATE(3686)] = 110945, - [SMALL_STATE(3687)] = 110973, - [SMALL_STATE(3688)] = 110995, - [SMALL_STATE(3689)] = 111023, - [SMALL_STATE(3690)] = 111051, - [SMALL_STATE(3691)] = 111075, - [SMALL_STATE(3692)] = 111103, - [SMALL_STATE(3693)] = 111129, - [SMALL_STATE(3694)] = 111155, - [SMALL_STATE(3695)] = 111173, - [SMALL_STATE(3696)] = 111201, - [SMALL_STATE(3697)] = 111227, - [SMALL_STATE(3698)] = 111255, - [SMALL_STATE(3699)] = 111279, - [SMALL_STATE(3700)] = 111303, - [SMALL_STATE(3701)] = 111325, - [SMALL_STATE(3702)] = 111353, - [SMALL_STATE(3703)] = 111381, - [SMALL_STATE(3704)] = 111405, - [SMALL_STATE(3705)] = 111429, - [SMALL_STATE(3706)] = 111447, - [SMALL_STATE(3707)] = 111475, - [SMALL_STATE(3708)] = 111503, - [SMALL_STATE(3709)] = 111531, - [SMALL_STATE(3710)] = 111559, - [SMALL_STATE(3711)] = 111585, - [SMALL_STATE(3712)] = 111611, - [SMALL_STATE(3713)] = 111637, - [SMALL_STATE(3714)] = 111665, - [SMALL_STATE(3715)] = 111685, - [SMALL_STATE(3716)] = 111705, - [SMALL_STATE(3717)] = 111733, - [SMALL_STATE(3718)] = 111751, - [SMALL_STATE(3719)] = 111777, - [SMALL_STATE(3720)] = 111803, - [SMALL_STATE(3721)] = 111831, - [SMALL_STATE(3722)] = 111859, - [SMALL_STATE(3723)] = 111887, - [SMALL_STATE(3724)] = 111907, - [SMALL_STATE(3725)] = 111935, - [SMALL_STATE(3726)] = 111963, - [SMALL_STATE(3727)] = 111981, - [SMALL_STATE(3728)] = 112009, - [SMALL_STATE(3729)] = 112037, - [SMALL_STATE(3730)] = 112065, - [SMALL_STATE(3731)] = 112083, - [SMALL_STATE(3732)] = 112108, - [SMALL_STATE(3733)] = 112131, - [SMALL_STATE(3734)] = 112152, - [SMALL_STATE(3735)] = 112175, - [SMALL_STATE(3736)] = 112198, - [SMALL_STATE(3737)] = 112221, - [SMALL_STATE(3738)] = 112244, - [SMALL_STATE(3739)] = 112265, - [SMALL_STATE(3740)] = 112282, - [SMALL_STATE(3741)] = 112299, - [SMALL_STATE(3742)] = 112320, - [SMALL_STATE(3743)] = 112341, - [SMALL_STATE(3744)] = 112366, - [SMALL_STATE(3745)] = 112391, - [SMALL_STATE(3746)] = 112416, - [SMALL_STATE(3747)] = 112437, - [SMALL_STATE(3748)] = 112460, - [SMALL_STATE(3749)] = 112483, - [SMALL_STATE(3750)] = 112506, - [SMALL_STATE(3751)] = 112527, - [SMALL_STATE(3752)] = 112548, - [SMALL_STATE(3753)] = 112571, - [SMALL_STATE(3754)] = 112590, - [SMALL_STATE(3755)] = 112609, - [SMALL_STATE(3756)] = 112630, - [SMALL_STATE(3757)] = 112651, - [SMALL_STATE(3758)] = 112672, - [SMALL_STATE(3759)] = 112691, - [SMALL_STATE(3760)] = 112710, - [SMALL_STATE(3761)] = 112733, - [SMALL_STATE(3762)] = 112756, - [SMALL_STATE(3763)] = 112781, - [SMALL_STATE(3764)] = 112804, - [SMALL_STATE(3765)] = 112827, - [SMALL_STATE(3766)] = 112848, - [SMALL_STATE(3767)] = 112869, - [SMALL_STATE(3768)] = 112894, - [SMALL_STATE(3769)] = 112913, - [SMALL_STATE(3770)] = 112932, - [SMALL_STATE(3771)] = 112957, - [SMALL_STATE(3772)] = 112980, - [SMALL_STATE(3773)] = 113005, - [SMALL_STATE(3774)] = 113030, - [SMALL_STATE(3775)] = 113053, - [SMALL_STATE(3776)] = 113078, - [SMALL_STATE(3777)] = 113103, - [SMALL_STATE(3778)] = 113128, - [SMALL_STATE(3779)] = 113151, - [SMALL_STATE(3780)] = 113176, - [SMALL_STATE(3781)] = 113197, - [SMALL_STATE(3782)] = 113220, - [SMALL_STATE(3783)] = 113243, - [SMALL_STATE(3784)] = 113266, - [SMALL_STATE(3785)] = 113291, - [SMALL_STATE(3786)] = 113314, - [SMALL_STATE(3787)] = 113339, - [SMALL_STATE(3788)] = 113362, - [SMALL_STATE(3789)] = 113385, - [SMALL_STATE(3790)] = 113408, - [SMALL_STATE(3791)] = 113431, - [SMALL_STATE(3792)] = 113446, - [SMALL_STATE(3793)] = 113471, - [SMALL_STATE(3794)] = 113490, - [SMALL_STATE(3795)] = 113515, - [SMALL_STATE(3796)] = 113530, - [SMALL_STATE(3797)] = 113545, - [SMALL_STATE(3798)] = 113566, - [SMALL_STATE(3799)] = 113581, - [SMALL_STATE(3800)] = 113596, - [SMALL_STATE(3801)] = 113611, - [SMALL_STATE(3802)] = 113630, - [SMALL_STATE(3803)] = 113655, - [SMALL_STATE(3804)] = 113674, - [SMALL_STATE(3805)] = 113699, - [SMALL_STATE(3806)] = 113722, - [SMALL_STATE(3807)] = 113745, - [SMALL_STATE(3808)] = 113766, - [SMALL_STATE(3809)] = 113787, - [SMALL_STATE(3810)] = 113808, - [SMALL_STATE(3811)] = 113827, - [SMALL_STATE(3812)] = 113848, - [SMALL_STATE(3813)] = 113867, - [SMALL_STATE(3814)] = 113886, - [SMALL_STATE(3815)] = 113907, - [SMALL_STATE(3816)] = 113932, - [SMALL_STATE(3817)] = 113957, - [SMALL_STATE(3818)] = 113980, - [SMALL_STATE(3819)] = 114001, - [SMALL_STATE(3820)] = 114024, - [SMALL_STATE(3821)] = 114049, - [SMALL_STATE(3822)] = 114072, - [SMALL_STATE(3823)] = 114095, - [SMALL_STATE(3824)] = 114118, - [SMALL_STATE(3825)] = 114141, - [SMALL_STATE(3826)] = 114164, - [SMALL_STATE(3827)] = 114187, - [SMALL_STATE(3828)] = 114210, - [SMALL_STATE(3829)] = 114233, - [SMALL_STATE(3830)] = 114256, - [SMALL_STATE(3831)] = 114279, - [SMALL_STATE(3832)] = 114302, - [SMALL_STATE(3833)] = 114325, - [SMALL_STATE(3834)] = 114348, - [SMALL_STATE(3835)] = 114371, - [SMALL_STATE(3836)] = 114394, - [SMALL_STATE(3837)] = 114419, - [SMALL_STATE(3838)] = 114442, - [SMALL_STATE(3839)] = 114463, - [SMALL_STATE(3840)] = 114486, - [SMALL_STATE(3841)] = 114509, - [SMALL_STATE(3842)] = 114532, - [SMALL_STATE(3843)] = 114555, - [SMALL_STATE(3844)] = 114576, - [SMALL_STATE(3845)] = 114597, - [SMALL_STATE(3846)] = 114616, - [SMALL_STATE(3847)] = 114637, - [SMALL_STATE(3848)] = 114662, - [SMALL_STATE(3849)] = 114683, - [SMALL_STATE(3850)] = 114702, - [SMALL_STATE(3851)] = 114721, - [SMALL_STATE(3852)] = 114742, - [SMALL_STATE(3853)] = 114761, - [SMALL_STATE(3854)] = 114782, - [SMALL_STATE(3855)] = 114799, - [SMALL_STATE(3856)] = 114816, - [SMALL_STATE(3857)] = 114833, - [SMALL_STATE(3858)] = 114856, - [SMALL_STATE(3859)] = 114879, - [SMALL_STATE(3860)] = 114902, - [SMALL_STATE(3861)] = 114923, - [SMALL_STATE(3862)] = 114944, - [SMALL_STATE(3863)] = 114965, - [SMALL_STATE(3864)] = 114986, - [SMALL_STATE(3865)] = 115009, - [SMALL_STATE(3866)] = 115034, - [SMALL_STATE(3867)] = 115059, - [SMALL_STATE(3868)] = 115084, - [SMALL_STATE(3869)] = 115105, - [SMALL_STATE(3870)] = 115126, - [SMALL_STATE(3871)] = 115147, - [SMALL_STATE(3872)] = 115166, - [SMALL_STATE(3873)] = 115187, - [SMALL_STATE(3874)] = 115206, - [SMALL_STATE(3875)] = 115227, - [SMALL_STATE(3876)] = 115246, - [SMALL_STATE(3877)] = 115271, - [SMALL_STATE(3878)] = 115296, - [SMALL_STATE(3879)] = 115321, - [SMALL_STATE(3880)] = 115340, - [SMALL_STATE(3881)] = 115361, - [SMALL_STATE(3882)] = 115386, - [SMALL_STATE(3883)] = 115411, - [SMALL_STATE(3884)] = 115430, - [SMALL_STATE(3885)] = 115446, - [SMALL_STATE(3886)] = 115466, - [SMALL_STATE(3887)] = 115486, - [SMALL_STATE(3888)] = 115508, - [SMALL_STATE(3889)] = 115522, - [SMALL_STATE(3890)] = 115538, - [SMALL_STATE(3891)] = 115554, - [SMALL_STATE(3892)] = 115568, - [SMALL_STATE(3893)] = 115588, - [SMALL_STATE(3894)] = 115610, - [SMALL_STATE(3895)] = 115624, - [SMALL_STATE(3896)] = 115638, - [SMALL_STATE(3897)] = 115660, - [SMALL_STATE(3898)] = 115682, - [SMALL_STATE(3899)] = 115696, - [SMALL_STATE(3900)] = 115718, - [SMALL_STATE(3901)] = 115734, - [SMALL_STATE(3902)] = 115754, - [SMALL_STATE(3903)] = 115772, - [SMALL_STATE(3904)] = 115790, - [SMALL_STATE(3905)] = 115806, - [SMALL_STATE(3906)] = 115828, - [SMALL_STATE(3907)] = 115850, - [SMALL_STATE(3908)] = 115872, - [SMALL_STATE(3909)] = 115888, - [SMALL_STATE(3910)] = 115904, - [SMALL_STATE(3911)] = 115926, - [SMALL_STATE(3912)] = 115946, - [SMALL_STATE(3913)] = 115966, - [SMALL_STATE(3914)] = 115988, - [SMALL_STATE(3915)] = 116004, - [SMALL_STATE(3916)] = 116026, - [SMALL_STATE(3917)] = 116044, - [SMALL_STATE(3918)] = 116066, - [SMALL_STATE(3919)] = 116084, - [SMALL_STATE(3920)] = 116100, - [SMALL_STATE(3921)] = 116122, - [SMALL_STATE(3922)] = 116138, - [SMALL_STATE(3923)] = 116158, - [SMALL_STATE(3924)] = 116174, - [SMALL_STATE(3925)] = 116192, - [SMALL_STATE(3926)] = 116210, - [SMALL_STATE(3927)] = 116226, - [SMALL_STATE(3928)] = 116246, - [SMALL_STATE(3929)] = 116266, - [SMALL_STATE(3930)] = 116282, - [SMALL_STATE(3931)] = 116302, - [SMALL_STATE(3932)] = 116318, - [SMALL_STATE(3933)] = 116338, - [SMALL_STATE(3934)] = 116360, - [SMALL_STATE(3935)] = 116380, - [SMALL_STATE(3936)] = 116396, - [SMALL_STATE(3937)] = 116412, - [SMALL_STATE(3938)] = 116432, - [SMALL_STATE(3939)] = 116452, - [SMALL_STATE(3940)] = 116474, - [SMALL_STATE(3941)] = 116496, - [SMALL_STATE(3942)] = 116516, - [SMALL_STATE(3943)] = 116534, - [SMALL_STATE(3944)] = 116554, - [SMALL_STATE(3945)] = 116574, - [SMALL_STATE(3946)] = 116594, - [SMALL_STATE(3947)] = 116610, - [SMALL_STATE(3948)] = 116626, - [SMALL_STATE(3949)] = 116642, - [SMALL_STATE(3950)] = 116658, - [SMALL_STATE(3951)] = 116674, - [SMALL_STATE(3952)] = 116692, - [SMALL_STATE(3953)] = 116706, - [SMALL_STATE(3954)] = 116724, - [SMALL_STATE(3955)] = 116744, - [SMALL_STATE(3956)] = 116764, - [SMALL_STATE(3957)] = 116786, - [SMALL_STATE(3958)] = 116808, - [SMALL_STATE(3959)] = 116826, - [SMALL_STATE(3960)] = 116844, - [SMALL_STATE(3961)] = 116866, - [SMALL_STATE(3962)] = 116886, - [SMALL_STATE(3963)] = 116902, - [SMALL_STATE(3964)] = 116920, - [SMALL_STATE(3965)] = 116936, - [SMALL_STATE(3966)] = 116956, - [SMALL_STATE(3967)] = 116976, - [SMALL_STATE(3968)] = 116998, - [SMALL_STATE(3969)] = 117018, - [SMALL_STATE(3970)] = 117038, - [SMALL_STATE(3971)] = 117056, - [SMALL_STATE(3972)] = 117072, - [SMALL_STATE(3973)] = 117088, - [SMALL_STATE(3974)] = 117104, - [SMALL_STATE(3975)] = 117124, - [SMALL_STATE(3976)] = 117146, - [SMALL_STATE(3977)] = 117166, - [SMALL_STATE(3978)] = 117186, - [SMALL_STATE(3979)] = 117208, - [SMALL_STATE(3980)] = 117228, - [SMALL_STATE(3981)] = 117250, - [SMALL_STATE(3982)] = 117272, - [SMALL_STATE(3983)] = 117294, - [SMALL_STATE(3984)] = 117312, - [SMALL_STATE(3985)] = 117330, - [SMALL_STATE(3986)] = 117348, - [SMALL_STATE(3987)] = 117368, - [SMALL_STATE(3988)] = 117390, - [SMALL_STATE(3989)] = 117412, - [SMALL_STATE(3990)] = 117430, - [SMALL_STATE(3991)] = 117446, - [SMALL_STATE(3992)] = 117466, - [SMALL_STATE(3993)] = 117488, - [SMALL_STATE(3994)] = 117504, - [SMALL_STATE(3995)] = 117526, - [SMALL_STATE(3996)] = 117544, - [SMALL_STATE(3997)] = 117564, - [SMALL_STATE(3998)] = 117582, - [SMALL_STATE(3999)] = 117602, - [SMALL_STATE(4000)] = 117622, - [SMALL_STATE(4001)] = 117642, - [SMALL_STATE(4002)] = 117656, - [SMALL_STATE(4003)] = 117674, - [SMALL_STATE(4004)] = 117694, - [SMALL_STATE(4005)] = 117714, - [SMALL_STATE(4006)] = 117734, - [SMALL_STATE(4007)] = 117754, - [SMALL_STATE(4008)] = 117768, - [SMALL_STATE(4009)] = 117788, - [SMALL_STATE(4010)] = 117808, - [SMALL_STATE(4011)] = 117828, - [SMALL_STATE(4012)] = 117848, - [SMALL_STATE(4013)] = 117868, - [SMALL_STATE(4014)] = 117888, - [SMALL_STATE(4015)] = 117910, - [SMALL_STATE(4016)] = 117926, - [SMALL_STATE(4017)] = 117942, - [SMALL_STATE(4018)] = 117958, - [SMALL_STATE(4019)] = 117974, - [SMALL_STATE(4020)] = 117996, - [SMALL_STATE(4021)] = 118016, - [SMALL_STATE(4022)] = 118038, - [SMALL_STATE(4023)] = 118060, - [SMALL_STATE(4024)] = 118082, - [SMALL_STATE(4025)] = 118098, - [SMALL_STATE(4026)] = 118118, - [SMALL_STATE(4027)] = 118138, - [SMALL_STATE(4028)] = 118158, - [SMALL_STATE(4029)] = 118180, - [SMALL_STATE(4030)] = 118198, - [SMALL_STATE(4031)] = 118214, - [SMALL_STATE(4032)] = 118234, - [SMALL_STATE(4033)] = 118252, - [SMALL_STATE(4034)] = 118272, - [SMALL_STATE(4035)] = 118294, - [SMALL_STATE(4036)] = 118312, - [SMALL_STATE(4037)] = 118332, - [SMALL_STATE(4038)] = 118352, - [SMALL_STATE(4039)] = 118370, - [SMALL_STATE(4040)] = 118388, - [SMALL_STATE(4041)] = 118410, - [SMALL_STATE(4042)] = 118432, - [SMALL_STATE(4043)] = 118452, - [SMALL_STATE(4044)] = 118470, - [SMALL_STATE(4045)] = 118488, - [SMALL_STATE(4046)] = 118510, - [SMALL_STATE(4047)] = 118532, - [SMALL_STATE(4048)] = 118554, - [SMALL_STATE(4049)] = 118573, - [SMALL_STATE(4050)] = 118586, - [SMALL_STATE(4051)] = 118599, - [SMALL_STATE(4052)] = 118618, - [SMALL_STATE(4053)] = 118631, - [SMALL_STATE(4054)] = 118644, - [SMALL_STATE(4055)] = 118657, - [SMALL_STATE(4056)] = 118672, - [SMALL_STATE(4057)] = 118687, - [SMALL_STATE(4058)] = 118702, - [SMALL_STATE(4059)] = 118717, - [SMALL_STATE(4060)] = 118736, - [SMALL_STATE(4061)] = 118749, - [SMALL_STATE(4062)] = 118764, - [SMALL_STATE(4063)] = 118779, - [SMALL_STATE(4064)] = 118792, - [SMALL_STATE(4065)] = 118807, - [SMALL_STATE(4066)] = 118824, - [SMALL_STATE(4067)] = 118841, - [SMALL_STATE(4068)] = 118854, - [SMALL_STATE(4069)] = 118867, - [SMALL_STATE(4070)] = 118880, - [SMALL_STATE(4071)] = 118893, - [SMALL_STATE(4072)] = 118908, - [SMALL_STATE(4073)] = 118923, - [SMALL_STATE(4074)] = 118938, - [SMALL_STATE(4075)] = 118953, - [SMALL_STATE(4076)] = 118968, - [SMALL_STATE(4077)] = 118981, - [SMALL_STATE(4078)] = 118998, - [SMALL_STATE(4079)] = 119011, - [SMALL_STATE(4080)] = 119026, - [SMALL_STATE(4081)] = 119039, - [SMALL_STATE(4082)] = 119052, - [SMALL_STATE(4083)] = 119065, - [SMALL_STATE(4084)] = 119078, - [SMALL_STATE(4085)] = 119097, - [SMALL_STATE(4086)] = 119110, - [SMALL_STATE(4087)] = 119123, - [SMALL_STATE(4088)] = 119138, - [SMALL_STATE(4089)] = 119155, - [SMALL_STATE(4090)] = 119170, - [SMALL_STATE(4091)] = 119183, - [SMALL_STATE(4092)] = 119196, - [SMALL_STATE(4093)] = 119215, - [SMALL_STATE(4094)] = 119228, - [SMALL_STATE(4095)] = 119241, - [SMALL_STATE(4096)] = 119254, - [SMALL_STATE(4097)] = 119269, - [SMALL_STATE(4098)] = 119288, - [SMALL_STATE(4099)] = 119301, - [SMALL_STATE(4100)] = 119314, - [SMALL_STATE(4101)] = 119329, - [SMALL_STATE(4102)] = 119342, - [SMALL_STATE(4103)] = 119357, - [SMALL_STATE(4104)] = 119376, - [SMALL_STATE(4105)] = 119391, - [SMALL_STATE(4106)] = 119406, - [SMALL_STATE(4107)] = 119421, - [SMALL_STATE(4108)] = 119436, - [SMALL_STATE(4109)] = 119449, - [SMALL_STATE(4110)] = 119464, - [SMALL_STATE(4111)] = 119477, - [SMALL_STATE(4112)] = 119490, - [SMALL_STATE(4113)] = 119505, - [SMALL_STATE(4114)] = 119520, - [SMALL_STATE(4115)] = 119539, - [SMALL_STATE(4116)] = 119554, - [SMALL_STATE(4117)] = 119569, - [SMALL_STATE(4118)] = 119584, - [SMALL_STATE(4119)] = 119599, - [SMALL_STATE(4120)] = 119614, - [SMALL_STATE(4121)] = 119629, - [SMALL_STATE(4122)] = 119644, - [SMALL_STATE(4123)] = 119659, - [SMALL_STATE(4124)] = 119674, - [SMALL_STATE(4125)] = 119689, - [SMALL_STATE(4126)] = 119704, - [SMALL_STATE(4127)] = 119723, - [SMALL_STATE(4128)] = 119738, - [SMALL_STATE(4129)] = 119757, - [SMALL_STATE(4130)] = 119770, - [SMALL_STATE(4131)] = 119789, - [SMALL_STATE(4132)] = 119808, - [SMALL_STATE(4133)] = 119827, - [SMALL_STATE(4134)] = 119844, - [SMALL_STATE(4135)] = 119861, - [SMALL_STATE(4136)] = 119878, - [SMALL_STATE(4137)] = 119891, - [SMALL_STATE(4138)] = 119904, - [SMALL_STATE(4139)] = 119923, - [SMALL_STATE(4140)] = 119940, - [SMALL_STATE(4141)] = 119953, - [SMALL_STATE(4142)] = 119966, - [SMALL_STATE(4143)] = 119979, - [SMALL_STATE(4144)] = 119998, - [SMALL_STATE(4145)] = 120011, - [SMALL_STATE(4146)] = 120030, - [SMALL_STATE(4147)] = 120045, - [SMALL_STATE(4148)] = 120064, - [SMALL_STATE(4149)] = 120083, - [SMALL_STATE(4150)] = 120096, - [SMALL_STATE(4151)] = 120109, - [SMALL_STATE(4152)] = 120122, - [SMALL_STATE(4153)] = 120139, - [SMALL_STATE(4154)] = 120152, - [SMALL_STATE(4155)] = 120169, - [SMALL_STATE(4156)] = 120182, - [SMALL_STATE(4157)] = 120195, - [SMALL_STATE(4158)] = 120210, - [SMALL_STATE(4159)] = 120225, - [SMALL_STATE(4160)] = 120244, - [SMALL_STATE(4161)] = 120257, - [SMALL_STATE(4162)] = 120270, - [SMALL_STATE(4163)] = 120283, - [SMALL_STATE(4164)] = 120298, - [SMALL_STATE(4165)] = 120311, - [SMALL_STATE(4166)] = 120326, - [SMALL_STATE(4167)] = 120345, - [SMALL_STATE(4168)] = 120362, - [SMALL_STATE(4169)] = 120375, - [SMALL_STATE(4170)] = 120388, - [SMALL_STATE(4171)] = 120401, - [SMALL_STATE(4172)] = 120420, - [SMALL_STATE(4173)] = 120433, - [SMALL_STATE(4174)] = 120452, - [SMALL_STATE(4175)] = 120471, - [SMALL_STATE(4176)] = 120484, - [SMALL_STATE(4177)] = 120499, - [SMALL_STATE(4178)] = 120518, - [SMALL_STATE(4179)] = 120535, - [SMALL_STATE(4180)] = 120552, - [SMALL_STATE(4181)] = 120565, - [SMALL_STATE(4182)] = 120580, - [SMALL_STATE(4183)] = 120599, - [SMALL_STATE(4184)] = 120616, - [SMALL_STATE(4185)] = 120635, - [SMALL_STATE(4186)] = 120652, - [SMALL_STATE(4187)] = 120669, - [SMALL_STATE(4188)] = 120682, - [SMALL_STATE(4189)] = 120699, - [SMALL_STATE(4190)] = 120718, - [SMALL_STATE(4191)] = 120735, - [SMALL_STATE(4192)] = 120752, - [SMALL_STATE(4193)] = 120769, - [SMALL_STATE(4194)] = 120782, - [SMALL_STATE(4195)] = 120799, - [SMALL_STATE(4196)] = 120814, - [SMALL_STATE(4197)] = 120833, - [SMALL_STATE(4198)] = 120848, - [SMALL_STATE(4199)] = 120865, - [SMALL_STATE(4200)] = 120880, - [SMALL_STATE(4201)] = 120899, - [SMALL_STATE(4202)] = 120912, - [SMALL_STATE(4203)] = 120925, - [SMALL_STATE(4204)] = 120944, - [SMALL_STATE(4205)] = 120957, - [SMALL_STATE(4206)] = 120972, - [SMALL_STATE(4207)] = 120987, - [SMALL_STATE(4208)] = 121004, - [SMALL_STATE(4209)] = 121023, - [SMALL_STATE(4210)] = 121038, - [SMALL_STATE(4211)] = 121053, - [SMALL_STATE(4212)] = 121066, - [SMALL_STATE(4213)] = 121079, - [SMALL_STATE(4214)] = 121092, - [SMALL_STATE(4215)] = 121107, - [SMALL_STATE(4216)] = 121122, - [SMALL_STATE(4217)] = 121141, - [SMALL_STATE(4218)] = 121154, - [SMALL_STATE(4219)] = 121169, - [SMALL_STATE(4220)] = 121184, - [SMALL_STATE(4221)] = 121197, - [SMALL_STATE(4222)] = 121212, - [SMALL_STATE(4223)] = 121231, - [SMALL_STATE(4224)] = 121246, - [SMALL_STATE(4225)] = 121259, - [SMALL_STATE(4226)] = 121272, - [SMALL_STATE(4227)] = 121285, - [SMALL_STATE(4228)] = 121298, - [SMALL_STATE(4229)] = 121311, - [SMALL_STATE(4230)] = 121330, - [SMALL_STATE(4231)] = 121343, - [SMALL_STATE(4232)] = 121356, - [SMALL_STATE(4233)] = 121373, - [SMALL_STATE(4234)] = 121386, - [SMALL_STATE(4235)] = 121401, - [SMALL_STATE(4236)] = 121420, - [SMALL_STATE(4237)] = 121439, - [SMALL_STATE(4238)] = 121452, - [SMALL_STATE(4239)] = 121471, - [SMALL_STATE(4240)] = 121490, - [SMALL_STATE(4241)] = 121503, - [SMALL_STATE(4242)] = 121516, - [SMALL_STATE(4243)] = 121529, - [SMALL_STATE(4244)] = 121542, - [SMALL_STATE(4245)] = 121555, - [SMALL_STATE(4246)] = 121570, - [SMALL_STATE(4247)] = 121583, - [SMALL_STATE(4248)] = 121602, - [SMALL_STATE(4249)] = 121615, - [SMALL_STATE(4250)] = 121634, - [SMALL_STATE(4251)] = 121647, - [SMALL_STATE(4252)] = 121660, - [SMALL_STATE(4253)] = 121673, - [SMALL_STATE(4254)] = 121692, - [SMALL_STATE(4255)] = 121705, - [SMALL_STATE(4256)] = 121722, - [SMALL_STATE(4257)] = 121741, - [SMALL_STATE(4258)] = 121754, - [SMALL_STATE(4259)] = 121771, - [SMALL_STATE(4260)] = 121784, - [SMALL_STATE(4261)] = 121803, - [SMALL_STATE(4262)] = 121820, - [SMALL_STATE(4263)] = 121839, - [SMALL_STATE(4264)] = 121858, - [SMALL_STATE(4265)] = 121875, - [SMALL_STATE(4266)] = 121888, - [SMALL_STATE(4267)] = 121901, - [SMALL_STATE(4268)] = 121920, - [SMALL_STATE(4269)] = 121933, - [SMALL_STATE(4270)] = 121946, - [SMALL_STATE(4271)] = 121959, - [SMALL_STATE(4272)] = 121978, - [SMALL_STATE(4273)] = 121997, - [SMALL_STATE(4274)] = 122016, - [SMALL_STATE(4275)] = 122029, - [SMALL_STATE(4276)] = 122048, - [SMALL_STATE(4277)] = 122061, - [SMALL_STATE(4278)] = 122080, - [SMALL_STATE(4279)] = 122097, - [SMALL_STATE(4280)] = 122116, - [SMALL_STATE(4281)] = 122135, - [SMALL_STATE(4282)] = 122148, - [SMALL_STATE(4283)] = 122163, - [SMALL_STATE(4284)] = 122176, - [SMALL_STATE(4285)] = 122191, - [SMALL_STATE(4286)] = 122204, - [SMALL_STATE(4287)] = 122223, - [SMALL_STATE(4288)] = 122236, - [SMALL_STATE(4289)] = 122249, - [SMALL_STATE(4290)] = 122262, - [SMALL_STATE(4291)] = 122279, - [SMALL_STATE(4292)] = 122294, - [SMALL_STATE(4293)] = 122309, - [SMALL_STATE(4294)] = 122322, - [SMALL_STATE(4295)] = 122335, - [SMALL_STATE(4296)] = 122352, - [SMALL_STATE(4297)] = 122369, - [SMALL_STATE(4298)] = 122382, - [SMALL_STATE(4299)] = 122401, - [SMALL_STATE(4300)] = 122414, - [SMALL_STATE(4301)] = 122433, - [SMALL_STATE(4302)] = 122448, - [SMALL_STATE(4303)] = 122461, - [SMALL_STATE(4304)] = 122476, - [SMALL_STATE(4305)] = 122489, - [SMALL_STATE(4306)] = 122506, - [SMALL_STATE(4307)] = 122521, - [SMALL_STATE(4308)] = 122534, - [SMALL_STATE(4309)] = 122551, - [SMALL_STATE(4310)] = 122564, - [SMALL_STATE(4311)] = 122579, - [SMALL_STATE(4312)] = 122592, - [SMALL_STATE(4313)] = 122611, - [SMALL_STATE(4314)] = 122624, - [SMALL_STATE(4315)] = 122639, - [SMALL_STATE(4316)] = 122652, - [SMALL_STATE(4317)] = 122665, - [SMALL_STATE(4318)] = 122680, - [SMALL_STATE(4319)] = 122695, - [SMALL_STATE(4320)] = 122712, - [SMALL_STATE(4321)] = 122725, - [SMALL_STATE(4322)] = 122738, - [SMALL_STATE(4323)] = 122751, - [SMALL_STATE(4324)] = 122768, - [SMALL_STATE(4325)] = 122781, - [SMALL_STATE(4326)] = 122794, - [SMALL_STATE(4327)] = 122807, - [SMALL_STATE(4328)] = 122820, - [SMALL_STATE(4329)] = 122833, - [SMALL_STATE(4330)] = 122846, - [SMALL_STATE(4331)] = 122859, - [SMALL_STATE(4332)] = 122872, - [SMALL_STATE(4333)] = 122885, - [SMALL_STATE(4334)] = 122898, - [SMALL_STATE(4335)] = 122911, - [SMALL_STATE(4336)] = 122926, - [SMALL_STATE(4337)] = 122939, - [SMALL_STATE(4338)] = 122952, - [SMALL_STATE(4339)] = 122965, - [SMALL_STATE(4340)] = 122978, - [SMALL_STATE(4341)] = 122991, - [SMALL_STATE(4342)] = 123004, - [SMALL_STATE(4343)] = 123019, - [SMALL_STATE(4344)] = 123032, - [SMALL_STATE(4345)] = 123049, - [SMALL_STATE(4346)] = 123062, - [SMALL_STATE(4347)] = 123075, - [SMALL_STATE(4348)] = 123088, - [SMALL_STATE(4349)] = 123101, - [SMALL_STATE(4350)] = 123116, - [SMALL_STATE(4351)] = 123135, - [SMALL_STATE(4352)] = 123148, - [SMALL_STATE(4353)] = 123167, - [SMALL_STATE(4354)] = 123182, - [SMALL_STATE(4355)] = 123201, - [SMALL_STATE(4356)] = 123220, - [SMALL_STATE(4357)] = 123239, - [SMALL_STATE(4358)] = 123258, - [SMALL_STATE(4359)] = 123277, - [SMALL_STATE(4360)] = 123296, - [SMALL_STATE(4361)] = 123315, - [SMALL_STATE(4362)] = 123334, - [SMALL_STATE(4363)] = 123353, - [SMALL_STATE(4364)] = 123372, - [SMALL_STATE(4365)] = 123385, - [SMALL_STATE(4366)] = 123402, - [SMALL_STATE(4367)] = 123415, - [SMALL_STATE(4368)] = 123431, - [SMALL_STATE(4369)] = 123443, - [SMALL_STATE(4370)] = 123455, - [SMALL_STATE(4371)] = 123467, - [SMALL_STATE(4372)] = 123479, - [SMALL_STATE(4373)] = 123491, - [SMALL_STATE(4374)] = 123507, - [SMALL_STATE(4375)] = 123523, - [SMALL_STATE(4376)] = 123537, - [SMALL_STATE(4377)] = 123549, - [SMALL_STATE(4378)] = 123563, - [SMALL_STATE(4379)] = 123579, - [SMALL_STATE(4380)] = 123591, - [SMALL_STATE(4381)] = 123605, - [SMALL_STATE(4382)] = 123621, - [SMALL_STATE(4383)] = 123633, - [SMALL_STATE(4384)] = 123645, - [SMALL_STATE(4385)] = 123657, - [SMALL_STATE(4386)] = 123669, - [SMALL_STATE(4387)] = 123685, - [SMALL_STATE(4388)] = 123697, - [SMALL_STATE(4389)] = 123713, - [SMALL_STATE(4390)] = 123725, - [SMALL_STATE(4391)] = 123737, - [SMALL_STATE(4392)] = 123753, - [SMALL_STATE(4393)] = 123765, - [SMALL_STATE(4394)] = 123781, - [SMALL_STATE(4395)] = 123793, - [SMALL_STATE(4396)] = 123805, - [SMALL_STATE(4397)] = 123819, - [SMALL_STATE(4398)] = 123831, - [SMALL_STATE(4399)] = 123845, - [SMALL_STATE(4400)] = 123857, - [SMALL_STATE(4401)] = 123869, - [SMALL_STATE(4402)] = 123885, - [SMALL_STATE(4403)] = 123901, - [SMALL_STATE(4404)] = 123913, - [SMALL_STATE(4405)] = 123929, - [SMALL_STATE(4406)] = 123941, - [SMALL_STATE(4407)] = 123953, - [SMALL_STATE(4408)] = 123969, - [SMALL_STATE(4409)] = 123985, - [SMALL_STATE(4410)] = 123997, - [SMALL_STATE(4411)] = 124009, - [SMALL_STATE(4412)] = 124023, - [SMALL_STATE(4413)] = 124035, - [SMALL_STATE(4414)] = 124051, - [SMALL_STATE(4415)] = 124065, - [SMALL_STATE(4416)] = 124077, - [SMALL_STATE(4417)] = 124089, - [SMALL_STATE(4418)] = 124101, - [SMALL_STATE(4419)] = 124113, - [SMALL_STATE(4420)] = 124125, - [SMALL_STATE(4421)] = 124137, - [SMALL_STATE(4422)] = 124149, - [SMALL_STATE(4423)] = 124161, - [SMALL_STATE(4424)] = 124177, - [SMALL_STATE(4425)] = 124191, - [SMALL_STATE(4426)] = 124205, - [SMALL_STATE(4427)] = 124219, - [SMALL_STATE(4428)] = 124231, - [SMALL_STATE(4429)] = 124247, - [SMALL_STATE(4430)] = 124259, - [SMALL_STATE(4431)] = 124271, - [SMALL_STATE(4432)] = 124287, - [SMALL_STATE(4433)] = 124299, - [SMALL_STATE(4434)] = 124311, - [SMALL_STATE(4435)] = 124323, - [SMALL_STATE(4436)] = 124335, - [SMALL_STATE(4437)] = 124349, - [SMALL_STATE(4438)] = 124361, - [SMALL_STATE(4439)] = 124377, - [SMALL_STATE(4440)] = 124393, - [SMALL_STATE(4441)] = 124405, - [SMALL_STATE(4442)] = 124421, - [SMALL_STATE(4443)] = 124433, - [SMALL_STATE(4444)] = 124445, - [SMALL_STATE(4445)] = 124457, - [SMALL_STATE(4446)] = 124473, - [SMALL_STATE(4447)] = 124489, - [SMALL_STATE(4448)] = 124505, - [SMALL_STATE(4449)] = 124521, - [SMALL_STATE(4450)] = 124537, - [SMALL_STATE(4451)] = 124553, - [SMALL_STATE(4452)] = 124569, - [SMALL_STATE(4453)] = 124583, - [SMALL_STATE(4454)] = 124597, - [SMALL_STATE(4455)] = 124611, - [SMALL_STATE(4456)] = 124623, - [SMALL_STATE(4457)] = 124635, - [SMALL_STATE(4458)] = 124647, - [SMALL_STATE(4459)] = 124659, - [SMALL_STATE(4460)] = 124671, - [SMALL_STATE(4461)] = 124683, - [SMALL_STATE(4462)] = 124697, - [SMALL_STATE(4463)] = 124709, - [SMALL_STATE(4464)] = 124721, - [SMALL_STATE(4465)] = 124735, - [SMALL_STATE(4466)] = 124751, - [SMALL_STATE(4467)] = 124763, - [SMALL_STATE(4468)] = 124777, - [SMALL_STATE(4469)] = 124793, - [SMALL_STATE(4470)] = 124809, - [SMALL_STATE(4471)] = 124823, - [SMALL_STATE(4472)] = 124839, - [SMALL_STATE(4473)] = 124855, - [SMALL_STATE(4474)] = 124871, - [SMALL_STATE(4475)] = 124887, - [SMALL_STATE(4476)] = 124903, - [SMALL_STATE(4477)] = 124917, - [SMALL_STATE(4478)] = 124931, - [SMALL_STATE(4479)] = 124945, - [SMALL_STATE(4480)] = 124959, - [SMALL_STATE(4481)] = 124973, - [SMALL_STATE(4482)] = 124985, - [SMALL_STATE(4483)] = 125001, - [SMALL_STATE(4484)] = 125015, - [SMALL_STATE(4485)] = 125031, - [SMALL_STATE(4486)] = 125047, - [SMALL_STATE(4487)] = 125059, - [SMALL_STATE(4488)] = 125071, - [SMALL_STATE(4489)] = 125083, - [SMALL_STATE(4490)] = 125095, - [SMALL_STATE(4491)] = 125111, - [SMALL_STATE(4492)] = 125125, - [SMALL_STATE(4493)] = 125137, - [SMALL_STATE(4494)] = 125153, - [SMALL_STATE(4495)] = 125165, - [SMALL_STATE(4496)] = 125177, - [SMALL_STATE(4497)] = 125193, - [SMALL_STATE(4498)] = 125209, - [SMALL_STATE(4499)] = 125225, - [SMALL_STATE(4500)] = 125241, - [SMALL_STATE(4501)] = 125253, - [SMALL_STATE(4502)] = 125269, - [SMALL_STATE(4503)] = 125283, - [SMALL_STATE(4504)] = 125295, - [SMALL_STATE(4505)] = 125307, - [SMALL_STATE(4506)] = 125321, - [SMALL_STATE(4507)] = 125335, - [SMALL_STATE(4508)] = 125347, - [SMALL_STATE(4509)] = 125359, - [SMALL_STATE(4510)] = 125375, - [SMALL_STATE(4511)] = 125389, - [SMALL_STATE(4512)] = 125403, - [SMALL_STATE(4513)] = 125419, - [SMALL_STATE(4514)] = 125433, - [SMALL_STATE(4515)] = 125447, - [SMALL_STATE(4516)] = 125461, - [SMALL_STATE(4517)] = 125475, - [SMALL_STATE(4518)] = 125489, - [SMALL_STATE(4519)] = 125501, - [SMALL_STATE(4520)] = 125513, - [SMALL_STATE(4521)] = 125527, - [SMALL_STATE(4522)] = 125539, - [SMALL_STATE(4523)] = 125553, - [SMALL_STATE(4524)] = 125565, - [SMALL_STATE(4525)] = 125581, - [SMALL_STATE(4526)] = 125593, - [SMALL_STATE(4527)] = 125609, - [SMALL_STATE(4528)] = 125621, - [SMALL_STATE(4529)] = 125633, - [SMALL_STATE(4530)] = 125645, - [SMALL_STATE(4531)] = 125659, - [SMALL_STATE(4532)] = 125675, - [SMALL_STATE(4533)] = 125687, - [SMALL_STATE(4534)] = 125699, - [SMALL_STATE(4535)] = 125711, - [SMALL_STATE(4536)] = 125723, - [SMALL_STATE(4537)] = 125737, - [SMALL_STATE(4538)] = 125749, - [SMALL_STATE(4539)] = 125761, - [SMALL_STATE(4540)] = 125777, - [SMALL_STATE(4541)] = 125791, - [SMALL_STATE(4542)] = 125807, - [SMALL_STATE(4543)] = 125823, - [SMALL_STATE(4544)] = 125839, - [SMALL_STATE(4545)] = 125853, - [SMALL_STATE(4546)] = 125865, - [SMALL_STATE(4547)] = 125877, - [SMALL_STATE(4548)] = 125889, - [SMALL_STATE(4549)] = 125901, - [SMALL_STATE(4550)] = 125917, - [SMALL_STATE(4551)] = 125929, - [SMALL_STATE(4552)] = 125945, - [SMALL_STATE(4553)] = 125961, - [SMALL_STATE(4554)] = 125973, - [SMALL_STATE(4555)] = 125987, - [SMALL_STATE(4556)] = 125999, - [SMALL_STATE(4557)] = 126013, - [SMALL_STATE(4558)] = 126029, - [SMALL_STATE(4559)] = 126045, - [SMALL_STATE(4560)] = 126061, - [SMALL_STATE(4561)] = 126073, - [SMALL_STATE(4562)] = 126085, - [SMALL_STATE(4563)] = 126097, - [SMALL_STATE(4564)] = 126109, - [SMALL_STATE(4565)] = 126121, - [SMALL_STATE(4566)] = 126133, - [SMALL_STATE(4567)] = 126149, - [SMALL_STATE(4568)] = 126161, - [SMALL_STATE(4569)] = 126177, - [SMALL_STATE(4570)] = 126193, - [SMALL_STATE(4571)] = 126209, - [SMALL_STATE(4572)] = 126225, - [SMALL_STATE(4573)] = 126239, - [SMALL_STATE(4574)] = 126255, - [SMALL_STATE(4575)] = 126269, - [SMALL_STATE(4576)] = 126285, - [SMALL_STATE(4577)] = 126301, - [SMALL_STATE(4578)] = 126317, - [SMALL_STATE(4579)] = 126333, - [SMALL_STATE(4580)] = 126349, - [SMALL_STATE(4581)] = 126365, - [SMALL_STATE(4582)] = 126381, - [SMALL_STATE(4583)] = 126393, - [SMALL_STATE(4584)] = 126409, - [SMALL_STATE(4585)] = 126425, - [SMALL_STATE(4586)] = 126437, - [SMALL_STATE(4587)] = 126453, - [SMALL_STATE(4588)] = 126465, - [SMALL_STATE(4589)] = 126481, - [SMALL_STATE(4590)] = 126493, - [SMALL_STATE(4591)] = 126509, - [SMALL_STATE(4592)] = 126523, - [SMALL_STATE(4593)] = 126535, - [SMALL_STATE(4594)] = 126551, - [SMALL_STATE(4595)] = 126567, - [SMALL_STATE(4596)] = 126583, - [SMALL_STATE(4597)] = 126597, - [SMALL_STATE(4598)] = 126609, - [SMALL_STATE(4599)] = 126625, - [SMALL_STATE(4600)] = 126637, - [SMALL_STATE(4601)] = 126653, - [SMALL_STATE(4602)] = 126669, - [SMALL_STATE(4603)] = 126681, - [SMALL_STATE(4604)] = 126697, - [SMALL_STATE(4605)] = 126709, - [SMALL_STATE(4606)] = 126725, - [SMALL_STATE(4607)] = 126739, - [SMALL_STATE(4608)] = 126755, - [SMALL_STATE(4609)] = 126771, - [SMALL_STATE(4610)] = 126787, - [SMALL_STATE(4611)] = 126803, - [SMALL_STATE(4612)] = 126815, - [SMALL_STATE(4613)] = 126827, - [SMALL_STATE(4614)] = 126843, - [SMALL_STATE(4615)] = 126859, - [SMALL_STATE(4616)] = 126875, - [SMALL_STATE(4617)] = 126887, - [SMALL_STATE(4618)] = 126899, - [SMALL_STATE(4619)] = 126915, - [SMALL_STATE(4620)] = 126927, - [SMALL_STATE(4621)] = 126941, - [SMALL_STATE(4622)] = 126957, - [SMALL_STATE(4623)] = 126970, - [SMALL_STATE(4624)] = 126981, - [SMALL_STATE(4625)] = 126992, - [SMALL_STATE(4626)] = 127005, - [SMALL_STATE(4627)] = 127018, - [SMALL_STATE(4628)] = 127031, - [SMALL_STATE(4629)] = 127044, - [SMALL_STATE(4630)] = 127057, - [SMALL_STATE(4631)] = 127070, - [SMALL_STATE(4632)] = 127083, - [SMALL_STATE(4633)] = 127096, - [SMALL_STATE(4634)] = 127109, - [SMALL_STATE(4635)] = 127122, - [SMALL_STATE(4636)] = 127135, - [SMALL_STATE(4637)] = 127148, - [SMALL_STATE(4638)] = 127161, - [SMALL_STATE(4639)] = 127174, - [SMALL_STATE(4640)] = 127187, - [SMALL_STATE(4641)] = 127198, - [SMALL_STATE(4642)] = 127209, - [SMALL_STATE(4643)] = 127222, - [SMALL_STATE(4644)] = 127235, - [SMALL_STATE(4645)] = 127248, - [SMALL_STATE(4646)] = 127261, - [SMALL_STATE(4647)] = 127274, - [SMALL_STATE(4648)] = 127287, - [SMALL_STATE(4649)] = 127300, - [SMALL_STATE(4650)] = 127313, - [SMALL_STATE(4651)] = 127324, - [SMALL_STATE(4652)] = 127337, - [SMALL_STATE(4653)] = 127350, - [SMALL_STATE(4654)] = 127363, - [SMALL_STATE(4655)] = 127376, - [SMALL_STATE(4656)] = 127389, - [SMALL_STATE(4657)] = 127402, - [SMALL_STATE(4658)] = 127415, - [SMALL_STATE(4659)] = 127428, - [SMALL_STATE(4660)] = 127441, - [SMALL_STATE(4661)] = 127454, - [SMALL_STATE(4662)] = 127467, - [SMALL_STATE(4663)] = 127480, - [SMALL_STATE(4664)] = 127493, - [SMALL_STATE(4665)] = 127506, - [SMALL_STATE(4666)] = 127519, - [SMALL_STATE(4667)] = 127532, - [SMALL_STATE(4668)] = 127545, - [SMALL_STATE(4669)] = 127558, - [SMALL_STATE(4670)] = 127571, - [SMALL_STATE(4671)] = 127584, - [SMALL_STATE(4672)] = 127597, - [SMALL_STATE(4673)] = 127610, - [SMALL_STATE(4674)] = 127623, - [SMALL_STATE(4675)] = 127636, - [SMALL_STATE(4676)] = 127649, - [SMALL_STATE(4677)] = 127662, - [SMALL_STATE(4678)] = 127675, - [SMALL_STATE(4679)] = 127688, - [SMALL_STATE(4680)] = 127701, - [SMALL_STATE(4681)] = 127714, - [SMALL_STATE(4682)] = 127727, - [SMALL_STATE(4683)] = 127740, - [SMALL_STATE(4684)] = 127753, - [SMALL_STATE(4685)] = 127766, - [SMALL_STATE(4686)] = 127779, - [SMALL_STATE(4687)] = 127792, - [SMALL_STATE(4688)] = 127805, - [SMALL_STATE(4689)] = 127818, - [SMALL_STATE(4690)] = 127831, - [SMALL_STATE(4691)] = 127844, - [SMALL_STATE(4692)] = 127857, - [SMALL_STATE(4693)] = 127870, - [SMALL_STATE(4694)] = 127883, - [SMALL_STATE(4695)] = 127896, - [SMALL_STATE(4696)] = 127909, - [SMALL_STATE(4697)] = 127922, - [SMALL_STATE(4698)] = 127935, - [SMALL_STATE(4699)] = 127948, - [SMALL_STATE(4700)] = 127961, - [SMALL_STATE(4701)] = 127974, - [SMALL_STATE(4702)] = 127987, - [SMALL_STATE(4703)] = 128000, - [SMALL_STATE(4704)] = 128013, - [SMALL_STATE(4705)] = 128026, - [SMALL_STATE(4706)] = 128039, - [SMALL_STATE(4707)] = 128052, - [SMALL_STATE(4708)] = 128065, - [SMALL_STATE(4709)] = 128078, - [SMALL_STATE(4710)] = 128091, - [SMALL_STATE(4711)] = 128104, - [SMALL_STATE(4712)] = 128117, - [SMALL_STATE(4713)] = 128128, - [SMALL_STATE(4714)] = 128141, - [SMALL_STATE(4715)] = 128154, - [SMALL_STATE(4716)] = 128167, - [SMALL_STATE(4717)] = 128180, - [SMALL_STATE(4718)] = 128193, - [SMALL_STATE(4719)] = 128206, - [SMALL_STATE(4720)] = 128219, - [SMALL_STATE(4721)] = 128232, - [SMALL_STATE(4722)] = 128245, - [SMALL_STATE(4723)] = 128258, - [SMALL_STATE(4724)] = 128271, - [SMALL_STATE(4725)] = 128284, - [SMALL_STATE(4726)] = 128297, - [SMALL_STATE(4727)] = 128310, - [SMALL_STATE(4728)] = 128323, - [SMALL_STATE(4729)] = 128336, - [SMALL_STATE(4730)] = 128349, - [SMALL_STATE(4731)] = 128362, - [SMALL_STATE(4732)] = 128375, - [SMALL_STATE(4733)] = 128388, - [SMALL_STATE(4734)] = 128399, - [SMALL_STATE(4735)] = 128412, - [SMALL_STATE(4736)] = 128423, - [SMALL_STATE(4737)] = 128436, - [SMALL_STATE(4738)] = 128449, - [SMALL_STATE(4739)] = 128462, - [SMALL_STATE(4740)] = 128475, - [SMALL_STATE(4741)] = 128488, - [SMALL_STATE(4742)] = 128501, - [SMALL_STATE(4743)] = 128514, - [SMALL_STATE(4744)] = 128525, - [SMALL_STATE(4745)] = 128538, - [SMALL_STATE(4746)] = 128551, - [SMALL_STATE(4747)] = 128564, - [SMALL_STATE(4748)] = 128577, - [SMALL_STATE(4749)] = 128590, - [SMALL_STATE(4750)] = 128603, - [SMALL_STATE(4751)] = 128616, - [SMALL_STATE(4752)] = 128629, - [SMALL_STATE(4753)] = 128642, - [SMALL_STATE(4754)] = 128655, - [SMALL_STATE(4755)] = 128668, - [SMALL_STATE(4756)] = 128681, - [SMALL_STATE(4757)] = 128694, - [SMALL_STATE(4758)] = 128707, - [SMALL_STATE(4759)] = 128720, - [SMALL_STATE(4760)] = 128733, - [SMALL_STATE(4761)] = 128746, - [SMALL_STATE(4762)] = 128759, - [SMALL_STATE(4763)] = 128772, - [SMALL_STATE(4764)] = 128785, - [SMALL_STATE(4765)] = 128798, - [SMALL_STATE(4766)] = 128811, - [SMALL_STATE(4767)] = 128822, - [SMALL_STATE(4768)] = 128835, - [SMALL_STATE(4769)] = 128848, - [SMALL_STATE(4770)] = 128861, - [SMALL_STATE(4771)] = 128874, - [SMALL_STATE(4772)] = 128887, - [SMALL_STATE(4773)] = 128900, - [SMALL_STATE(4774)] = 128913, - [SMALL_STATE(4775)] = 128926, - [SMALL_STATE(4776)] = 128939, - [SMALL_STATE(4777)] = 128952, - [SMALL_STATE(4778)] = 128965, - [SMALL_STATE(4779)] = 128978, - [SMALL_STATE(4780)] = 128991, - [SMALL_STATE(4781)] = 129004, - [SMALL_STATE(4782)] = 129017, - [SMALL_STATE(4783)] = 129030, - [SMALL_STATE(4784)] = 129043, - [SMALL_STATE(4785)] = 129056, - [SMALL_STATE(4786)] = 129069, - [SMALL_STATE(4787)] = 129082, - [SMALL_STATE(4788)] = 129095, - [SMALL_STATE(4789)] = 129108, - [SMALL_STATE(4790)] = 129121, - [SMALL_STATE(4791)] = 129134, - [SMALL_STATE(4792)] = 129144, - [SMALL_STATE(4793)] = 129154, - [SMALL_STATE(4794)] = 129164, - [SMALL_STATE(4795)] = 129174, - [SMALL_STATE(4796)] = 129184, - [SMALL_STATE(4797)] = 129194, - [SMALL_STATE(4798)] = 129204, - [SMALL_STATE(4799)] = 129214, - [SMALL_STATE(4800)] = 129224, - [SMALL_STATE(4801)] = 129234, - [SMALL_STATE(4802)] = 129244, - [SMALL_STATE(4803)] = 129254, - [SMALL_STATE(4804)] = 129264, - [SMALL_STATE(4805)] = 129274, - [SMALL_STATE(4806)] = 129284, - [SMALL_STATE(4807)] = 129294, - [SMALL_STATE(4808)] = 129304, - [SMALL_STATE(4809)] = 129314, - [SMALL_STATE(4810)] = 129324, - [SMALL_STATE(4811)] = 129334, - [SMALL_STATE(4812)] = 129344, - [SMALL_STATE(4813)] = 129354, - [SMALL_STATE(4814)] = 129364, - [SMALL_STATE(4815)] = 129374, - [SMALL_STATE(4816)] = 129384, - [SMALL_STATE(4817)] = 129394, - [SMALL_STATE(4818)] = 129404, - [SMALL_STATE(4819)] = 129414, - [SMALL_STATE(4820)] = 129424, - [SMALL_STATE(4821)] = 129434, - [SMALL_STATE(4822)] = 129444, - [SMALL_STATE(4823)] = 129454, - [SMALL_STATE(4824)] = 129464, - [SMALL_STATE(4825)] = 129474, - [SMALL_STATE(4826)] = 129484, - [SMALL_STATE(4827)] = 129494, - [SMALL_STATE(4828)] = 129504, - [SMALL_STATE(4829)] = 129514, - [SMALL_STATE(4830)] = 129524, - [SMALL_STATE(4831)] = 129534, - [SMALL_STATE(4832)] = 129544, - [SMALL_STATE(4833)] = 129554, - [SMALL_STATE(4834)] = 129564, - [SMALL_STATE(4835)] = 129574, - [SMALL_STATE(4836)] = 129584, - [SMALL_STATE(4837)] = 129594, - [SMALL_STATE(4838)] = 129604, - [SMALL_STATE(4839)] = 129614, - [SMALL_STATE(4840)] = 129624, - [SMALL_STATE(4841)] = 129634, - [SMALL_STATE(4842)] = 129644, - [SMALL_STATE(4843)] = 129654, - [SMALL_STATE(4844)] = 129664, - [SMALL_STATE(4845)] = 129674, - [SMALL_STATE(4846)] = 129684, - [SMALL_STATE(4847)] = 129694, - [SMALL_STATE(4848)] = 129704, - [SMALL_STATE(4849)] = 129714, - [SMALL_STATE(4850)] = 129724, - [SMALL_STATE(4851)] = 129734, - [SMALL_STATE(4852)] = 129744, - [SMALL_STATE(4853)] = 129754, - [SMALL_STATE(4854)] = 129764, - [SMALL_STATE(4855)] = 129774, - [SMALL_STATE(4856)] = 129784, - [SMALL_STATE(4857)] = 129794, - [SMALL_STATE(4858)] = 129804, - [SMALL_STATE(4859)] = 129814, - [SMALL_STATE(4860)] = 129824, - [SMALL_STATE(4861)] = 129834, - [SMALL_STATE(4862)] = 129844, - [SMALL_STATE(4863)] = 129854, - [SMALL_STATE(4864)] = 129864, - [SMALL_STATE(4865)] = 129874, - [SMALL_STATE(4866)] = 129884, - [SMALL_STATE(4867)] = 129894, - [SMALL_STATE(4868)] = 129904, - [SMALL_STATE(4869)] = 129914, - [SMALL_STATE(4870)] = 129924, - [SMALL_STATE(4871)] = 129934, - [SMALL_STATE(4872)] = 129944, - [SMALL_STATE(4873)] = 129954, - [SMALL_STATE(4874)] = 129964, - [SMALL_STATE(4875)] = 129974, - [SMALL_STATE(4876)] = 129984, - [SMALL_STATE(4877)] = 129994, - [SMALL_STATE(4878)] = 130004, - [SMALL_STATE(4879)] = 130014, - [SMALL_STATE(4880)] = 130024, - [SMALL_STATE(4881)] = 130034, - [SMALL_STATE(4882)] = 130044, - [SMALL_STATE(4883)] = 130054, - [SMALL_STATE(4884)] = 130064, - [SMALL_STATE(4885)] = 130074, - [SMALL_STATE(4886)] = 130084, - [SMALL_STATE(4887)] = 130094, - [SMALL_STATE(4888)] = 130104, - [SMALL_STATE(4889)] = 130114, - [SMALL_STATE(4890)] = 130124, - [SMALL_STATE(4891)] = 130134, - [SMALL_STATE(4892)] = 130144, - [SMALL_STATE(4893)] = 130154, - [SMALL_STATE(4894)] = 130164, - [SMALL_STATE(4895)] = 130174, - [SMALL_STATE(4896)] = 130184, - [SMALL_STATE(4897)] = 130194, - [SMALL_STATE(4898)] = 130204, - [SMALL_STATE(4899)] = 130214, - [SMALL_STATE(4900)] = 130224, - [SMALL_STATE(4901)] = 130234, - [SMALL_STATE(4902)] = 130244, - [SMALL_STATE(4903)] = 130254, - [SMALL_STATE(4904)] = 130264, - [SMALL_STATE(4905)] = 130274, - [SMALL_STATE(4906)] = 130284, - [SMALL_STATE(4907)] = 130294, - [SMALL_STATE(4908)] = 130304, - [SMALL_STATE(4909)] = 130314, - [SMALL_STATE(4910)] = 130324, - [SMALL_STATE(4911)] = 130334, - [SMALL_STATE(4912)] = 130344, - [SMALL_STATE(4913)] = 130354, - [SMALL_STATE(4914)] = 130364, - [SMALL_STATE(4915)] = 130374, - [SMALL_STATE(4916)] = 130384, - [SMALL_STATE(4917)] = 130394, - [SMALL_STATE(4918)] = 130404, - [SMALL_STATE(4919)] = 130414, - [SMALL_STATE(4920)] = 130424, - [SMALL_STATE(4921)] = 130434, - [SMALL_STATE(4922)] = 130444, - [SMALL_STATE(4923)] = 130454, - [SMALL_STATE(4924)] = 130464, - [SMALL_STATE(4925)] = 130474, - [SMALL_STATE(4926)] = 130484, - [SMALL_STATE(4927)] = 130494, - [SMALL_STATE(4928)] = 130504, - [SMALL_STATE(4929)] = 130514, - [SMALL_STATE(4930)] = 130524, - [SMALL_STATE(4931)] = 130534, - [SMALL_STATE(4932)] = 130544, - [SMALL_STATE(4933)] = 130554, - [SMALL_STATE(4934)] = 130564, - [SMALL_STATE(4935)] = 130574, - [SMALL_STATE(4936)] = 130584, - [SMALL_STATE(4937)] = 130594, - [SMALL_STATE(4938)] = 130604, - [SMALL_STATE(4939)] = 130614, - [SMALL_STATE(4940)] = 130624, - [SMALL_STATE(4941)] = 130634, - [SMALL_STATE(4942)] = 130644, - [SMALL_STATE(4943)] = 130654, - [SMALL_STATE(4944)] = 130664, - [SMALL_STATE(4945)] = 130674, - [SMALL_STATE(4946)] = 130684, - [SMALL_STATE(4947)] = 130694, - [SMALL_STATE(4948)] = 130704, - [SMALL_STATE(4949)] = 130714, - [SMALL_STATE(4950)] = 130724, - [SMALL_STATE(4951)] = 130734, - [SMALL_STATE(4952)] = 130744, - [SMALL_STATE(4953)] = 130754, - [SMALL_STATE(4954)] = 130764, - [SMALL_STATE(4955)] = 130774, - [SMALL_STATE(4956)] = 130784, - [SMALL_STATE(4957)] = 130794, - [SMALL_STATE(4958)] = 130804, - [SMALL_STATE(4959)] = 130814, - [SMALL_STATE(4960)] = 130824, - [SMALL_STATE(4961)] = 130834, - [SMALL_STATE(4962)] = 130844, - [SMALL_STATE(4963)] = 130854, - [SMALL_STATE(4964)] = 130864, - [SMALL_STATE(4965)] = 130874, - [SMALL_STATE(4966)] = 130884, - [SMALL_STATE(4967)] = 130894, - [SMALL_STATE(4968)] = 130904, - [SMALL_STATE(4969)] = 130914, - [SMALL_STATE(4970)] = 130924, - [SMALL_STATE(4971)] = 130934, - [SMALL_STATE(4972)] = 130944, - [SMALL_STATE(4973)] = 130954, - [SMALL_STATE(4974)] = 130964, - [SMALL_STATE(4975)] = 130974, - [SMALL_STATE(4976)] = 130984, - [SMALL_STATE(4977)] = 130994, - [SMALL_STATE(4978)] = 131004, - [SMALL_STATE(4979)] = 131014, - [SMALL_STATE(4980)] = 131024, - [SMALL_STATE(4981)] = 131034, - [SMALL_STATE(4982)] = 131044, - [SMALL_STATE(4983)] = 131054, - [SMALL_STATE(4984)] = 131064, - [SMALL_STATE(4985)] = 131074, - [SMALL_STATE(4986)] = 131084, - [SMALL_STATE(4987)] = 131094, - [SMALL_STATE(4988)] = 131104, - [SMALL_STATE(4989)] = 131114, - [SMALL_STATE(4990)] = 131124, - [SMALL_STATE(4991)] = 131134, - [SMALL_STATE(4992)] = 131144, - [SMALL_STATE(4993)] = 131154, - [SMALL_STATE(4994)] = 131164, - [SMALL_STATE(4995)] = 131174, - [SMALL_STATE(4996)] = 131184, - [SMALL_STATE(4997)] = 131194, - [SMALL_STATE(4998)] = 131204, - [SMALL_STATE(4999)] = 131214, - [SMALL_STATE(5000)] = 131224, - [SMALL_STATE(5001)] = 131234, - [SMALL_STATE(5002)] = 131244, - [SMALL_STATE(5003)] = 131254, - [SMALL_STATE(5004)] = 131264, - [SMALL_STATE(5005)] = 131274, - [SMALL_STATE(5006)] = 131284, - [SMALL_STATE(5007)] = 131294, - [SMALL_STATE(5008)] = 131304, - [SMALL_STATE(5009)] = 131314, - [SMALL_STATE(5010)] = 131324, - [SMALL_STATE(5011)] = 131334, - [SMALL_STATE(5012)] = 131344, - [SMALL_STATE(5013)] = 131354, - [SMALL_STATE(5014)] = 131364, - [SMALL_STATE(5015)] = 131374, - [SMALL_STATE(5016)] = 131384, - [SMALL_STATE(5017)] = 131394, - [SMALL_STATE(5018)] = 131404, - [SMALL_STATE(5019)] = 131414, - [SMALL_STATE(5020)] = 131424, - [SMALL_STATE(5021)] = 131434, - [SMALL_STATE(5022)] = 131444, - [SMALL_STATE(5023)] = 131454, - [SMALL_STATE(5024)] = 131464, - [SMALL_STATE(5025)] = 131474, - [SMALL_STATE(5026)] = 131484, - [SMALL_STATE(5027)] = 131494, - [SMALL_STATE(5028)] = 131504, - [SMALL_STATE(5029)] = 131514, - [SMALL_STATE(5030)] = 131524, - [SMALL_STATE(5031)] = 131534, - [SMALL_STATE(5032)] = 131544, - [SMALL_STATE(5033)] = 131554, - [SMALL_STATE(5034)] = 131564, - [SMALL_STATE(5035)] = 131574, - [SMALL_STATE(5036)] = 131584, - [SMALL_STATE(5037)] = 131594, - [SMALL_STATE(5038)] = 131604, - [SMALL_STATE(5039)] = 131614, - [SMALL_STATE(5040)] = 131624, - [SMALL_STATE(5041)] = 131634, - [SMALL_STATE(5042)] = 131644, - [SMALL_STATE(5043)] = 131654, - [SMALL_STATE(5044)] = 131664, - [SMALL_STATE(5045)] = 131674, - [SMALL_STATE(5046)] = 131684, - [SMALL_STATE(5047)] = 131694, - [SMALL_STATE(5048)] = 131704, - [SMALL_STATE(5049)] = 131714, - [SMALL_STATE(5050)] = 131724, - [SMALL_STATE(5051)] = 131734, - [SMALL_STATE(5052)] = 131744, - [SMALL_STATE(5053)] = 131754, - [SMALL_STATE(5054)] = 131764, - [SMALL_STATE(5055)] = 131774, - [SMALL_STATE(5056)] = 131784, - [SMALL_STATE(5057)] = 131794, - [SMALL_STATE(5058)] = 131804, - [SMALL_STATE(5059)] = 131814, - [SMALL_STATE(5060)] = 131824, - [SMALL_STATE(5061)] = 131834, - [SMALL_STATE(5062)] = 131844, - [SMALL_STATE(5063)] = 131854, - [SMALL_STATE(5064)] = 131864, - [SMALL_STATE(5065)] = 131874, - [SMALL_STATE(5066)] = 131884, - [SMALL_STATE(5067)] = 131894, - [SMALL_STATE(5068)] = 131904, - [SMALL_STATE(5069)] = 131914, - [SMALL_STATE(5070)] = 131924, - [SMALL_STATE(5071)] = 131934, - [SMALL_STATE(5072)] = 131944, - [SMALL_STATE(5073)] = 131954, - [SMALL_STATE(5074)] = 131964, - [SMALL_STATE(5075)] = 131974, - [SMALL_STATE(5076)] = 131984, - [SMALL_STATE(5077)] = 131994, - [SMALL_STATE(5078)] = 132004, - [SMALL_STATE(5079)] = 132014, - [SMALL_STATE(5080)] = 132024, - [SMALL_STATE(5081)] = 132034, - [SMALL_STATE(5082)] = 132044, - [SMALL_STATE(5083)] = 132054, - [SMALL_STATE(5084)] = 132064, - [SMALL_STATE(5085)] = 132074, - [SMALL_STATE(5086)] = 132084, - [SMALL_STATE(5087)] = 132094, - [SMALL_STATE(5088)] = 132104, - [SMALL_STATE(5089)] = 132114, - [SMALL_STATE(5090)] = 132124, - [SMALL_STATE(5091)] = 132134, - [SMALL_STATE(5092)] = 132144, - [SMALL_STATE(5093)] = 132154, - [SMALL_STATE(5094)] = 132164, - [SMALL_STATE(5095)] = 132174, - [SMALL_STATE(5096)] = 132184, - [SMALL_STATE(5097)] = 132194, - [SMALL_STATE(5098)] = 132204, - [SMALL_STATE(5099)] = 132214, - [SMALL_STATE(5100)] = 132224, - [SMALL_STATE(5101)] = 132234, - [SMALL_STATE(5102)] = 132244, - [SMALL_STATE(5103)] = 132254, - [SMALL_STATE(5104)] = 132264, - [SMALL_STATE(5105)] = 132274, - [SMALL_STATE(5106)] = 132284, - [SMALL_STATE(5107)] = 132294, - [SMALL_STATE(5108)] = 132304, - [SMALL_STATE(5109)] = 132314, - [SMALL_STATE(5110)] = 132324, - [SMALL_STATE(5111)] = 132334, - [SMALL_STATE(5112)] = 132344, - [SMALL_STATE(5113)] = 132354, - [SMALL_STATE(5114)] = 132364, - [SMALL_STATE(5115)] = 132374, - [SMALL_STATE(5116)] = 132384, - [SMALL_STATE(5117)] = 132394, - [SMALL_STATE(5118)] = 132404, - [SMALL_STATE(5119)] = 132414, - [SMALL_STATE(5120)] = 132424, - [SMALL_STATE(5121)] = 132434, - [SMALL_STATE(5122)] = 132444, - [SMALL_STATE(5123)] = 132454, - [SMALL_STATE(5124)] = 132464, - [SMALL_STATE(5125)] = 132474, - [SMALL_STATE(5126)] = 132484, - [SMALL_STATE(5127)] = 132494, - [SMALL_STATE(5128)] = 132504, - [SMALL_STATE(5129)] = 132514, - [SMALL_STATE(5130)] = 132524, - [SMALL_STATE(5131)] = 132534, - [SMALL_STATE(5132)] = 132544, - [SMALL_STATE(5133)] = 132554, - [SMALL_STATE(5134)] = 132564, - [SMALL_STATE(5135)] = 132574, - [SMALL_STATE(5136)] = 132584, - [SMALL_STATE(5137)] = 132594, - [SMALL_STATE(5138)] = 132604, - [SMALL_STATE(5139)] = 132614, - [SMALL_STATE(5140)] = 132624, - [SMALL_STATE(5141)] = 132634, - [SMALL_STATE(5142)] = 132644, - [SMALL_STATE(5143)] = 132654, - [SMALL_STATE(5144)] = 132664, - [SMALL_STATE(5145)] = 132674, - [SMALL_STATE(5146)] = 132684, - [SMALL_STATE(5147)] = 132694, - [SMALL_STATE(5148)] = 132704, - [SMALL_STATE(5149)] = 132714, - [SMALL_STATE(5150)] = 132724, - [SMALL_STATE(5151)] = 132734, - [SMALL_STATE(5152)] = 132744, - [SMALL_STATE(5153)] = 132754, - [SMALL_STATE(5154)] = 132764, - [SMALL_STATE(5155)] = 132774, - [SMALL_STATE(5156)] = 132784, - [SMALL_STATE(5157)] = 132794, - [SMALL_STATE(5158)] = 132804, - [SMALL_STATE(5159)] = 132814, - [SMALL_STATE(5160)] = 132824, - [SMALL_STATE(5161)] = 132834, - [SMALL_STATE(5162)] = 132844, - [SMALL_STATE(5163)] = 132854, - [SMALL_STATE(5164)] = 132864, - [SMALL_STATE(5165)] = 132874, - [SMALL_STATE(5166)] = 132884, - [SMALL_STATE(5167)] = 132894, - [SMALL_STATE(5168)] = 132904, - [SMALL_STATE(5169)] = 132914, - [SMALL_STATE(5170)] = 132924, - [SMALL_STATE(5171)] = 132934, - [SMALL_STATE(5172)] = 132944, - [SMALL_STATE(5173)] = 132954, - [SMALL_STATE(5174)] = 132964, - [SMALL_STATE(5175)] = 132974, - [SMALL_STATE(5176)] = 132984, - [SMALL_STATE(5177)] = 132994, - [SMALL_STATE(5178)] = 133004, - [SMALL_STATE(5179)] = 133014, - [SMALL_STATE(5180)] = 133024, - [SMALL_STATE(5181)] = 133034, - [SMALL_STATE(5182)] = 133044, - [SMALL_STATE(5183)] = 133054, - [SMALL_STATE(5184)] = 133064, - [SMALL_STATE(5185)] = 133074, - [SMALL_STATE(5186)] = 133084, - [SMALL_STATE(5187)] = 133094, - [SMALL_STATE(5188)] = 133104, - [SMALL_STATE(5189)] = 133114, - [SMALL_STATE(5190)] = 133124, - [SMALL_STATE(5191)] = 133134, - [SMALL_STATE(5192)] = 133144, - [SMALL_STATE(5193)] = 133154, - [SMALL_STATE(5194)] = 133164, - [SMALL_STATE(5195)] = 133174, - [SMALL_STATE(5196)] = 133184, - [SMALL_STATE(5197)] = 133194, - [SMALL_STATE(5198)] = 133204, - [SMALL_STATE(5199)] = 133214, - [SMALL_STATE(5200)] = 133224, - [SMALL_STATE(5201)] = 133234, - [SMALL_STATE(5202)] = 133244, - [SMALL_STATE(5203)] = 133254, + [SMALL_STATE(3560)] = 107948, + [SMALL_STATE(3561)] = 107968, + [SMALL_STATE(3562)] = 107988, + [SMALL_STATE(3563)] = 108016, + [SMALL_STATE(3564)] = 108042, + [SMALL_STATE(3565)] = 108070, + [SMALL_STATE(3566)] = 108098, + [SMALL_STATE(3567)] = 108126, + [SMALL_STATE(3568)] = 108156, + [SMALL_STATE(3569)] = 108176, + [SMALL_STATE(3570)] = 108200, + [SMALL_STATE(3571)] = 108228, + [SMALL_STATE(3572)] = 108256, + [SMALL_STATE(3573)] = 108280, + [SMALL_STATE(3574)] = 108308, + [SMALL_STATE(3575)] = 108331, + [SMALL_STATE(3576)] = 108358, + [SMALL_STATE(3577)] = 108383, + [SMALL_STATE(3578)] = 108410, + [SMALL_STATE(3579)] = 108435, + [SMALL_STATE(3580)] = 108462, + [SMALL_STATE(3581)] = 108487, + [SMALL_STATE(3582)] = 108506, + [SMALL_STATE(3583)] = 108535, + [SMALL_STATE(3584)] = 108558, + [SMALL_STATE(3585)] = 108579, + [SMALL_STATE(3586)] = 108610, + [SMALL_STATE(3587)] = 108635, + [SMALL_STATE(3588)] = 108660, + [SMALL_STATE(3589)] = 108685, + [SMALL_STATE(3590)] = 108708, + [SMALL_STATE(3591)] = 108729, + [SMALL_STATE(3592)] = 108750, + [SMALL_STATE(3593)] = 108769, + [SMALL_STATE(3594)] = 108788, + [SMALL_STATE(3595)] = 108813, + [SMALL_STATE(3596)] = 108838, + [SMALL_STATE(3597)] = 108857, + [SMALL_STATE(3598)] = 108882, + [SMALL_STATE(3599)] = 108907, + [SMALL_STATE(3600)] = 108928, + [SMALL_STATE(3601)] = 108947, + [SMALL_STATE(3602)] = 108966, + [SMALL_STATE(3603)] = 108985, + [SMALL_STATE(3604)] = 109004, + [SMALL_STATE(3605)] = 109029, + [SMALL_STATE(3606)] = 109054, + [SMALL_STATE(3607)] = 109073, + [SMALL_STATE(3608)] = 109092, + [SMALL_STATE(3609)] = 109117, + [SMALL_STATE(3610)] = 109140, + [SMALL_STATE(3611)] = 109161, + [SMALL_STATE(3612)] = 109184, + [SMALL_STATE(3613)] = 109205, + [SMALL_STATE(3614)] = 109226, + [SMALL_STATE(3615)] = 109245, + [SMALL_STATE(3616)] = 109272, + [SMALL_STATE(3617)] = 109297, + [SMALL_STATE(3618)] = 109322, + [SMALL_STATE(3619)] = 109347, + [SMALL_STATE(3620)] = 109366, + [SMALL_STATE(3621)] = 109393, + [SMALL_STATE(3622)] = 109420, + [SMALL_STATE(3623)] = 109439, + [SMALL_STATE(3624)] = 109457, + [SMALL_STATE(3625)] = 109485, + [SMALL_STATE(3626)] = 109511, + [SMALL_STATE(3627)] = 109531, + [SMALL_STATE(3628)] = 109551, + [SMALL_STATE(3629)] = 109579, + [SMALL_STATE(3630)] = 109603, + [SMALL_STATE(3631)] = 109629, + [SMALL_STATE(3632)] = 109655, + [SMALL_STATE(3633)] = 109681, + [SMALL_STATE(3634)] = 109703, + [SMALL_STATE(3635)] = 109727, + [SMALL_STATE(3636)] = 109747, + [SMALL_STATE(3637)] = 109767, + [SMALL_STATE(3638)] = 109787, + [SMALL_STATE(3639)] = 109815, + [SMALL_STATE(3640)] = 109843, + [SMALL_STATE(3641)] = 109871, + [SMALL_STATE(3642)] = 109893, + [SMALL_STATE(3643)] = 109921, + [SMALL_STATE(3644)] = 109943, + [SMALL_STATE(3645)] = 109969, + [SMALL_STATE(3646)] = 109997, + [SMALL_STATE(3647)] = 110023, + [SMALL_STATE(3648)] = 110045, + [SMALL_STATE(3649)] = 110071, + [SMALL_STATE(3650)] = 110089, + [SMALL_STATE(3651)] = 110111, + [SMALL_STATE(3652)] = 110139, + [SMALL_STATE(3653)] = 110167, + [SMALL_STATE(3654)] = 110193, + [SMALL_STATE(3655)] = 110219, + [SMALL_STATE(3656)] = 110247, + [SMALL_STATE(3657)] = 110275, + [SMALL_STATE(3658)] = 110297, + [SMALL_STATE(3659)] = 110325, + [SMALL_STATE(3660)] = 110353, + [SMALL_STATE(3661)] = 110381, + [SMALL_STATE(3662)] = 110409, + [SMALL_STATE(3663)] = 110433, + [SMALL_STATE(3664)] = 110457, + [SMALL_STATE(3665)] = 110485, + [SMALL_STATE(3666)] = 110513, + [SMALL_STATE(3667)] = 110541, + [SMALL_STATE(3668)] = 110569, + [SMALL_STATE(3669)] = 110595, + [SMALL_STATE(3670)] = 110619, + [SMALL_STATE(3671)] = 110641, + [SMALL_STATE(3672)] = 110669, + [SMALL_STATE(3673)] = 110695, + [SMALL_STATE(3674)] = 110721, + [SMALL_STATE(3675)] = 110749, + [SMALL_STATE(3676)] = 110775, + [SMALL_STATE(3677)] = 110799, + [SMALL_STATE(3678)] = 110825, + [SMALL_STATE(3679)] = 110853, + [SMALL_STATE(3680)] = 110871, + [SMALL_STATE(3681)] = 110899, + [SMALL_STATE(3682)] = 110925, + [SMALL_STATE(3683)] = 110953, + [SMALL_STATE(3684)] = 110981, + [SMALL_STATE(3685)] = 110999, + [SMALL_STATE(3686)] = 111025, + [SMALL_STATE(3687)] = 111043, + [SMALL_STATE(3688)] = 111069, + [SMALL_STATE(3689)] = 111087, + [SMALL_STATE(3690)] = 111107, + [SMALL_STATE(3691)] = 111135, + [SMALL_STATE(3692)] = 111159, + [SMALL_STATE(3693)] = 111177, + [SMALL_STATE(3694)] = 111199, + [SMALL_STATE(3695)] = 111225, + [SMALL_STATE(3696)] = 111253, + [SMALL_STATE(3697)] = 111279, + [SMALL_STATE(3698)] = 111307, + [SMALL_STATE(3699)] = 111325, + [SMALL_STATE(3700)] = 111349, + [SMALL_STATE(3701)] = 111377, + [SMALL_STATE(3702)] = 111403, + [SMALL_STATE(3703)] = 111431, + [SMALL_STATE(3704)] = 111449, + [SMALL_STATE(3705)] = 111477, + [SMALL_STATE(3706)] = 111497, + [SMALL_STATE(3707)] = 111519, + [SMALL_STATE(3708)] = 111547, + [SMALL_STATE(3709)] = 111575, + [SMALL_STATE(3710)] = 111593, + [SMALL_STATE(3711)] = 111611, + [SMALL_STATE(3712)] = 111639, + [SMALL_STATE(3713)] = 111667, + [SMALL_STATE(3714)] = 111695, + [SMALL_STATE(3715)] = 111713, + [SMALL_STATE(3716)] = 111737, + [SMALL_STATE(3717)] = 111765, + [SMALL_STATE(3718)] = 111793, + [SMALL_STATE(3719)] = 111819, + [SMALL_STATE(3720)] = 111847, + [SMALL_STATE(3721)] = 111869, + [SMALL_STATE(3722)] = 111897, + [SMALL_STATE(3723)] = 111919, + [SMALL_STATE(3724)] = 111947, + [SMALL_STATE(3725)] = 111969, + [SMALL_STATE(3726)] = 111997, + [SMALL_STATE(3727)] = 112025, + [SMALL_STATE(3728)] = 112045, + [SMALL_STATE(3729)] = 112073, + [SMALL_STATE(3730)] = 112091, + [SMALL_STATE(3731)] = 112119, + [SMALL_STATE(3732)] = 112147, + [SMALL_STATE(3733)] = 112172, + [SMALL_STATE(3734)] = 112195, + [SMALL_STATE(3735)] = 112218, + [SMALL_STATE(3736)] = 112241, + [SMALL_STATE(3737)] = 112264, + [SMALL_STATE(3738)] = 112285, + [SMALL_STATE(3739)] = 112308, + [SMALL_STATE(3740)] = 112329, + [SMALL_STATE(3741)] = 112350, + [SMALL_STATE(3742)] = 112367, + [SMALL_STATE(3743)] = 112384, + [SMALL_STATE(3744)] = 112405, + [SMALL_STATE(3745)] = 112430, + [SMALL_STATE(3746)] = 112455, + [SMALL_STATE(3747)] = 112480, + [SMALL_STATE(3748)] = 112501, + [SMALL_STATE(3749)] = 112524, + [SMALL_STATE(3750)] = 112547, + [SMALL_STATE(3751)] = 112570, + [SMALL_STATE(3752)] = 112591, + [SMALL_STATE(3753)] = 112614, + [SMALL_STATE(3754)] = 112635, + [SMALL_STATE(3755)] = 112654, + [SMALL_STATE(3756)] = 112673, + [SMALL_STATE(3757)] = 112694, + [SMALL_STATE(3758)] = 112715, + [SMALL_STATE(3759)] = 112736, + [SMALL_STATE(3760)] = 112755, + [SMALL_STATE(3761)] = 112774, + [SMALL_STATE(3762)] = 112797, + [SMALL_STATE(3763)] = 112820, + [SMALL_STATE(3764)] = 112843, + [SMALL_STATE(3765)] = 112866, + [SMALL_STATE(3766)] = 112887, + [SMALL_STATE(3767)] = 112908, + [SMALL_STATE(3768)] = 112933, + [SMALL_STATE(3769)] = 112952, + [SMALL_STATE(3770)] = 112971, + [SMALL_STATE(3771)] = 112996, + [SMALL_STATE(3772)] = 113021, + [SMALL_STATE(3773)] = 113046, + [SMALL_STATE(3774)] = 113069, + [SMALL_STATE(3775)] = 113094, + [SMALL_STATE(3776)] = 113117, + [SMALL_STATE(3777)] = 113142, + [SMALL_STATE(3778)] = 113167, + [SMALL_STATE(3779)] = 113192, + [SMALL_STATE(3780)] = 113215, + [SMALL_STATE(3781)] = 113236, + [SMALL_STATE(3782)] = 113259, + [SMALL_STATE(3783)] = 113282, + [SMALL_STATE(3784)] = 113305, + [SMALL_STATE(3785)] = 113328, + [SMALL_STATE(3786)] = 113353, + [SMALL_STATE(3787)] = 113376, + [SMALL_STATE(3788)] = 113399, + [SMALL_STATE(3789)] = 113424, + [SMALL_STATE(3790)] = 113447, + [SMALL_STATE(3791)] = 113470, + [SMALL_STATE(3792)] = 113485, + [SMALL_STATE(3793)] = 113510, + [SMALL_STATE(3794)] = 113529, + [SMALL_STATE(3795)] = 113544, + [SMALL_STATE(3796)] = 113559, + [SMALL_STATE(3797)] = 113584, + [SMALL_STATE(3798)] = 113609, + [SMALL_STATE(3799)] = 113630, + [SMALL_STATE(3800)] = 113645, + [SMALL_STATE(3801)] = 113660, + [SMALL_STATE(3802)] = 113675, + [SMALL_STATE(3803)] = 113694, + [SMALL_STATE(3804)] = 113715, + [SMALL_STATE(3805)] = 113736, + [SMALL_STATE(3806)] = 113757, + [SMALL_STATE(3807)] = 113782, + [SMALL_STATE(3808)] = 113801, + [SMALL_STATE(3809)] = 113820, + [SMALL_STATE(3810)] = 113845, + [SMALL_STATE(3811)] = 113868, + [SMALL_STATE(3812)] = 113891, + [SMALL_STATE(3813)] = 113910, + [SMALL_STATE(3814)] = 113929, + [SMALL_STATE(3815)] = 113950, + [SMALL_STATE(3816)] = 113969, + [SMALL_STATE(3817)] = 113992, + [SMALL_STATE(3818)] = 114017, + [SMALL_STATE(3819)] = 114040, + [SMALL_STATE(3820)] = 114063, + [SMALL_STATE(3821)] = 114086, + [SMALL_STATE(3822)] = 114109, + [SMALL_STATE(3823)] = 114132, + [SMALL_STATE(3824)] = 114157, + [SMALL_STATE(3825)] = 114178, + [SMALL_STATE(3826)] = 114201, + [SMALL_STATE(3827)] = 114224, + [SMALL_STATE(3828)] = 114247, + [SMALL_STATE(3829)] = 114270, + [SMALL_STATE(3830)] = 114293, + [SMALL_STATE(3831)] = 114316, + [SMALL_STATE(3832)] = 114339, + [SMALL_STATE(3833)] = 114362, + [SMALL_STATE(3834)] = 114385, + [SMALL_STATE(3835)] = 114408, + [SMALL_STATE(3836)] = 114431, + [SMALL_STATE(3837)] = 114454, + [SMALL_STATE(3838)] = 114477, + [SMALL_STATE(3839)] = 114498, + [SMALL_STATE(3840)] = 114521, + [SMALL_STATE(3841)] = 114544, + [SMALL_STATE(3842)] = 114569, + [SMALL_STATE(3843)] = 114592, + [SMALL_STATE(3844)] = 114615, + [SMALL_STATE(3845)] = 114636, + [SMALL_STATE(3846)] = 114657, + [SMALL_STATE(3847)] = 114676, + [SMALL_STATE(3848)] = 114697, + [SMALL_STATE(3849)] = 114718, + [SMALL_STATE(3850)] = 114737, + [SMALL_STATE(3851)] = 114756, + [SMALL_STATE(3852)] = 114781, + [SMALL_STATE(3853)] = 114802, + [SMALL_STATE(3854)] = 114823, + [SMALL_STATE(3855)] = 114842, + [SMALL_STATE(3856)] = 114859, + [SMALL_STATE(3857)] = 114876, + [SMALL_STATE(3858)] = 114893, + [SMALL_STATE(3859)] = 114916, + [SMALL_STATE(3860)] = 114939, + [SMALL_STATE(3861)] = 114962, + [SMALL_STATE(3862)] = 114983, + [SMALL_STATE(3863)] = 115004, + [SMALL_STATE(3864)] = 115025, + [SMALL_STATE(3865)] = 115046, + [SMALL_STATE(3866)] = 115071, + [SMALL_STATE(3867)] = 115096, + [SMALL_STATE(3868)] = 115121, + [SMALL_STATE(3869)] = 115142, + [SMALL_STATE(3870)] = 115163, + [SMALL_STATE(3871)] = 115184, + [SMALL_STATE(3872)] = 115203, + [SMALL_STATE(3873)] = 115224, + [SMALL_STATE(3874)] = 115243, + [SMALL_STATE(3875)] = 115264, + [SMALL_STATE(3876)] = 115289, + [SMALL_STATE(3877)] = 115314, + [SMALL_STATE(3878)] = 115339, + [SMALL_STATE(3879)] = 115358, + [SMALL_STATE(3880)] = 115377, + [SMALL_STATE(3881)] = 115398, + [SMALL_STATE(3882)] = 115423, + [SMALL_STATE(3883)] = 115448, + [SMALL_STATE(3884)] = 115473, + [SMALL_STATE(3885)] = 115494, + [SMALL_STATE(3886)] = 115510, + [SMALL_STATE(3887)] = 115532, + [SMALL_STATE(3888)] = 115548, + [SMALL_STATE(3889)] = 115564, + [SMALL_STATE(3890)] = 115584, + [SMALL_STATE(3891)] = 115598, + [SMALL_STATE(3892)] = 115612, + [SMALL_STATE(3893)] = 115634, + [SMALL_STATE(3894)] = 115656, + [SMALL_STATE(3895)] = 115670, + [SMALL_STATE(3896)] = 115686, + [SMALL_STATE(3897)] = 115700, + [SMALL_STATE(3898)] = 115722, + [SMALL_STATE(3899)] = 115744, + [SMALL_STATE(3900)] = 115764, + [SMALL_STATE(3901)] = 115784, + [SMALL_STATE(3902)] = 115806, + [SMALL_STATE(3903)] = 115824, + [SMALL_STATE(3904)] = 115840, + [SMALL_STATE(3905)] = 115862, + [SMALL_STATE(3906)] = 115880, + [SMALL_STATE(3907)] = 115902, + [SMALL_STATE(3908)] = 115924, + [SMALL_STATE(3909)] = 115946, + [SMALL_STATE(3910)] = 115964, + [SMALL_STATE(3911)] = 115980, + [SMALL_STATE(3912)] = 116000, + [SMALL_STATE(3913)] = 116020, + [SMALL_STATE(3914)] = 116042, + [SMALL_STATE(3915)] = 116058, + [SMALL_STATE(3916)] = 116080, + [SMALL_STATE(3917)] = 116102, + [SMALL_STATE(3918)] = 116116, + [SMALL_STATE(3919)] = 116138, + [SMALL_STATE(3920)] = 116156, + [SMALL_STATE(3921)] = 116178, + [SMALL_STATE(3922)] = 116196, + [SMALL_STATE(3923)] = 116212, + [SMALL_STATE(3924)] = 116228, + [SMALL_STATE(3925)] = 116244, + [SMALL_STATE(3926)] = 116266, + [SMALL_STATE(3927)] = 116286, + [SMALL_STATE(3928)] = 116302, + [SMALL_STATE(3929)] = 116320, + [SMALL_STATE(3930)] = 116338, + [SMALL_STATE(3931)] = 116358, + [SMALL_STATE(3932)] = 116378, + [SMALL_STATE(3933)] = 116394, + [SMALL_STATE(3934)] = 116410, + [SMALL_STATE(3935)] = 116430, + [SMALL_STATE(3936)] = 116446, + [SMALL_STATE(3937)] = 116466, + [SMALL_STATE(3938)] = 116488, + [SMALL_STATE(3939)] = 116508, + [SMALL_STATE(3940)] = 116528, + [SMALL_STATE(3941)] = 116548, + [SMALL_STATE(3942)] = 116564, + [SMALL_STATE(3943)] = 116580, + [SMALL_STATE(3944)] = 116596, + [SMALL_STATE(3945)] = 116616, + [SMALL_STATE(3946)] = 116636, + [SMALL_STATE(3947)] = 116656, + [SMALL_STATE(3948)] = 116678, + [SMALL_STATE(3949)] = 116694, + [SMALL_STATE(3950)] = 116712, + [SMALL_STATE(3951)] = 116728, + [SMALL_STATE(3952)] = 116744, + [SMALL_STATE(3953)] = 116760, + [SMALL_STATE(3954)] = 116776, + [SMALL_STATE(3955)] = 116796, + [SMALL_STATE(3956)] = 116810, + [SMALL_STATE(3957)] = 116828, + [SMALL_STATE(3958)] = 116848, + [SMALL_STATE(3959)] = 116870, + [SMALL_STATE(3960)] = 116892, + [SMALL_STATE(3961)] = 116914, + [SMALL_STATE(3962)] = 116934, + [SMALL_STATE(3963)] = 116954, + [SMALL_STATE(3964)] = 116970, + [SMALL_STATE(3965)] = 116990, + [SMALL_STATE(3966)] = 117012, + [SMALL_STATE(3967)] = 117030, + [SMALL_STATE(3968)] = 117048, + [SMALL_STATE(3969)] = 117066, + [SMALL_STATE(3970)] = 117086, + [SMALL_STATE(3971)] = 117104, + [SMALL_STATE(3972)] = 117120, + [SMALL_STATE(3973)] = 117140, + [SMALL_STATE(3974)] = 117162, + [SMALL_STATE(3975)] = 117178, + [SMALL_STATE(3976)] = 117198, + [SMALL_STATE(3977)] = 117220, + [SMALL_STATE(3978)] = 117236, + [SMALL_STATE(3979)] = 117254, + [SMALL_STATE(3980)] = 117276, + [SMALL_STATE(3981)] = 117296, + [SMALL_STATE(3982)] = 117316, + [SMALL_STATE(3983)] = 117336, + [SMALL_STATE(3984)] = 117358, + [SMALL_STATE(3985)] = 117378, + [SMALL_STATE(3986)] = 117400, + [SMALL_STATE(3987)] = 117420, + [SMALL_STATE(3988)] = 117442, + [SMALL_STATE(3989)] = 117460, + [SMALL_STATE(3990)] = 117478, + [SMALL_STATE(3991)] = 117496, + [SMALL_STATE(3992)] = 117518, + [SMALL_STATE(3993)] = 117534, + [SMALL_STATE(3994)] = 117552, + [SMALL_STATE(3995)] = 117572, + [SMALL_STATE(3996)] = 117594, + [SMALL_STATE(3997)] = 117610, + [SMALL_STATE(3998)] = 117632, + [SMALL_STATE(3999)] = 117652, + [SMALL_STATE(4000)] = 117670, + [SMALL_STATE(4001)] = 117690, + [SMALL_STATE(4002)] = 117710, + [SMALL_STATE(4003)] = 117730, + [SMALL_STATE(4004)] = 117748, + [SMALL_STATE(4005)] = 117768, + [SMALL_STATE(4006)] = 117788, + [SMALL_STATE(4007)] = 117808, + [SMALL_STATE(4008)] = 117822, + [SMALL_STATE(4009)] = 117842, + [SMALL_STATE(4010)] = 117864, + [SMALL_STATE(4011)] = 117884, + [SMALL_STATE(4012)] = 117904, + [SMALL_STATE(4013)] = 117924, + [SMALL_STATE(4014)] = 117944, + [SMALL_STATE(4015)] = 117958, + [SMALL_STATE(4016)] = 117978, + [SMALL_STATE(4017)] = 117998, + [SMALL_STATE(4018)] = 118020, + [SMALL_STATE(4019)] = 118036, + [SMALL_STATE(4020)] = 118052, + [SMALL_STATE(4021)] = 118068, + [SMALL_STATE(4022)] = 118084, + [SMALL_STATE(4023)] = 118104, + [SMALL_STATE(4024)] = 118126, + [SMALL_STATE(4025)] = 118148, + [SMALL_STATE(4026)] = 118168, + [SMALL_STATE(4027)] = 118184, + [SMALL_STATE(4028)] = 118204, + [SMALL_STATE(4029)] = 118224, + [SMALL_STATE(4030)] = 118240, + [SMALL_STATE(4031)] = 118262, + [SMALL_STATE(4032)] = 118284, + [SMALL_STATE(4033)] = 118302, + [SMALL_STATE(4034)] = 118322, + [SMALL_STATE(4035)] = 118342, + [SMALL_STATE(4036)] = 118360, + [SMALL_STATE(4037)] = 118382, + [SMALL_STATE(4038)] = 118404, + [SMALL_STATE(4039)] = 118422, + [SMALL_STATE(4040)] = 118442, + [SMALL_STATE(4041)] = 118460, + [SMALL_STATE(4042)] = 118478, + [SMALL_STATE(4043)] = 118500, + [SMALL_STATE(4044)] = 118520, + [SMALL_STATE(4045)] = 118540, + [SMALL_STATE(4046)] = 118558, + [SMALL_STATE(4047)] = 118578, + [SMALL_STATE(4048)] = 118596, + [SMALL_STATE(4049)] = 118618, + [SMALL_STATE(4050)] = 118635, + [SMALL_STATE(4051)] = 118648, + [SMALL_STATE(4052)] = 118661, + [SMALL_STATE(4053)] = 118674, + [SMALL_STATE(4054)] = 118693, + [SMALL_STATE(4055)] = 118708, + [SMALL_STATE(4056)] = 118723, + [SMALL_STATE(4057)] = 118738, + [SMALL_STATE(4058)] = 118753, + [SMALL_STATE(4059)] = 118770, + [SMALL_STATE(4060)] = 118789, + [SMALL_STATE(4061)] = 118804, + [SMALL_STATE(4062)] = 118817, + [SMALL_STATE(4063)] = 118830, + [SMALL_STATE(4064)] = 118845, + [SMALL_STATE(4065)] = 118860, + [SMALL_STATE(4066)] = 118875, + [SMALL_STATE(4067)] = 118890, + [SMALL_STATE(4068)] = 118907, + [SMALL_STATE(4069)] = 118920, + [SMALL_STATE(4070)] = 118935, + [SMALL_STATE(4071)] = 118948, + [SMALL_STATE(4072)] = 118961, + [SMALL_STATE(4073)] = 118976, + [SMALL_STATE(4074)] = 118991, + [SMALL_STATE(4075)] = 119004, + [SMALL_STATE(4076)] = 119017, + [SMALL_STATE(4077)] = 119030, + [SMALL_STATE(4078)] = 119045, + [SMALL_STATE(4079)] = 119058, + [SMALL_STATE(4080)] = 119075, + [SMALL_STATE(4081)] = 119088, + [SMALL_STATE(4082)] = 119101, + [SMALL_STATE(4083)] = 119114, + [SMALL_STATE(4084)] = 119127, + [SMALL_STATE(4085)] = 119140, + [SMALL_STATE(4086)] = 119157, + [SMALL_STATE(4087)] = 119170, + [SMALL_STATE(4088)] = 119185, + [SMALL_STATE(4089)] = 119198, + [SMALL_STATE(4090)] = 119211, + [SMALL_STATE(4091)] = 119224, + [SMALL_STATE(4092)] = 119237, + [SMALL_STATE(4093)] = 119256, + [SMALL_STATE(4094)] = 119269, + [SMALL_STATE(4095)] = 119286, + [SMALL_STATE(4096)] = 119299, + [SMALL_STATE(4097)] = 119314, + [SMALL_STATE(4098)] = 119329, + [SMALL_STATE(4099)] = 119348, + [SMALL_STATE(4100)] = 119361, + [SMALL_STATE(4101)] = 119374, + [SMALL_STATE(4102)] = 119387, + [SMALL_STATE(4103)] = 119402, + [SMALL_STATE(4104)] = 119417, + [SMALL_STATE(4105)] = 119432, + [SMALL_STATE(4106)] = 119447, + [SMALL_STATE(4107)] = 119462, + [SMALL_STATE(4108)] = 119477, + [SMALL_STATE(4109)] = 119496, + [SMALL_STATE(4110)] = 119511, + [SMALL_STATE(4111)] = 119524, + [SMALL_STATE(4112)] = 119539, + [SMALL_STATE(4113)] = 119552, + [SMALL_STATE(4114)] = 119567, + [SMALL_STATE(4115)] = 119580, + [SMALL_STATE(4116)] = 119595, + [SMALL_STATE(4117)] = 119610, + [SMALL_STATE(4118)] = 119625, + [SMALL_STATE(4119)] = 119640, + [SMALL_STATE(4120)] = 119655, + [SMALL_STATE(4121)] = 119670, + [SMALL_STATE(4122)] = 119685, + [SMALL_STATE(4123)] = 119700, + [SMALL_STATE(4124)] = 119715, + [SMALL_STATE(4125)] = 119730, + [SMALL_STATE(4126)] = 119745, + [SMALL_STATE(4127)] = 119760, + [SMALL_STATE(4128)] = 119773, + [SMALL_STATE(4129)] = 119792, + [SMALL_STATE(4130)] = 119807, + [SMALL_STATE(4131)] = 119820, + [SMALL_STATE(4132)] = 119839, + [SMALL_STATE(4133)] = 119856, + [SMALL_STATE(4134)] = 119875, + [SMALL_STATE(4135)] = 119888, + [SMALL_STATE(4136)] = 119905, + [SMALL_STATE(4137)] = 119924, + [SMALL_STATE(4138)] = 119943, + [SMALL_STATE(4139)] = 119960, + [SMALL_STATE(4140)] = 119979, + [SMALL_STATE(4141)] = 119992, + [SMALL_STATE(4142)] = 120009, + [SMALL_STATE(4143)] = 120022, + [SMALL_STATE(4144)] = 120035, + [SMALL_STATE(4145)] = 120048, + [SMALL_STATE(4146)] = 120065, + [SMALL_STATE(4147)] = 120084, + [SMALL_STATE(4148)] = 120099, + [SMALL_STATE(4149)] = 120118, + [SMALL_STATE(4150)] = 120131, + [SMALL_STATE(4151)] = 120144, + [SMALL_STATE(4152)] = 120157, + [SMALL_STATE(4153)] = 120170, + [SMALL_STATE(4154)] = 120187, + [SMALL_STATE(4155)] = 120206, + [SMALL_STATE(4156)] = 120225, + [SMALL_STATE(4157)] = 120240, + [SMALL_STATE(4158)] = 120255, + [SMALL_STATE(4159)] = 120268, + [SMALL_STATE(4160)] = 120287, + [SMALL_STATE(4161)] = 120304, + [SMALL_STATE(4162)] = 120317, + [SMALL_STATE(4163)] = 120330, + [SMALL_STATE(4164)] = 120343, + [SMALL_STATE(4165)] = 120356, + [SMALL_STATE(4166)] = 120369, + [SMALL_STATE(4167)] = 120382, + [SMALL_STATE(4168)] = 120401, + [SMALL_STATE(4169)] = 120414, + [SMALL_STATE(4170)] = 120433, + [SMALL_STATE(4171)] = 120448, + [SMALL_STATE(4172)] = 120461, + [SMALL_STATE(4173)] = 120476, + [SMALL_STATE(4174)] = 120489, + [SMALL_STATE(4175)] = 120502, + [SMALL_STATE(4176)] = 120515, + [SMALL_STATE(4177)] = 120534, + [SMALL_STATE(4178)] = 120549, + [SMALL_STATE(4179)] = 120562, + [SMALL_STATE(4180)] = 120579, + [SMALL_STATE(4181)] = 120596, + [SMALL_STATE(4182)] = 120609, + [SMALL_STATE(4183)] = 120628, + [SMALL_STATE(4184)] = 120643, + [SMALL_STATE(4185)] = 120660, + [SMALL_STATE(4186)] = 120679, + [SMALL_STATE(4187)] = 120698, + [SMALL_STATE(4188)] = 120715, + [SMALL_STATE(4189)] = 120732, + [SMALL_STATE(4190)] = 120751, + [SMALL_STATE(4191)] = 120768, + [SMALL_STATE(4192)] = 120781, + [SMALL_STATE(4193)] = 120798, + [SMALL_STATE(4194)] = 120813, + [SMALL_STATE(4195)] = 120826, + [SMALL_STATE(4196)] = 120843, + [SMALL_STATE(4197)] = 120860, + [SMALL_STATE(4198)] = 120873, + [SMALL_STATE(4199)] = 120890, + [SMALL_STATE(4200)] = 120909, + [SMALL_STATE(4201)] = 120922, + [SMALL_STATE(4202)] = 120937, + [SMALL_STATE(4203)] = 120956, + [SMALL_STATE(4204)] = 120969, + [SMALL_STATE(4205)] = 120988, + [SMALL_STATE(4206)] = 121003, + [SMALL_STATE(4207)] = 121022, + [SMALL_STATE(4208)] = 121037, + [SMALL_STATE(4209)] = 121056, + [SMALL_STATE(4210)] = 121073, + [SMALL_STATE(4211)] = 121092, + [SMALL_STATE(4212)] = 121109, + [SMALL_STATE(4213)] = 121124, + [SMALL_STATE(4214)] = 121137, + [SMALL_STATE(4215)] = 121152, + [SMALL_STATE(4216)] = 121169, + [SMALL_STATE(4217)] = 121188, + [SMALL_STATE(4218)] = 121203, + [SMALL_STATE(4219)] = 121218, + [SMALL_STATE(4220)] = 121231, + [SMALL_STATE(4221)] = 121244, + [SMALL_STATE(4222)] = 121257, + [SMALL_STATE(4223)] = 121272, + [SMALL_STATE(4224)] = 121287, + [SMALL_STATE(4225)] = 121300, + [SMALL_STATE(4226)] = 121315, + [SMALL_STATE(4227)] = 121328, + [SMALL_STATE(4228)] = 121347, + [SMALL_STATE(4229)] = 121360, + [SMALL_STATE(4230)] = 121373, + [SMALL_STATE(4231)] = 121386, + [SMALL_STATE(4232)] = 121399, + [SMALL_STATE(4233)] = 121412, + [SMALL_STATE(4234)] = 121425, + [SMALL_STATE(4235)] = 121438, + [SMALL_STATE(4236)] = 121451, + [SMALL_STATE(4237)] = 121464, + [SMALL_STATE(4238)] = 121479, + [SMALL_STATE(4239)] = 121492, + [SMALL_STATE(4240)] = 121505, + [SMALL_STATE(4241)] = 121524, + [SMALL_STATE(4242)] = 121537, + [SMALL_STATE(4243)] = 121550, + [SMALL_STATE(4244)] = 121569, + [SMALL_STATE(4245)] = 121588, + [SMALL_STATE(4246)] = 121607, + [SMALL_STATE(4247)] = 121626, + [SMALL_STATE(4248)] = 121645, + [SMALL_STATE(4249)] = 121658, + [SMALL_STATE(4250)] = 121671, + [SMALL_STATE(4251)] = 121684, + [SMALL_STATE(4252)] = 121697, + [SMALL_STATE(4253)] = 121710, + [SMALL_STATE(4254)] = 121723, + [SMALL_STATE(4255)] = 121736, + [SMALL_STATE(4256)] = 121749, + [SMALL_STATE(4257)] = 121762, + [SMALL_STATE(4258)] = 121779, + [SMALL_STATE(4259)] = 121792, + [SMALL_STATE(4260)] = 121811, + [SMALL_STATE(4261)] = 121824, + [SMALL_STATE(4262)] = 121843, + [SMALL_STATE(4263)] = 121862, + [SMALL_STATE(4264)] = 121881, + [SMALL_STATE(4265)] = 121894, + [SMALL_STATE(4266)] = 121913, + [SMALL_STATE(4267)] = 121928, + [SMALL_STATE(4268)] = 121947, + [SMALL_STATE(4269)] = 121964, + [SMALL_STATE(4270)] = 121983, + [SMALL_STATE(4271)] = 121996, + [SMALL_STATE(4272)] = 122009, + [SMALL_STATE(4273)] = 122026, + [SMALL_STATE(4274)] = 122043, + [SMALL_STATE(4275)] = 122056, + [SMALL_STATE(4276)] = 122075, + [SMALL_STATE(4277)] = 122090, + [SMALL_STATE(4278)] = 122103, + [SMALL_STATE(4279)] = 122122, + [SMALL_STATE(4280)] = 122141, + [SMALL_STATE(4281)] = 122160, + [SMALL_STATE(4282)] = 122175, + [SMALL_STATE(4283)] = 122194, + [SMALL_STATE(4284)] = 122209, + [SMALL_STATE(4285)] = 122222, + [SMALL_STATE(4286)] = 122241, + [SMALL_STATE(4287)] = 122256, + [SMALL_STATE(4288)] = 122275, + [SMALL_STATE(4289)] = 122290, + [SMALL_STATE(4290)] = 122309, + [SMALL_STATE(4291)] = 122322, + [SMALL_STATE(4292)] = 122335, + [SMALL_STATE(4293)] = 122354, + [SMALL_STATE(4294)] = 122371, + [SMALL_STATE(4295)] = 122386, + [SMALL_STATE(4296)] = 122399, + [SMALL_STATE(4297)] = 122416, + [SMALL_STATE(4298)] = 122433, + [SMALL_STATE(4299)] = 122450, + [SMALL_STATE(4300)] = 122469, + [SMALL_STATE(4301)] = 122482, + [SMALL_STATE(4302)] = 122501, + [SMALL_STATE(4303)] = 122514, + [SMALL_STATE(4304)] = 122527, + [SMALL_STATE(4305)] = 122546, + [SMALL_STATE(4306)] = 122561, + [SMALL_STATE(4307)] = 122578, + [SMALL_STATE(4308)] = 122597, + [SMALL_STATE(4309)] = 122610, + [SMALL_STATE(4310)] = 122623, + [SMALL_STATE(4311)] = 122638, + [SMALL_STATE(4312)] = 122651, + [SMALL_STATE(4313)] = 122664, + [SMALL_STATE(4314)] = 122679, + [SMALL_STATE(4315)] = 122692, + [SMALL_STATE(4316)] = 122707, + [SMALL_STATE(4317)] = 122720, + [SMALL_STATE(4318)] = 122735, + [SMALL_STATE(4319)] = 122748, + [SMALL_STATE(4320)] = 122761, + [SMALL_STATE(4321)] = 122774, + [SMALL_STATE(4322)] = 122787, + [SMALL_STATE(4323)] = 122800, + [SMALL_STATE(4324)] = 122817, + [SMALL_STATE(4325)] = 122830, + [SMALL_STATE(4326)] = 122847, + [SMALL_STATE(4327)] = 122860, + [SMALL_STATE(4328)] = 122873, + [SMALL_STATE(4329)] = 122886, + [SMALL_STATE(4330)] = 122899, + [SMALL_STATE(4331)] = 122912, + [SMALL_STATE(4332)] = 122925, + [SMALL_STATE(4333)] = 122938, + [SMALL_STATE(4334)] = 122951, + [SMALL_STATE(4335)] = 122964, + [SMALL_STATE(4336)] = 122977, + [SMALL_STATE(4337)] = 122992, + [SMALL_STATE(4338)] = 123005, + [SMALL_STATE(4339)] = 123018, + [SMALL_STATE(4340)] = 123033, + [SMALL_STATE(4341)] = 123046, + [SMALL_STATE(4342)] = 123059, + [SMALL_STATE(4343)] = 123072, + [SMALL_STATE(4344)] = 123085, + [SMALL_STATE(4345)] = 123098, + [SMALL_STATE(4346)] = 123113, + [SMALL_STATE(4347)] = 123126, + [SMALL_STATE(4348)] = 123139, + [SMALL_STATE(4349)] = 123152, + [SMALL_STATE(4350)] = 123165, + [SMALL_STATE(4351)] = 123180, + [SMALL_STATE(4352)] = 123193, + [SMALL_STATE(4353)] = 123212, + [SMALL_STATE(4354)] = 123227, + [SMALL_STATE(4355)] = 123244, + [SMALL_STATE(4356)] = 123263, + [SMALL_STATE(4357)] = 123282, + [SMALL_STATE(4358)] = 123301, + [SMALL_STATE(4359)] = 123320, + [SMALL_STATE(4360)] = 123337, + [SMALL_STATE(4361)] = 123356, + [SMALL_STATE(4362)] = 123375, + [SMALL_STATE(4363)] = 123394, + [SMALL_STATE(4364)] = 123413, + [SMALL_STATE(4365)] = 123432, + [SMALL_STATE(4366)] = 123451, + [SMALL_STATE(4367)] = 123470, + [SMALL_STATE(4368)] = 123483, + [SMALL_STATE(4369)] = 123495, + [SMALL_STATE(4370)] = 123507, + [SMALL_STATE(4371)] = 123519, + [SMALL_STATE(4372)] = 123533, + [SMALL_STATE(4373)] = 123545, + [SMALL_STATE(4374)] = 123561, + [SMALL_STATE(4375)] = 123577, + [SMALL_STATE(4376)] = 123589, + [SMALL_STATE(4377)] = 123603, + [SMALL_STATE(4378)] = 123615, + [SMALL_STATE(4379)] = 123631, + [SMALL_STATE(4380)] = 123647, + [SMALL_STATE(4381)] = 123663, + [SMALL_STATE(4382)] = 123677, + [SMALL_STATE(4383)] = 123691, + [SMALL_STATE(4384)] = 123703, + [SMALL_STATE(4385)] = 123719, + [SMALL_STATE(4386)] = 123731, + [SMALL_STATE(4387)] = 123743, + [SMALL_STATE(4388)] = 123755, + [SMALL_STATE(4389)] = 123771, + [SMALL_STATE(4390)] = 123787, + [SMALL_STATE(4391)] = 123799, + [SMALL_STATE(4392)] = 123815, + [SMALL_STATE(4393)] = 123831, + [SMALL_STATE(4394)] = 123845, + [SMALL_STATE(4395)] = 123857, + [SMALL_STATE(4396)] = 123869, + [SMALL_STATE(4397)] = 123885, + [SMALL_STATE(4398)] = 123897, + [SMALL_STATE(4399)] = 123911, + [SMALL_STATE(4400)] = 123923, + [SMALL_STATE(4401)] = 123939, + [SMALL_STATE(4402)] = 123951, + [SMALL_STATE(4403)] = 123967, + [SMALL_STATE(4404)] = 123979, + [SMALL_STATE(4405)] = 123991, + [SMALL_STATE(4406)] = 124007, + [SMALL_STATE(4407)] = 124019, + [SMALL_STATE(4408)] = 124035, + [SMALL_STATE(4409)] = 124047, + [SMALL_STATE(4410)] = 124059, + [SMALL_STATE(4411)] = 124073, + [SMALL_STATE(4412)] = 124089, + [SMALL_STATE(4413)] = 124101, + [SMALL_STATE(4414)] = 124113, + [SMALL_STATE(4415)] = 124125, + [SMALL_STATE(4416)] = 124137, + [SMALL_STATE(4417)] = 124151, + [SMALL_STATE(4418)] = 124165, + [SMALL_STATE(4419)] = 124181, + [SMALL_STATE(4420)] = 124193, + [SMALL_STATE(4421)] = 124205, + [SMALL_STATE(4422)] = 124217, + [SMALL_STATE(4423)] = 124229, + [SMALL_STATE(4424)] = 124241, + [SMALL_STATE(4425)] = 124255, + [SMALL_STATE(4426)] = 124269, + [SMALL_STATE(4427)] = 124283, + [SMALL_STATE(4428)] = 124295, + [SMALL_STATE(4429)] = 124307, + [SMALL_STATE(4430)] = 124323, + [SMALL_STATE(4431)] = 124339, + [SMALL_STATE(4432)] = 124351, + [SMALL_STATE(4433)] = 124363, + [SMALL_STATE(4434)] = 124375, + [SMALL_STATE(4435)] = 124387, + [SMALL_STATE(4436)] = 124403, + [SMALL_STATE(4437)] = 124415, + [SMALL_STATE(4438)] = 124427, + [SMALL_STATE(4439)] = 124441, + [SMALL_STATE(4440)] = 124453, + [SMALL_STATE(4441)] = 124465, + [SMALL_STATE(4442)] = 124477, + [SMALL_STATE(4443)] = 124489, + [SMALL_STATE(4444)] = 124503, + [SMALL_STATE(4445)] = 124515, + [SMALL_STATE(4446)] = 124527, + [SMALL_STATE(4447)] = 124539, + [SMALL_STATE(4448)] = 124551, + [SMALL_STATE(4449)] = 124567, + [SMALL_STATE(4450)] = 124583, + [SMALL_STATE(4451)] = 124599, + [SMALL_STATE(4452)] = 124615, + [SMALL_STATE(4453)] = 124631, + [SMALL_STATE(4454)] = 124647, + [SMALL_STATE(4455)] = 124663, + [SMALL_STATE(4456)] = 124679, + [SMALL_STATE(4457)] = 124691, + [SMALL_STATE(4458)] = 124705, + [SMALL_STATE(4459)] = 124719, + [SMALL_STATE(4460)] = 124735, + [SMALL_STATE(4461)] = 124751, + [SMALL_STATE(4462)] = 124765, + [SMALL_STATE(4463)] = 124779, + [SMALL_STATE(4464)] = 124791, + [SMALL_STATE(4465)] = 124805, + [SMALL_STATE(4466)] = 124817, + [SMALL_STATE(4467)] = 124829, + [SMALL_STATE(4468)] = 124841, + [SMALL_STATE(4469)] = 124853, + [SMALL_STATE(4470)] = 124865, + [SMALL_STATE(4471)] = 124877, + [SMALL_STATE(4472)] = 124893, + [SMALL_STATE(4473)] = 124909, + [SMALL_STATE(4474)] = 124921, + [SMALL_STATE(4475)] = 124933, + [SMALL_STATE(4476)] = 124949, + [SMALL_STATE(4477)] = 124965, + [SMALL_STATE(4478)] = 124977, + [SMALL_STATE(4479)] = 124993, + [SMALL_STATE(4480)] = 125007, + [SMALL_STATE(4481)] = 125021, + [SMALL_STATE(4482)] = 125035, + [SMALL_STATE(4483)] = 125049, + [SMALL_STATE(4484)] = 125063, + [SMALL_STATE(4485)] = 125077, + [SMALL_STATE(4486)] = 125093, + [SMALL_STATE(4487)] = 125109, + [SMALL_STATE(4488)] = 125125, + [SMALL_STATE(4489)] = 125141, + [SMALL_STATE(4490)] = 125153, + [SMALL_STATE(4491)] = 125165, + [SMALL_STATE(4492)] = 125181, + [SMALL_STATE(4493)] = 125193, + [SMALL_STATE(4494)] = 125205, + [SMALL_STATE(4495)] = 125217, + [SMALL_STATE(4496)] = 125233, + [SMALL_STATE(4497)] = 125249, + [SMALL_STATE(4498)] = 125265, + [SMALL_STATE(4499)] = 125277, + [SMALL_STATE(4500)] = 125293, + [SMALL_STATE(4501)] = 125305, + [SMALL_STATE(4502)] = 125317, + [SMALL_STATE(4503)] = 125333, + [SMALL_STATE(4504)] = 125349, + [SMALL_STATE(4505)] = 125365, + [SMALL_STATE(4506)] = 125381, + [SMALL_STATE(4507)] = 125397, + [SMALL_STATE(4508)] = 125409, + [SMALL_STATE(4509)] = 125423, + [SMALL_STATE(4510)] = 125437, + [SMALL_STATE(4511)] = 125453, + [SMALL_STATE(4512)] = 125465, + [SMALL_STATE(4513)] = 125481, + [SMALL_STATE(4514)] = 125493, + [SMALL_STATE(4515)] = 125509, + [SMALL_STATE(4516)] = 125523, + [SMALL_STATE(4517)] = 125537, + [SMALL_STATE(4518)] = 125553, + [SMALL_STATE(4519)] = 125565, + [SMALL_STATE(4520)] = 125579, + [SMALL_STATE(4521)] = 125593, + [SMALL_STATE(4522)] = 125607, + [SMALL_STATE(4523)] = 125619, + [SMALL_STATE(4524)] = 125633, + [SMALL_STATE(4525)] = 125647, + [SMALL_STATE(4526)] = 125659, + [SMALL_STATE(4527)] = 125671, + [SMALL_STATE(4528)] = 125683, + [SMALL_STATE(4529)] = 125699, + [SMALL_STATE(4530)] = 125711, + [SMALL_STATE(4531)] = 125727, + [SMALL_STATE(4532)] = 125739, + [SMALL_STATE(4533)] = 125751, + [SMALL_STATE(4534)] = 125763, + [SMALL_STATE(4535)] = 125775, + [SMALL_STATE(4536)] = 125787, + [SMALL_STATE(4537)] = 125801, + [SMALL_STATE(4538)] = 125813, + [SMALL_STATE(4539)] = 125825, + [SMALL_STATE(4540)] = 125837, + [SMALL_STATE(4541)] = 125853, + [SMALL_STATE(4542)] = 125867, + [SMALL_STATE(4543)] = 125879, + [SMALL_STATE(4544)] = 125893, + [SMALL_STATE(4545)] = 125909, + [SMALL_STATE(4546)] = 125925, + [SMALL_STATE(4547)] = 125941, + [SMALL_STATE(4548)] = 125957, + [SMALL_STATE(4549)] = 125969, + [SMALL_STATE(4550)] = 125985, + [SMALL_STATE(4551)] = 125997, + [SMALL_STATE(4552)] = 126009, + [SMALL_STATE(4553)] = 126025, + [SMALL_STATE(4554)] = 126037, + [SMALL_STATE(4555)] = 126053, + [SMALL_STATE(4556)] = 126069, + [SMALL_STATE(4557)] = 126085, + [SMALL_STATE(4558)] = 126097, + [SMALL_STATE(4559)] = 126111, + [SMALL_STATE(4560)] = 126127, + [SMALL_STATE(4561)] = 126143, + [SMALL_STATE(4562)] = 126159, + [SMALL_STATE(4563)] = 126171, + [SMALL_STATE(4564)] = 126183, + [SMALL_STATE(4565)] = 126199, + [SMALL_STATE(4566)] = 126211, + [SMALL_STATE(4567)] = 126223, + [SMALL_STATE(4568)] = 126235, + [SMALL_STATE(4569)] = 126247, + [SMALL_STATE(4570)] = 126259, + [SMALL_STATE(4571)] = 126275, + [SMALL_STATE(4572)] = 126287, + [SMALL_STATE(4573)] = 126303, + [SMALL_STATE(4574)] = 126317, + [SMALL_STATE(4575)] = 126331, + [SMALL_STATE(4576)] = 126345, + [SMALL_STATE(4577)] = 126361, + [SMALL_STATE(4578)] = 126377, + [SMALL_STATE(4579)] = 126393, + [SMALL_STATE(4580)] = 126407, + [SMALL_STATE(4581)] = 126421, + [SMALL_STATE(4582)] = 126437, + [SMALL_STATE(4583)] = 126453, + [SMALL_STATE(4584)] = 126467, + [SMALL_STATE(4585)] = 126479, + [SMALL_STATE(4586)] = 126495, + [SMALL_STATE(4587)] = 126509, + [SMALL_STATE(4588)] = 126525, + [SMALL_STATE(4589)] = 126541, + [SMALL_STATE(4590)] = 126557, + [SMALL_STATE(4591)] = 126569, + [SMALL_STATE(4592)] = 126585, + [SMALL_STATE(4593)] = 126601, + [SMALL_STATE(4594)] = 126613, + [SMALL_STATE(4595)] = 126625, + [SMALL_STATE(4596)] = 126641, + [SMALL_STATE(4597)] = 126655, + [SMALL_STATE(4598)] = 126671, + [SMALL_STATE(4599)] = 126687, + [SMALL_STATE(4600)] = 126703, + [SMALL_STATE(4601)] = 126715, + [SMALL_STATE(4602)] = 126729, + [SMALL_STATE(4603)] = 126745, + [SMALL_STATE(4604)] = 126761, + [SMALL_STATE(4605)] = 126777, + [SMALL_STATE(4606)] = 126789, + [SMALL_STATE(4607)] = 126805, + [SMALL_STATE(4608)] = 126817, + [SMALL_STATE(4609)] = 126831, + [SMALL_STATE(4610)] = 126843, + [SMALL_STATE(4611)] = 126859, + [SMALL_STATE(4612)] = 126875, + [SMALL_STATE(4613)] = 126887, + [SMALL_STATE(4614)] = 126903, + [SMALL_STATE(4615)] = 126915, + [SMALL_STATE(4616)] = 126927, + [SMALL_STATE(4617)] = 126943, + [SMALL_STATE(4618)] = 126959, + [SMALL_STATE(4619)] = 126975, + [SMALL_STATE(4620)] = 126987, + [SMALL_STATE(4621)] = 126999, + [SMALL_STATE(4622)] = 127011, + [SMALL_STATE(4623)] = 127024, + [SMALL_STATE(4624)] = 127037, + [SMALL_STATE(4625)] = 127050, + [SMALL_STATE(4626)] = 127063, + [SMALL_STATE(4627)] = 127076, + [SMALL_STATE(4628)] = 127089, + [SMALL_STATE(4629)] = 127102, + [SMALL_STATE(4630)] = 127115, + [SMALL_STATE(4631)] = 127128, + [SMALL_STATE(4632)] = 127141, + [SMALL_STATE(4633)] = 127154, + [SMALL_STATE(4634)] = 127167, + [SMALL_STATE(4635)] = 127180, + [SMALL_STATE(4636)] = 127193, + [SMALL_STATE(4637)] = 127206, + [SMALL_STATE(4638)] = 127219, + [SMALL_STATE(4639)] = 127232, + [SMALL_STATE(4640)] = 127245, + [SMALL_STATE(4641)] = 127258, + [SMALL_STATE(4642)] = 127271, + [SMALL_STATE(4643)] = 127284, + [SMALL_STATE(4644)] = 127297, + [SMALL_STATE(4645)] = 127310, + [SMALL_STATE(4646)] = 127323, + [SMALL_STATE(4647)] = 127336, + [SMALL_STATE(4648)] = 127349, + [SMALL_STATE(4649)] = 127362, + [SMALL_STATE(4650)] = 127375, + [SMALL_STATE(4651)] = 127388, + [SMALL_STATE(4652)] = 127401, + [SMALL_STATE(4653)] = 127414, + [SMALL_STATE(4654)] = 127427, + [SMALL_STATE(4655)] = 127440, + [SMALL_STATE(4656)] = 127453, + [SMALL_STATE(4657)] = 127466, + [SMALL_STATE(4658)] = 127479, + [SMALL_STATE(4659)] = 127492, + [SMALL_STATE(4660)] = 127505, + [SMALL_STATE(4661)] = 127518, + [SMALL_STATE(4662)] = 127531, + [SMALL_STATE(4663)] = 127544, + [SMALL_STATE(4664)] = 127557, + [SMALL_STATE(4665)] = 127570, + [SMALL_STATE(4666)] = 127583, + [SMALL_STATE(4667)] = 127596, + [SMALL_STATE(4668)] = 127609, + [SMALL_STATE(4669)] = 127622, + [SMALL_STATE(4670)] = 127633, + [SMALL_STATE(4671)] = 127646, + [SMALL_STATE(4672)] = 127659, + [SMALL_STATE(4673)] = 127672, + [SMALL_STATE(4674)] = 127685, + [SMALL_STATE(4675)] = 127698, + [SMALL_STATE(4676)] = 127709, + [SMALL_STATE(4677)] = 127722, + [SMALL_STATE(4678)] = 127735, + [SMALL_STATE(4679)] = 127748, + [SMALL_STATE(4680)] = 127761, + [SMALL_STATE(4681)] = 127774, + [SMALL_STATE(4682)] = 127787, + [SMALL_STATE(4683)] = 127800, + [SMALL_STATE(4684)] = 127813, + [SMALL_STATE(4685)] = 127826, + [SMALL_STATE(4686)] = 127839, + [SMALL_STATE(4687)] = 127852, + [SMALL_STATE(4688)] = 127865, + [SMALL_STATE(4689)] = 127878, + [SMALL_STATE(4690)] = 127891, + [SMALL_STATE(4691)] = 127904, + [SMALL_STATE(4692)] = 127917, + [SMALL_STATE(4693)] = 127930, + [SMALL_STATE(4694)] = 127943, + [SMALL_STATE(4695)] = 127954, + [SMALL_STATE(4696)] = 127967, + [SMALL_STATE(4697)] = 127980, + [SMALL_STATE(4698)] = 127993, + [SMALL_STATE(4699)] = 128006, + [SMALL_STATE(4700)] = 128019, + [SMALL_STATE(4701)] = 128032, + [SMALL_STATE(4702)] = 128045, + [SMALL_STATE(4703)] = 128058, + [SMALL_STATE(4704)] = 128071, + [SMALL_STATE(4705)] = 128084, + [SMALL_STATE(4706)] = 128097, + [SMALL_STATE(4707)] = 128110, + [SMALL_STATE(4708)] = 128121, + [SMALL_STATE(4709)] = 128134, + [SMALL_STATE(4710)] = 128145, + [SMALL_STATE(4711)] = 128158, + [SMALL_STATE(4712)] = 128171, + [SMALL_STATE(4713)] = 128182, + [SMALL_STATE(4714)] = 128195, + [SMALL_STATE(4715)] = 128208, + [SMALL_STATE(4716)] = 128221, + [SMALL_STATE(4717)] = 128232, + [SMALL_STATE(4718)] = 128245, + [SMALL_STATE(4719)] = 128258, + [SMALL_STATE(4720)] = 128271, + [SMALL_STATE(4721)] = 128284, + [SMALL_STATE(4722)] = 128297, + [SMALL_STATE(4723)] = 128310, + [SMALL_STATE(4724)] = 128323, + [SMALL_STATE(4725)] = 128334, + [SMALL_STATE(4726)] = 128347, + [SMALL_STATE(4727)] = 128360, + [SMALL_STATE(4728)] = 128373, + [SMALL_STATE(4729)] = 128386, + [SMALL_STATE(4730)] = 128397, + [SMALL_STATE(4731)] = 128410, + [SMALL_STATE(4732)] = 128423, + [SMALL_STATE(4733)] = 128436, + [SMALL_STATE(4734)] = 128449, + [SMALL_STATE(4735)] = 128462, + [SMALL_STATE(4736)] = 128475, + [SMALL_STATE(4737)] = 128488, + [SMALL_STATE(4738)] = 128501, + [SMALL_STATE(4739)] = 128514, + [SMALL_STATE(4740)] = 128527, + [SMALL_STATE(4741)] = 128540, + [SMALL_STATE(4742)] = 128553, + [SMALL_STATE(4743)] = 128566, + [SMALL_STATE(4744)] = 128579, + [SMALL_STATE(4745)] = 128592, + [SMALL_STATE(4746)] = 128605, + [SMALL_STATE(4747)] = 128618, + [SMALL_STATE(4748)] = 128631, + [SMALL_STATE(4749)] = 128644, + [SMALL_STATE(4750)] = 128657, + [SMALL_STATE(4751)] = 128670, + [SMALL_STATE(4752)] = 128683, + [SMALL_STATE(4753)] = 128696, + [SMALL_STATE(4754)] = 128709, + [SMALL_STATE(4755)] = 128722, + [SMALL_STATE(4756)] = 128735, + [SMALL_STATE(4757)] = 128746, + [SMALL_STATE(4758)] = 128759, + [SMALL_STATE(4759)] = 128772, + [SMALL_STATE(4760)] = 128785, + [SMALL_STATE(4761)] = 128798, + [SMALL_STATE(4762)] = 128811, + [SMALL_STATE(4763)] = 128824, + [SMALL_STATE(4764)] = 128837, + [SMALL_STATE(4765)] = 128850, + [SMALL_STATE(4766)] = 128863, + [SMALL_STATE(4767)] = 128876, + [SMALL_STATE(4768)] = 128889, + [SMALL_STATE(4769)] = 128902, + [SMALL_STATE(4770)] = 128915, + [SMALL_STATE(4771)] = 128928, + [SMALL_STATE(4772)] = 128941, + [SMALL_STATE(4773)] = 128954, + [SMALL_STATE(4774)] = 128967, + [SMALL_STATE(4775)] = 128980, + [SMALL_STATE(4776)] = 128993, + [SMALL_STATE(4777)] = 129006, + [SMALL_STATE(4778)] = 129019, + [SMALL_STATE(4779)] = 129030, + [SMALL_STATE(4780)] = 129043, + [SMALL_STATE(4781)] = 129056, + [SMALL_STATE(4782)] = 129069, + [SMALL_STATE(4783)] = 129082, + [SMALL_STATE(4784)] = 129095, + [SMALL_STATE(4785)] = 129108, + [SMALL_STATE(4786)] = 129121, + [SMALL_STATE(4787)] = 129134, + [SMALL_STATE(4788)] = 129147, + [SMALL_STATE(4789)] = 129160, + [SMALL_STATE(4790)] = 129173, + [SMALL_STATE(4791)] = 129186, + [SMALL_STATE(4792)] = 129199, + [SMALL_STATE(4793)] = 129209, + [SMALL_STATE(4794)] = 129219, + [SMALL_STATE(4795)] = 129229, + [SMALL_STATE(4796)] = 129239, + [SMALL_STATE(4797)] = 129249, + [SMALL_STATE(4798)] = 129259, + [SMALL_STATE(4799)] = 129269, + [SMALL_STATE(4800)] = 129279, + [SMALL_STATE(4801)] = 129289, + [SMALL_STATE(4802)] = 129299, + [SMALL_STATE(4803)] = 129309, + [SMALL_STATE(4804)] = 129319, + [SMALL_STATE(4805)] = 129329, + [SMALL_STATE(4806)] = 129339, + [SMALL_STATE(4807)] = 129349, + [SMALL_STATE(4808)] = 129359, + [SMALL_STATE(4809)] = 129369, + [SMALL_STATE(4810)] = 129379, + [SMALL_STATE(4811)] = 129389, + [SMALL_STATE(4812)] = 129399, + [SMALL_STATE(4813)] = 129409, + [SMALL_STATE(4814)] = 129419, + [SMALL_STATE(4815)] = 129429, + [SMALL_STATE(4816)] = 129439, + [SMALL_STATE(4817)] = 129449, + [SMALL_STATE(4818)] = 129459, + [SMALL_STATE(4819)] = 129469, + [SMALL_STATE(4820)] = 129479, + [SMALL_STATE(4821)] = 129489, + [SMALL_STATE(4822)] = 129499, + [SMALL_STATE(4823)] = 129509, + [SMALL_STATE(4824)] = 129519, + [SMALL_STATE(4825)] = 129529, + [SMALL_STATE(4826)] = 129539, + [SMALL_STATE(4827)] = 129549, + [SMALL_STATE(4828)] = 129559, + [SMALL_STATE(4829)] = 129569, + [SMALL_STATE(4830)] = 129579, + [SMALL_STATE(4831)] = 129589, + [SMALL_STATE(4832)] = 129599, + [SMALL_STATE(4833)] = 129609, + [SMALL_STATE(4834)] = 129619, + [SMALL_STATE(4835)] = 129629, + [SMALL_STATE(4836)] = 129639, + [SMALL_STATE(4837)] = 129649, + [SMALL_STATE(4838)] = 129659, + [SMALL_STATE(4839)] = 129669, + [SMALL_STATE(4840)] = 129679, + [SMALL_STATE(4841)] = 129689, + [SMALL_STATE(4842)] = 129699, + [SMALL_STATE(4843)] = 129709, + [SMALL_STATE(4844)] = 129719, + [SMALL_STATE(4845)] = 129729, + [SMALL_STATE(4846)] = 129739, + [SMALL_STATE(4847)] = 129749, + [SMALL_STATE(4848)] = 129759, + [SMALL_STATE(4849)] = 129769, + [SMALL_STATE(4850)] = 129779, + [SMALL_STATE(4851)] = 129789, + [SMALL_STATE(4852)] = 129799, + [SMALL_STATE(4853)] = 129809, + [SMALL_STATE(4854)] = 129819, + [SMALL_STATE(4855)] = 129829, + [SMALL_STATE(4856)] = 129839, + [SMALL_STATE(4857)] = 129849, + [SMALL_STATE(4858)] = 129859, + [SMALL_STATE(4859)] = 129869, + [SMALL_STATE(4860)] = 129879, + [SMALL_STATE(4861)] = 129889, + [SMALL_STATE(4862)] = 129899, + [SMALL_STATE(4863)] = 129909, + [SMALL_STATE(4864)] = 129919, + [SMALL_STATE(4865)] = 129929, + [SMALL_STATE(4866)] = 129939, + [SMALL_STATE(4867)] = 129949, + [SMALL_STATE(4868)] = 129959, + [SMALL_STATE(4869)] = 129969, + [SMALL_STATE(4870)] = 129979, + [SMALL_STATE(4871)] = 129989, + [SMALL_STATE(4872)] = 129999, + [SMALL_STATE(4873)] = 130009, + [SMALL_STATE(4874)] = 130019, + [SMALL_STATE(4875)] = 130029, + [SMALL_STATE(4876)] = 130039, + [SMALL_STATE(4877)] = 130049, + [SMALL_STATE(4878)] = 130059, + [SMALL_STATE(4879)] = 130069, + [SMALL_STATE(4880)] = 130079, + [SMALL_STATE(4881)] = 130089, + [SMALL_STATE(4882)] = 130099, + [SMALL_STATE(4883)] = 130109, + [SMALL_STATE(4884)] = 130119, + [SMALL_STATE(4885)] = 130129, + [SMALL_STATE(4886)] = 130139, + [SMALL_STATE(4887)] = 130149, + [SMALL_STATE(4888)] = 130159, + [SMALL_STATE(4889)] = 130169, + [SMALL_STATE(4890)] = 130179, + [SMALL_STATE(4891)] = 130189, + [SMALL_STATE(4892)] = 130199, + [SMALL_STATE(4893)] = 130209, + [SMALL_STATE(4894)] = 130219, + [SMALL_STATE(4895)] = 130229, + [SMALL_STATE(4896)] = 130239, + [SMALL_STATE(4897)] = 130249, + [SMALL_STATE(4898)] = 130259, + [SMALL_STATE(4899)] = 130269, + [SMALL_STATE(4900)] = 130279, + [SMALL_STATE(4901)] = 130289, + [SMALL_STATE(4902)] = 130299, + [SMALL_STATE(4903)] = 130309, + [SMALL_STATE(4904)] = 130319, + [SMALL_STATE(4905)] = 130329, + [SMALL_STATE(4906)] = 130339, + [SMALL_STATE(4907)] = 130349, + [SMALL_STATE(4908)] = 130359, + [SMALL_STATE(4909)] = 130369, + [SMALL_STATE(4910)] = 130379, + [SMALL_STATE(4911)] = 130389, + [SMALL_STATE(4912)] = 130399, + [SMALL_STATE(4913)] = 130409, + [SMALL_STATE(4914)] = 130419, + [SMALL_STATE(4915)] = 130429, + [SMALL_STATE(4916)] = 130439, + [SMALL_STATE(4917)] = 130449, + [SMALL_STATE(4918)] = 130459, + [SMALL_STATE(4919)] = 130469, + [SMALL_STATE(4920)] = 130479, + [SMALL_STATE(4921)] = 130489, + [SMALL_STATE(4922)] = 130499, + [SMALL_STATE(4923)] = 130509, + [SMALL_STATE(4924)] = 130519, + [SMALL_STATE(4925)] = 130529, + [SMALL_STATE(4926)] = 130539, + [SMALL_STATE(4927)] = 130549, + [SMALL_STATE(4928)] = 130559, + [SMALL_STATE(4929)] = 130569, + [SMALL_STATE(4930)] = 130579, + [SMALL_STATE(4931)] = 130589, + [SMALL_STATE(4932)] = 130599, + [SMALL_STATE(4933)] = 130609, + [SMALL_STATE(4934)] = 130619, + [SMALL_STATE(4935)] = 130629, + [SMALL_STATE(4936)] = 130639, + [SMALL_STATE(4937)] = 130649, + [SMALL_STATE(4938)] = 130659, + [SMALL_STATE(4939)] = 130669, + [SMALL_STATE(4940)] = 130679, + [SMALL_STATE(4941)] = 130689, + [SMALL_STATE(4942)] = 130699, + [SMALL_STATE(4943)] = 130709, + [SMALL_STATE(4944)] = 130719, + [SMALL_STATE(4945)] = 130729, + [SMALL_STATE(4946)] = 130739, + [SMALL_STATE(4947)] = 130749, + [SMALL_STATE(4948)] = 130759, + [SMALL_STATE(4949)] = 130769, + [SMALL_STATE(4950)] = 130779, + [SMALL_STATE(4951)] = 130789, + [SMALL_STATE(4952)] = 130799, + [SMALL_STATE(4953)] = 130809, + [SMALL_STATE(4954)] = 130819, + [SMALL_STATE(4955)] = 130829, + [SMALL_STATE(4956)] = 130839, + [SMALL_STATE(4957)] = 130849, + [SMALL_STATE(4958)] = 130859, + [SMALL_STATE(4959)] = 130869, + [SMALL_STATE(4960)] = 130879, + [SMALL_STATE(4961)] = 130889, + [SMALL_STATE(4962)] = 130899, + [SMALL_STATE(4963)] = 130909, + [SMALL_STATE(4964)] = 130919, + [SMALL_STATE(4965)] = 130929, + [SMALL_STATE(4966)] = 130939, + [SMALL_STATE(4967)] = 130949, + [SMALL_STATE(4968)] = 130959, + [SMALL_STATE(4969)] = 130969, + [SMALL_STATE(4970)] = 130979, + [SMALL_STATE(4971)] = 130989, + [SMALL_STATE(4972)] = 130999, + [SMALL_STATE(4973)] = 131009, + [SMALL_STATE(4974)] = 131019, + [SMALL_STATE(4975)] = 131029, + [SMALL_STATE(4976)] = 131039, + [SMALL_STATE(4977)] = 131049, + [SMALL_STATE(4978)] = 131059, + [SMALL_STATE(4979)] = 131069, + [SMALL_STATE(4980)] = 131079, + [SMALL_STATE(4981)] = 131089, + [SMALL_STATE(4982)] = 131099, + [SMALL_STATE(4983)] = 131109, + [SMALL_STATE(4984)] = 131119, + [SMALL_STATE(4985)] = 131129, + [SMALL_STATE(4986)] = 131139, + [SMALL_STATE(4987)] = 131149, + [SMALL_STATE(4988)] = 131159, + [SMALL_STATE(4989)] = 131169, + [SMALL_STATE(4990)] = 131179, + [SMALL_STATE(4991)] = 131189, + [SMALL_STATE(4992)] = 131199, + [SMALL_STATE(4993)] = 131209, + [SMALL_STATE(4994)] = 131219, + [SMALL_STATE(4995)] = 131229, + [SMALL_STATE(4996)] = 131239, + [SMALL_STATE(4997)] = 131249, + [SMALL_STATE(4998)] = 131259, + [SMALL_STATE(4999)] = 131269, + [SMALL_STATE(5000)] = 131279, + [SMALL_STATE(5001)] = 131289, + [SMALL_STATE(5002)] = 131299, + [SMALL_STATE(5003)] = 131309, + [SMALL_STATE(5004)] = 131319, + [SMALL_STATE(5005)] = 131329, + [SMALL_STATE(5006)] = 131339, + [SMALL_STATE(5007)] = 131349, + [SMALL_STATE(5008)] = 131359, + [SMALL_STATE(5009)] = 131369, + [SMALL_STATE(5010)] = 131379, + [SMALL_STATE(5011)] = 131389, + [SMALL_STATE(5012)] = 131399, + [SMALL_STATE(5013)] = 131409, + [SMALL_STATE(5014)] = 131419, + [SMALL_STATE(5015)] = 131429, + [SMALL_STATE(5016)] = 131439, + [SMALL_STATE(5017)] = 131449, + [SMALL_STATE(5018)] = 131459, + [SMALL_STATE(5019)] = 131469, + [SMALL_STATE(5020)] = 131479, + [SMALL_STATE(5021)] = 131489, + [SMALL_STATE(5022)] = 131499, + [SMALL_STATE(5023)] = 131509, + [SMALL_STATE(5024)] = 131519, + [SMALL_STATE(5025)] = 131529, + [SMALL_STATE(5026)] = 131539, + [SMALL_STATE(5027)] = 131549, + [SMALL_STATE(5028)] = 131559, + [SMALL_STATE(5029)] = 131569, + [SMALL_STATE(5030)] = 131579, + [SMALL_STATE(5031)] = 131589, + [SMALL_STATE(5032)] = 131599, + [SMALL_STATE(5033)] = 131609, + [SMALL_STATE(5034)] = 131619, + [SMALL_STATE(5035)] = 131629, + [SMALL_STATE(5036)] = 131639, + [SMALL_STATE(5037)] = 131649, + [SMALL_STATE(5038)] = 131659, + [SMALL_STATE(5039)] = 131669, + [SMALL_STATE(5040)] = 131679, + [SMALL_STATE(5041)] = 131689, + [SMALL_STATE(5042)] = 131699, + [SMALL_STATE(5043)] = 131709, + [SMALL_STATE(5044)] = 131719, + [SMALL_STATE(5045)] = 131729, + [SMALL_STATE(5046)] = 131739, + [SMALL_STATE(5047)] = 131749, + [SMALL_STATE(5048)] = 131759, + [SMALL_STATE(5049)] = 131769, + [SMALL_STATE(5050)] = 131779, + [SMALL_STATE(5051)] = 131789, + [SMALL_STATE(5052)] = 131799, + [SMALL_STATE(5053)] = 131809, + [SMALL_STATE(5054)] = 131819, + [SMALL_STATE(5055)] = 131829, + [SMALL_STATE(5056)] = 131839, + [SMALL_STATE(5057)] = 131849, + [SMALL_STATE(5058)] = 131859, + [SMALL_STATE(5059)] = 131869, + [SMALL_STATE(5060)] = 131879, + [SMALL_STATE(5061)] = 131889, + [SMALL_STATE(5062)] = 131899, + [SMALL_STATE(5063)] = 131909, + [SMALL_STATE(5064)] = 131919, + [SMALL_STATE(5065)] = 131929, + [SMALL_STATE(5066)] = 131939, + [SMALL_STATE(5067)] = 131949, + [SMALL_STATE(5068)] = 131959, + [SMALL_STATE(5069)] = 131969, + [SMALL_STATE(5070)] = 131979, + [SMALL_STATE(5071)] = 131989, + [SMALL_STATE(5072)] = 131999, + [SMALL_STATE(5073)] = 132009, + [SMALL_STATE(5074)] = 132019, + [SMALL_STATE(5075)] = 132029, + [SMALL_STATE(5076)] = 132039, + [SMALL_STATE(5077)] = 132049, + [SMALL_STATE(5078)] = 132059, + [SMALL_STATE(5079)] = 132069, + [SMALL_STATE(5080)] = 132079, + [SMALL_STATE(5081)] = 132089, + [SMALL_STATE(5082)] = 132099, + [SMALL_STATE(5083)] = 132109, + [SMALL_STATE(5084)] = 132119, + [SMALL_STATE(5085)] = 132129, + [SMALL_STATE(5086)] = 132139, + [SMALL_STATE(5087)] = 132149, + [SMALL_STATE(5088)] = 132159, + [SMALL_STATE(5089)] = 132169, + [SMALL_STATE(5090)] = 132179, + [SMALL_STATE(5091)] = 132189, + [SMALL_STATE(5092)] = 132199, + [SMALL_STATE(5093)] = 132209, + [SMALL_STATE(5094)] = 132219, + [SMALL_STATE(5095)] = 132229, + [SMALL_STATE(5096)] = 132239, + [SMALL_STATE(5097)] = 132249, + [SMALL_STATE(5098)] = 132259, + [SMALL_STATE(5099)] = 132269, + [SMALL_STATE(5100)] = 132279, + [SMALL_STATE(5101)] = 132289, + [SMALL_STATE(5102)] = 132299, + [SMALL_STATE(5103)] = 132309, + [SMALL_STATE(5104)] = 132319, + [SMALL_STATE(5105)] = 132329, + [SMALL_STATE(5106)] = 132339, + [SMALL_STATE(5107)] = 132349, + [SMALL_STATE(5108)] = 132359, + [SMALL_STATE(5109)] = 132369, + [SMALL_STATE(5110)] = 132379, + [SMALL_STATE(5111)] = 132389, + [SMALL_STATE(5112)] = 132399, + [SMALL_STATE(5113)] = 132409, + [SMALL_STATE(5114)] = 132419, + [SMALL_STATE(5115)] = 132429, + [SMALL_STATE(5116)] = 132439, + [SMALL_STATE(5117)] = 132449, + [SMALL_STATE(5118)] = 132459, + [SMALL_STATE(5119)] = 132469, + [SMALL_STATE(5120)] = 132479, + [SMALL_STATE(5121)] = 132489, + [SMALL_STATE(5122)] = 132499, + [SMALL_STATE(5123)] = 132509, + [SMALL_STATE(5124)] = 132519, + [SMALL_STATE(5125)] = 132529, + [SMALL_STATE(5126)] = 132539, + [SMALL_STATE(5127)] = 132549, + [SMALL_STATE(5128)] = 132559, + [SMALL_STATE(5129)] = 132569, + [SMALL_STATE(5130)] = 132579, + [SMALL_STATE(5131)] = 132589, + [SMALL_STATE(5132)] = 132599, + [SMALL_STATE(5133)] = 132609, + [SMALL_STATE(5134)] = 132619, + [SMALL_STATE(5135)] = 132629, + [SMALL_STATE(5136)] = 132639, + [SMALL_STATE(5137)] = 132649, + [SMALL_STATE(5138)] = 132659, + [SMALL_STATE(5139)] = 132669, + [SMALL_STATE(5140)] = 132679, + [SMALL_STATE(5141)] = 132689, + [SMALL_STATE(5142)] = 132699, + [SMALL_STATE(5143)] = 132709, + [SMALL_STATE(5144)] = 132719, + [SMALL_STATE(5145)] = 132729, + [SMALL_STATE(5146)] = 132739, + [SMALL_STATE(5147)] = 132749, + [SMALL_STATE(5148)] = 132759, + [SMALL_STATE(5149)] = 132769, + [SMALL_STATE(5150)] = 132779, + [SMALL_STATE(5151)] = 132789, + [SMALL_STATE(5152)] = 132799, + [SMALL_STATE(5153)] = 132809, + [SMALL_STATE(5154)] = 132819, + [SMALL_STATE(5155)] = 132829, + [SMALL_STATE(5156)] = 132839, + [SMALL_STATE(5157)] = 132849, + [SMALL_STATE(5158)] = 132859, + [SMALL_STATE(5159)] = 132869, + [SMALL_STATE(5160)] = 132879, + [SMALL_STATE(5161)] = 132889, + [SMALL_STATE(5162)] = 132899, + [SMALL_STATE(5163)] = 132909, + [SMALL_STATE(5164)] = 132919, + [SMALL_STATE(5165)] = 132929, + [SMALL_STATE(5166)] = 132939, + [SMALL_STATE(5167)] = 132949, + [SMALL_STATE(5168)] = 132959, + [SMALL_STATE(5169)] = 132969, + [SMALL_STATE(5170)] = 132979, + [SMALL_STATE(5171)] = 132989, + [SMALL_STATE(5172)] = 132999, + [SMALL_STATE(5173)] = 133009, + [SMALL_STATE(5174)] = 133019, + [SMALL_STATE(5175)] = 133029, + [SMALL_STATE(5176)] = 133039, + [SMALL_STATE(5177)] = 133049, + [SMALL_STATE(5178)] = 133059, + [SMALL_STATE(5179)] = 133069, + [SMALL_STATE(5180)] = 133079, + [SMALL_STATE(5181)] = 133089, + [SMALL_STATE(5182)] = 133099, + [SMALL_STATE(5183)] = 133109, + [SMALL_STATE(5184)] = 133119, + [SMALL_STATE(5185)] = 133129, + [SMALL_STATE(5186)] = 133139, + [SMALL_STATE(5187)] = 133149, + [SMALL_STATE(5188)] = 133159, + [SMALL_STATE(5189)] = 133169, + [SMALL_STATE(5190)] = 133179, + [SMALL_STATE(5191)] = 133189, + [SMALL_STATE(5192)] = 133199, + [SMALL_STATE(5193)] = 133209, + [SMALL_STATE(5194)] = 133219, + [SMALL_STATE(5195)] = 133229, + [SMALL_STATE(5196)] = 133239, + [SMALL_STATE(5197)] = 133249, + [SMALL_STATE(5198)] = 133259, + [SMALL_STATE(5199)] = 133269, + [SMALL_STATE(5200)] = 133279, + [SMALL_STATE(5201)] = 133289, + [SMALL_STATE(5202)] = 133299, + [SMALL_STATE(5203)] = 133309, + [SMALL_STATE(5204)] = 133319, + [SMALL_STATE(5205)] = 133329, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3722), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1775), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3876), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3877), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3878), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2897), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1680), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1897), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4447), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1767), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1768), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4023), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4468), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1230), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1259), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4472), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1349), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1112), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1113), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1114), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4954), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(367), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(33), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3607), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5159), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3537), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2268), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3381), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3547), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(119), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(695), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(699), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4920), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(943), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3955), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5096), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5097), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3913), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3781), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1454), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5094), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3725), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1753), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3881), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3882), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3815), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2897), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1680), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1897), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4447), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1767), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1768), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4023), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4468), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1230), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(963), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3920), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1349), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5009), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1112), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1113), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1114), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4954), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(367), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(33), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3607), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5159), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3537), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2259), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3381), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3547), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(119), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(695), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(699), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4920), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(943), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3955), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5096), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5097), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3913), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3781), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1453), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5094), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3726), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1743), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3881), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3882), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3883), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2851), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1683), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1882), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4460), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1745), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1746), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4037), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4478), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1243), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(958), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5001), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3925), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1353), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5001), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1106), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1107), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1108), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4873), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(340), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(27), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3587), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5161), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3538), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2258), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3368), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3544), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(103), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(103), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(122), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(692), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(673), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4921), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(938), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3957), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5098), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5099), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3913), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3781), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1455), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5096), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3723), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1775), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3875), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3876), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3877), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2851), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1683), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1882), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4460), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1745), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1746), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4037), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4478), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1243), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1261), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5001), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4496), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1353), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5001), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1106), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1107), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1108), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4873), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(340), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(27), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3587), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5161), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3538), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2267), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3368), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3544), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(103), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(103), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(122), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(692), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(673), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4921), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(938), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3957), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5098), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5099), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3913), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3781), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1459), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5096), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 30), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 30), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 30), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 30), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 30), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 30), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 30), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2897), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4472), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(367), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5159), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2268), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5096), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5097), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5001), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5001), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1260), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4496), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1353), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1106), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1107), + [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1108), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5161), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3538), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4921), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(938), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5098), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5099), [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3913), [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1454), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5094), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2897), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(962), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3920), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(367), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5159), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2259), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5096), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5097), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5096), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5001), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5001), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(966), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3925), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1353), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1106), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1107), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1108), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(27), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3608), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5161), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3538), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2258), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4921), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(938), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5098), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5099), [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3913), [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1453), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5094), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 20), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 20), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3404), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 20), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 20), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 28), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 28), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 29), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 29), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3415), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5096), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 20), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 20), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3423), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 20), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 20), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 29), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 29), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 28), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 28), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3443), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 45), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 45), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 98), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 98), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(691), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3904), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4262), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4584), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(347), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(30), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3586), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(7), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3409), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3410), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4862), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3360), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4163), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3903), - [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5058), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4263), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3966), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5108), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5109), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3956), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3819), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(376), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4284), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5106), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 74), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 74), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 72), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 72), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 73), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 73), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 75), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 75), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 21), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 21), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 28), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 28), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 45), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 45), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 113), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 113), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 114), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 114), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 121), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 121), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 45), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 45), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 98), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 98), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3903), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4262), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4613), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(342), + [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(28), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3604), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3464), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(44), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3478), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4860), + [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3315), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3315), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3380), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4170), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3902), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5060), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4265), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3964), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5110), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5111), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3958), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3819), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(381), + [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4193), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5108), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(672), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 72), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 72), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 75), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 75), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 21), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 21), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 73), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 73), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 74), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 74), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 45), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 45), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 113), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 113), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 114), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 114), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 121), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 121), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 150), [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 98), [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 98), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 154), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 154), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 155), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 155), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 3), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 3), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2829), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5100), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4700), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(51), - [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4193), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4833), - [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4862), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1912), - [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(695), - [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4036), - [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4921), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4922), - [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3913), - [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3781), - [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(456), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4916), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4741), - [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2829), - [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5100), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4700), - [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(51), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4313), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4833), - [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4862), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1912), - [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(695), - [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4036), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4921), - [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4922), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3913), - [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3781), - [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(456), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4916), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(691), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(965), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 111), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 111), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 57), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 57), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 71), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 71), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 111), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 111), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 57), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 57), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 29), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 29), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(966), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 188), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 188), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 188), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 188), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 155), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 155), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4776), + [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4776), + [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2848), + [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4870), + [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4640), + [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(36), + [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4194), + [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5063), + [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(44), + [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4860), + [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1869), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1869), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1893), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(692), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3889), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4922), + [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4923), + [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3913), + [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3781), + [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(473), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4917), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 3), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 3), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4776), + [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4776), + [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2848), + [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4870), + [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4640), + [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(36), + [2401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4312), + [2404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5063), + [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(44), + [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4860), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1869), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1869), + [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1893), + [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(692), + [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3889), + [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4922), + [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4923), + [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3913), + [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3781), + [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(473), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4917), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(672), + [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1015), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 28), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 28), + [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 111), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 111), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 57), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 57), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 57), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 57), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1009), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 29), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 29), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 71), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 71), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 111), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 111), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 162), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 162), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 188), SHIFT(691), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), SHIFT(691), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), SHIFT(691), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), SHIFT(691), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [2924] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2928] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), SHIFT(672), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), SHIFT(672), + [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), SHIFT(672), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), SHIFT(672), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [2926] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2930] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1359), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1366), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), - [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3936), - [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), - [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(971), - [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4254), - [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4593), - [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3405), - [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), - [3116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), - [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), - [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [3131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4920), - [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4016), - [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), - [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4921), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), - [3146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4916), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1380), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1360), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3941), + [3121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3943), + [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3895), + [3127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(907), + [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(33), + [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4255), + [3136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [3139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4380), + [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3469), + [3145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), + [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3352), + [3151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3352), + [3154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3399), + [3157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4921), + [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), + [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), + [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), + [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4923), + [3178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4917), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1380), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(672), + [3264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4969), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1939), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4825), - [3410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4969), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1939), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4987), + [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4987), + [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4949), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1907), + [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1907), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1965), + [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4987), + [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4987), + [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4949), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1907), + [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1907), + [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1965), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1416), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3904), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4262), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4584), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1125), - [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(30), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4193), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(458), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3409), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3410), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3360), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4163), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3903), - [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5058), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4685), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3966), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5108), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5109), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4284), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5106), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1407), + [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1407), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1415), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3903), + [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4262), + [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4613), + [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(954), + [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(28), + [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4194), + [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(462), + [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3464), + [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3478), + [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3315), + [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3315), + [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3380), + [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4170), + [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3902), + [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5060), + [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4625), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3964), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5110), + [3570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5111), + [3573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4193), + [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5108), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 10), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [3653] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 32), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 10), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 32), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [3651] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 47), + [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 103), [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), REDUCE(sym_record_body, 2, 0, 18), - [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 48), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 103), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1489), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 18), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 103), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), REDUCE(sym_record_body, 3, 0, 47), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 48), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3483), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4978), - [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4978), - [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4454), - [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1893), - [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1939), - [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(3966), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5108), - [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5109), - [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5106), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [4064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(3888), - [4067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(3739), - [4070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(3740), - [4073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 171), SHIFT_REPEAT(4795), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [4106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(4306), - [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(3924), - [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(3925), - [4134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 171), SHIFT_REPEAT(5189), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1903), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 88), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 88), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 83), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 88), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 171), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 88), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 83), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 171), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), - [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 202), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 202), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [4313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3459), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 90), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), - [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2134), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 20), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 20), - [4369] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 174), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 103), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1940), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 18), - [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2113), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2112), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 47), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 48), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 137), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 138), - [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), - [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2136), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 85), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 85), - [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 86), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 86), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 87), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 87), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 34), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 34), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2219), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2239), - [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), - [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2244), - [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), - [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 103), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), - [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 18), - [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 47), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 48), - [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2251), - [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2248), - [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), - [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5062), - [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(4927), - [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(4861), - [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3841), - [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3842), - [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3611), - [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3611), - [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3723), - [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(4928), - [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3966), - [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5108), - [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5109), - [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(3964), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 198), SHIFT_REPEAT(5106), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2385), - [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 165), - [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 218), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 165), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 198), - [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 165), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 197), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2439), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [5060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [5091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 71), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [5180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 48), + [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 18), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 47), + [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), REDUCE(sym_record_body, 2, 0, 18), + [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), REDUCE(sym_record_body, 3, 0, 47), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), + [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 48), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 103), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1503), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [4006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3436), + [4009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5049), + [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5049), + [4015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4462), + [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1907), + [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1965), + [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(3964), + [4027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5110), + [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5111), + [4033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5108), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3410), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [4099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(3917), + [4102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(3741), + [4105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(3742), + [4108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4958), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4339), + [4138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(3928), + [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(3929), + [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(5191), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1903), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 88), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 88), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 83), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [4276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3429), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 88), + [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 88), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 203), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 172), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 203), + [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 83), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 172), + [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2066), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2121), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 47), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 48), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 103), + [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), + [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 137), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), + [4441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 138), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 20), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 20), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1955), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4477] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 18), + [4506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 90), + [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2134), + [4514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 175), + [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2123), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), + [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 86), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 86), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 87), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 87), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 34), + [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 34), + [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 85), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 85), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2220), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2246), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2243), + [4700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), + [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2251), + [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), + [4725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 47), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), + [4731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 48), + [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), + [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 103), + [4738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 18), + [4740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5004), + [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4934), + [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4874), + [4749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3842), + [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3843), + [4755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3574), + [4758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3574), + [4761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3689), + [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4936), + [4767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3964), + [4770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5110), + [4773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5111), + [4776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3971), + [4779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5108), + [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2254), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 166), + [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 166), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 166), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [4970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2414), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 198), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 219), + [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 199), + [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [5021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2438), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [5119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3432), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [5142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3426), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 71), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 39), + [5225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 39), + [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 39), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 39), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 4), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 4), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 39), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 39), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 72), - [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 20), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 20), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3422), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 110), - [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 110), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 52), - [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 52), + [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 20), + [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 20), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 72), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 39), + [5273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 39), + [5275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [5287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3403), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 4), + [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 4), + [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 110), + [5316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 110), + [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 110), + [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 110), + [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 52), + [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 52), + [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), + [5328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 62), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 62), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 110), - [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 110), - [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), - [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 52), - [5386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 52), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 212), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 182), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 183), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 212), - [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), - [5428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), - [5430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 212), SHIFT(691), - [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), SHIFT(691), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), - [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 146), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), - [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), - [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), - [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 148), - [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), SHIFT(691), - [5455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), SHIFT(691), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 213), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 214), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 188), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 182), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), - [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 117), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 118), - [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 182), SHIFT(691), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), SHIFT(691), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 105), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 106), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), - [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), - [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), SHIFT(691), - [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 24), - [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(691), - [5534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(691), - [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), SHIFT(691), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 23), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 24), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), - [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), - [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), SHIFT(691), - [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), SHIFT(691), - [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), - [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), - [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 119), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 71), - [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(691), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [5579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 68), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 68), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 23), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), SHIFT(691), - [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 24), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 105), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 106), - [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 23), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), - [5615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(691), - [5620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 20), - [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 20), - [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 117), - [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 118), - [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), SHIFT(691), - [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 119), - [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 71), - [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(691), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 215), - [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 215), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), - [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5103), - [5670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4783), - [5673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5166), - [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5171), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 26), - [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 27), - [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(691), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), - [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(103), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 190), - [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 190), - [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 61), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 151), - [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 151), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 131), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 131), - [5785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 61), - [5787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(691), - [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), SHIFT(691), - [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), - [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(128), - [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [5806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), - [5812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(201), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), SHIFT(691), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), - [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), SHIFT(691), - [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), - [5835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), SHIFT(691), - [5852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), - [5854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 85), - [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 85), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 61), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 26), - [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(265), - [5873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3736), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), SHIFT(691), - [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), - [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 123), - [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 123), - [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 63), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 63), - [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 64), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 64), - [5895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), - [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), - [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [5903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [5907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(691), - [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 13), - [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 82), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 82), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 20), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 20), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 27), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 170), - [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 170), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 179), SHIFT(691), - [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 179), - [5955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 26), - [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 27), - [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [5963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), SHIFT(691), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), SHIFT(691), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), SHIFT(691), - [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), - [5988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(120), - [5991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(120), - [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 179), SHIFT(691), - [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 179), - [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(205), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3789), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 83), - [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 83), - [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(198), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3104), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), SHIFT(691), - [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), SHIFT(691), - [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), - [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 34), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 34), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 43), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 168), - [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 168), - [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 169), - [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 169), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 92), - [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 93), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [6095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 51), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 51), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 96), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 84), - [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 84), - [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 142), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 195), - [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 195), - [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 199), - [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 199), - [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 200), - [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 200), - [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 131), - [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 131), - [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 219), - [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 219), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 96), - [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 141), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 93), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(242), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(246), - [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(248), - [6200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(251), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [6207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 142), - [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 92), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 150), - [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 150), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), - [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 228), - [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 229), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 50), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 108), - [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 108), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 167), - [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 167), - [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 109), - [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 109), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 20), - [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 20), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 20), - [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 20), - [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 232), - [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 233), - [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 180), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 234), - [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), - [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), - [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), - [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), - [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 19), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 240), - [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 242), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), - [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 181), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 243), - [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 201), - [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 201), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 244), - [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), - [6359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 248), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 249), - [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 132), - [6371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 132), - [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3356), - [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 220), - [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 204), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 205), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 221), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 222), - [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 53), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 53), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 206), - [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(217), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(221), - [6414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(223), - [6417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(226), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), - [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), - [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), - [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 210), - [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 211), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 141), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 52), + [5382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 52), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 62), + [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 62), + [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 23), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [5410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 149), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 24), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 23), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [5432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1344), + [5437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3360), + [5440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1799), + [5443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 24), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [5453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 68), + [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 68), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [5469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 183), + [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), + [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), + [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), + [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), + [5493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), SHIFT(672), + [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), SHIFT(672), + [5499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), + [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 147), + [5503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), + [5505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), + [5507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), + [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 149), + [5511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), SHIFT(672), + [5514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), SHIFT(672), + [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), + [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), + [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 23), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 117), + [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 24), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 118), + [5533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), SHIFT(672), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(672), + [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 213), + [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 214), + [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 215), + [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 117), + [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 189), + [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 118), + [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 119), + [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 71), + [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(672), + [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(672), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 105), + [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 106), + [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 105), + [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 106), + [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), + [5593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), SHIFT(672), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [5598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), SHIFT(672), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 147), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 119), + [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 71), + [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(672), + [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 147), SHIFT(672), + [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), + [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 20), + [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 20), + [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [5625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), SHIFT(672), + [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), SHIFT(672), + [5631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(672), + [5634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 149), SHIFT(672), + [5637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3164), + [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [5642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5151), + [5645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4711), + [5648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4885), + [5651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4894), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [5700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(672), + [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 191), + [5727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 191), + [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 152), + [5731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 152), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 216), + [5749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 216), + [5751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), + [5753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(110), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 26), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [5762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(672), + [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [5777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 61), + [5779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 27), + [5781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [5785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(672), + [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [5790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [5792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [5794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 61), + [5796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(672), + [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [5809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 34), + [5811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 34), + [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 131), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 131), + [5819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(133), + [5822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(133), + [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), + [5827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 85), + [5829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 85), + [5831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(235), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), + [5842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), + [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [5846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), + [5850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), + [5852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), + [5854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), + [5856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 63), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 63), + [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 26), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [5866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 64), + [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 64), + [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 27), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), SHIFT(672), + [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), + [5879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), + [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), + [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [5887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 82), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 82), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [5897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), SHIFT(672), + [5900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), SHIFT(672), + [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), SHIFT(672), + [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), SHIFT(672), + [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 146), SHIFT(672), + [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 146), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), SHIFT(672), + [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 146), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), SHIFT(672), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), SHIFT(672), + [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), + [5951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3736), + [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 61), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 13), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [5962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), SHIFT(672), + [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), + [5967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 27), + [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), + [5971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(123), + [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [5978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(203), + [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 20), + [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 20), + [5985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3787), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), SHIFT(672), + [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), + [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 123), + [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 123), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [6001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), SHIFT(672), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), + [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3179), + [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(230), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 26), + [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(232), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 83), + [6039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 83), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 141), + [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 142), + [6055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 93), + [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 96), + [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [6074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 92), + [6078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 93), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 43), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 96), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 84), + [6102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 84), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [6112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [6116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 196), + [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 196), + [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 200), + [6124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 200), + [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 201), + [6128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 201), + [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 131), + [6132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 131), + [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 220), + [6136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 220), + [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), + [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 51), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [6148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 51), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(250), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(254), + [6196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(256), + [6199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(259), + [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 169), + [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 169), + [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 170), + [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 170), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), + [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 233), + [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 234), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), + [6236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), + [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), + [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), + [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), + [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), + [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), + [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 151), + [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 151), + [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 240), + [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 241), + [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 243), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 244), + [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 50), + [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), + [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), + [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 248), + [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 92), + [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 202), + [6304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 202), + [6306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3360), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 249), + [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 250), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 53), + [6323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 53), + [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 221), + [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 222), + [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 141), + [6331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), + [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), + [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 168), + [6351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 168), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(219), + [6376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(221), + [6379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(224), + [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 19), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 205), + [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), + [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 132), + [6394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 132), + [6396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 206), + [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 228), + [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 229), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), + [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), + [6406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 230), + [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), + [6410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 142), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 211), + [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 181), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 212), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 182), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 108), + [6442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 108), + [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 109), + [6446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 109), + [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 20), + [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 20), + [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 20), + [6454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 20), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [6460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(215), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 110), + [6476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 110), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 52), + [6488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 52), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3417), - [6511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), - [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 52), - [6518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 52), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 110), - [6530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 110), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [6894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 5), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [6944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [6947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [6951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [6953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 176), - [6965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3402), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [7048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3403), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [7165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [7179] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7183] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [7189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [7202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 176), - [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 78), - [7272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [7278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 153), - [7311] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 47), - [7317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), SHIFT(2248), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [7328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [7332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [7337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [7339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [7360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(81), - [7363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4195), - [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [7390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 12), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 15), - [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), - [7442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 18), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 33), - [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 40), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [7554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(80), - [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), - [7559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4530), - [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [7572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 107), - [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 107), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [7582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4268), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [7589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 152), - [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 152), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [6504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3420), + [6507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3449), + [6512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [6868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 5), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [6938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [6954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [6957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [6987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 177), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [7034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [7056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [7064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 177), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [7106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [7129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3439), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), + [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [7198] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7202] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [7230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [7234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [7272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 78), + [7274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [7280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3417), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [7305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 154), + [7307] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [7317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 47), + [7319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), SHIFT(2251), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [7330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [7332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [7334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3446), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [7353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4873), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [7370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [7396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [7398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 12), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [7434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 15), + [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), + [7438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 18), + [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 33), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 40), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [7488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(74), + [7491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4266), + [7494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), + [7496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4271), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [7561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(80), + [7564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), + [7566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4573), + [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [7581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body_or_empty, 1, 0, 0), + [7583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 107), + [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 107), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [7593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 153), + [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 153), + [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [7633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 112), - [7635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 112), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [7651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), - [7654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 177), - [7656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 177), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [7647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 112), + [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 112), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [7655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body_or_empty, 1, 0, 0), REDUCE(sym__list_body_or_empty, 1, 0, 0), [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [7662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 178), - [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 178), - [7666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3844), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 193), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), - [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [7687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 89), - [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 136), - [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 192), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [7706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [7708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4502), - [7711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 216), - [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 217), - [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 91), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 83), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 83), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 230), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 231), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 162), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 241), - [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 163), - [7753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 203), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [7767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4612), - [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 103), - [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [7792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 46), - [7794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 46), - [7796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 44), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), - [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [7808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), - [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), - [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 71), - [7818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(194), - [7821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 176), - [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 129), - [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [7660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 178), + [7662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 178), + [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3845), + [7667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 179), + [7669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 179), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), + [7681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 195), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [7689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 7), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [7693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), + [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 89), + [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 193), + [7702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 95), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 217), + [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [7718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [7720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4461), + [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 218), + [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 91), + [7729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 83), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 83), + [7735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(194), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [7742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [7748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 231), + [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 232), + [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_body_or_empty, 1, 0, 0), + [7760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [7762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 242), + [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 163), + [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), + [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [7776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4415), + [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_list_body, 1, 0, 0), + [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 204), + [7787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 103), + [7789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 165), + [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [7809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [7817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 44), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [7821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 177), + [7823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 140), + [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 136), + [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [7829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 103), [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), [7833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), - [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [7843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 103), - [7845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 99), - [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 173), - [7849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 100), - [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [7853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 166), - [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 166), - [7857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), - [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), - [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 8), - [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 8), - [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 8), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 11), - [7871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 11), - [7875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), - [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 140), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 77), - [7885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 14), - [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4532), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [7892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 175), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 176), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 79), - [7904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 95), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 80), + [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), + [7841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [7843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 46), + [7853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 99), + [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [7857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 167), + [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 167), + [7861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 46), + [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 71), + [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 8), + [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 8), + [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 8), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 11), + [7875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 100), + [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 11), + [7879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), + [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), + [7883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), + [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), + [7887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [7893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 94), + [7895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), + [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), + [7899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4531), + [7902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 176), + [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 77), + [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 0), [7912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 48), [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), [7916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), - [7918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 48), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 94), - [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 81), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 31), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 128), - [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 130), - [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 35), - [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 36), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 37), - [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), - [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 133), - [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 134), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 191), - [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 41), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 42), - [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [7962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), - [7965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), - [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 135), - [7972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 143), - [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 7), - [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 8), - [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [7990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 138), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [8002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 47), - [8004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 48), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 8), - [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 58), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [8022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 197), - [8024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 198), - [8026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 218), - [8028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 202), - [8030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), REDUCE(sym_record_body, 2, 0, 47), - [8041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 18), - [8043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 71), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [8047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 84), - [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 84), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), - [8057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), SHIFT_REPEAT(4411), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [8066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 175), - [8068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 176), - [8070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 83), - [8072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 171), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [8078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 88), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [8086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [8094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 203), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [8098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 176), - [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 94), - [8102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 90), - [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 202), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 97), - [8112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 165), - [8114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4640), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [8119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), REDUCE(sym_record_body, 1, 0, 18), - [8122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 88), - [8124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), - [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), - [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 103), - [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), - [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 83), - [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 18), - [8136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 171), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [8140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 174), - [8142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 99), - [8144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 143), - [8146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 46), - [8148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 100), - [8150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 47), - [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), - [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 80), - [8156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 48), - [8158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 101), SHIFT_REPEAT(380), - [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 81), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [8169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 103), - [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 31), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [8185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [8193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 137), - [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 128), - [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 133), - [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 8), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [8205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4683), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [8230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4642), - [8233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 132), - [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 132), - [8237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [8241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [8253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 16), - [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 16), - [8257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [8265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 196), - [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 196), - [8269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 5), - [8271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), - [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [8282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [8290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4788), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [8295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [8299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 69), - [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 69), - [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [8313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 177), - [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 177), - [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 120), - [8321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 178), - [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 178), - [8325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 172), - [8327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 172), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 83), - [8643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 88), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [8729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 83), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [8955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [8957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [8963] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [8971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 48), + [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 79), + [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 31), + [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 128), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 129), + [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 130), + [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 80), + [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 192), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 35), + [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 36), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 37), + [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), + [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 133), + [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 134), + [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 81), + [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 135), + [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 41), + [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 42), + [7968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 14), + [7970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4964), + [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), + [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [7978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 144), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [7998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), + [8006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [8014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 47), + [8016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 48), + [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), + [8020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), SHIFT_REPEAT(4416), + [8023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 137), + [8025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 138), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 58), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [8039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 219), + [8041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 198), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [8045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 203), + [8047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 199), + [8049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), REDUCE(sym_record_body, 2, 0, 47), + [8060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 84), + [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 84), + [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 71), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [8076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 176), + [8078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 0), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [8082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 83), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [8086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 172), + [8088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 48), + [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 8), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [8102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 204), + [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 177), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [8110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 94), + [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 8), + [8114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 88), + [8116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 203), + [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 166), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [8122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), REDUCE(sym_record_body, 1, 0, 18), + [8125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 90), + [8127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 88), + [8129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 8), + [8131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 97), + [8133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 18), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [8139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 103), + [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 83), + [8143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 172), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [8147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 175), + [8149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), + [8151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 18), + [8153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), + [8159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), + [8161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 46), + [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [8165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4724), + [8168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 47), + [8170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 144), + [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), + [8174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 99), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [8180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 100), + [8182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 101), SHIFT_REPEAT(378), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [8187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 103), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 31), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 80), + [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 81), + [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 128), + [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 133), + [8209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 132), + [8211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 132), + [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [8215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [8219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 173), + [8221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 173), + [8223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [8225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [8227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 16), + [8229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 16), + [8231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 5), + [8233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), + [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [8239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [8241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [8247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 120), + [8249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [8267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [8272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4641), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [8283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 197), + [8285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 197), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [8295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [8299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4785), + [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [8314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 178), + [8316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 178), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [8324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 179), + [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 179), + [8328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4693), + [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [8347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 69), + [8349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 69), + [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body_or_empty, 1, 0, 143), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [8385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 88), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [8489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [8541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [8611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [8653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [8661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 83), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [8689] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [8723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [8733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [8967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 83), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [9029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -254897,10 +254989,10 @@ static const bool ts_external_scanner_states[5][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_raw_string_begin] = true, }, [3] = { - [ts_external_token_raw_string_end] = true, + [ts_external_token_raw_string_content] = true, }, [4] = { - [ts_external_token_raw_string_content] = true, + [ts_external_token_raw_string_end] = true, }, }; diff --git a/test/corpus/decl/use.nu b/test/corpus/decl/use.nu index 68967abd..716459fd 100644 --- a/test/corpus/decl/use.nu +++ b/test/corpus/decl/use.nu @@ -81,3 +81,23 @@ use foo.nu [ (cmd_identifier) (cmd_identifier) (cmd_identifier))))) + +===== +use-006-dummpy-command-list +===== + +use foo [ + +, + +,,, + +] + +----- + +(nu_script + (decl_use + (unquoted) + (scope_pattern + (command_list)))) diff --git a/test/corpus/expr/list.nu b/test/corpus/expr/list.nu index 14853a19..89be7f63 100644 --- a/test/corpus/expr/list.nu +++ b/test/corpus/expr/list.nu @@ -552,5 +552,4 @@ list-014-dummy-list (nu_script (pipeline (pipe_element - (val_list - (list_body))))) + (val_list))))